Agent Skills 排行榜 · 关键词 + 语义搜索

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
20,000
总 Skills
16.0M
总安装量
2,338
贡献者
# Skill 仓库 描述 安装量
12601 bloodhound-scout autumnsgrove/groveengine
Bloodhound Scout 🐕 The bloodhound doesn't wander aimlessly. It finds the scent— a function name, an import, a pattern— and follows it relentlessly. Through tangled imports, across module boundaries, into the deepest corners of the codebase. The bloodhound maps what it finds, creating trails others can follow. When you need to understand how something works, the bloodhound tracks it down. When to Activate User asks to "find where X is used" or "understand how Y works" User says "explore this code...
59
12602 spec-test-execute zixun-github/aisdlc
Spec 测试执行与报告(V4:Execute + Report) 本技能产出“结论性测试报告”:回答 是否满足 AC、是否可交付、阻断点是什么、下一步动作是什么 。 输入与门禁(必须遵守) REQUIRED SUB-SKILL:正在执行 spec-context 获取上下文,并在对话中回显 FEATURE_DIR=... (允许 (reuse) )。 先定位再读写 :必须先通过 spec-context 获取 FEATURE_DIR ;失败即停止,禁止猜路径。 必读项目级 memory : project/memory/product.md 、 project/memory/tech.md 、 project/memory/glossary.md ;读不到必须写 CONTEXT GAP 。 输入依赖 : verification/test-plan.md 与 verification/usecase.md 必须存在; verification/suites.md 若存在则纳入覆盖统计。 缺陷不在 Spec Pack 落盘 :禁止新建 verification/bugs/ ;报告只做“...
59
12603 nodejs-development laurigates/claude-plugins
Node.js Development Guidelines You are an expert in Node.js development with TypeScript, covering various frameworks and patterns. Payload CMS with Next.js Project Setup project/ ├── src/ │ ├── app/ Next.js app directory │ ├── collections/ Payload collections │ ├── blocks/ Custom blocks │ ├── fields/ Custom fields │ └── access/ Access control functions ├── payload.config.ts Payload configuration └── next.config.js Next.js con...
59
12604 excel sundial-org/awesome-openclaw-skills
Excel Comprehensive Excel file manipulation - read, write, edit, format, and export. Setup pip install openpyxl Or use uv (recommended) uv run --with openpyxl python3 scripts/excel.py --help Quick Reference cd skills/excel Get file info python3 scripts/excel.py info report.xlsx Read entire sheet python3 scripts/excel.py read report.xlsx python3 scripts/excel.py read report.xlsx --format markdown python3 scripts/excel.py read report.xlsx --sheet "Sales" --range A1:D10 Read specific cell pytho...
59
12605 cobol-modernization letta-ai/skills
COBOL Modernization Overview This skill provides a systematic approach for converting COBOL programs to modern languages while ensuring exact behavioral equivalence. The key challenge in COBOL modernization is not just translating logic, but preserving precise data formats, fixed-width record structures, and byte-level output compatibility. Workflow Phase 1: Analysis and Documentation Before writing any code, thoroughly analyze the COBOL source and data files: Read the complete COBOL source ...
59
12606 bun sqlite secondsky/claude-skills
Bun SQLite Bun has a built-in, high-performance SQLite driver via bun:sqlite . Quick Start import { Database } from "bun:sqlite" ; // Create/open database const db = new Database ( "mydb.sqlite" ) ; // Create table db . run ( ` CREATE TABLE IF NOT EXISTS users ( id INTEGER PRIMARY KEY AUTOINCREMENT, name TEXT NOT NULL, email TEXT UNIQUE ) ` ) ; // Insert data db . run ( "INSERT INTO users (name, email) VALUES (?, ?)" , [ "Alice" , "alice@example.com" ] ) ; // Query data const users = db . query ...
59
12607 tdd-london-chicago proffesor-for-testing/agentic-qe
<default_to_action> When implementing TDD or choosing testing style: - IDENTIFY code type: domain logic → Chicago, external deps → London - WRITE failing test first (Red phase) - IMPLEMENT minimal code to pass (Green phase) - REFACTOR while keeping tests green (Refactor phase) - REPEAT cycle for next functionality Quick Style Selection: - Pure functions/calculations → Chicago (real objects, state verification) - Controllers/services with deps → London (mocks, interaction verification) -...
59
12608 umbraco-preview-app-provider umbraco/umbraco-cms-backoffice-skills
Umbraco Preview App Provider What is it? Preview App Providers add custom items to the preview window menu in Umbraco. When content editors preview their content, these apps appear in the preview menu allowing additional functionality like device simulation, accessibility checks, SEO analysis, or other preview-related tools. Documentation Always fetch the latest docs before implementing: Foundation : https://docs.umbraco.com/umbraco-cms/customizing/foundation Extension Registry : https://docs.um...
59
12609 mcp-tool-discovery groeimetai/snow-flow
Snow-Flow provides 400+ tools via MCP (Model Context Protocol) servers. Tools are lazy-loaded to save tokens - use `tool_search` to discover them. Quick Start ``` // Find tools for a specific task tool_search({ query: "incident" }) // ServiceNow incidents tool_search({ query: "widget" }) // Widget development tool_search({ query: "update set" }) // Update Set management tool_search({ query: "cmdb" }) // CMDB operations ``` Tool Categories ServiceNow Core Operation...
59
12610 ddev-expert madsnorgaard/agent-resources
DDEV Development Expert You are an expert in DDEV, the Docker-based local development environment for PHP projects. Core Concepts DDEV provides a consistent, containerized local development environment with: Pre-configured PHP, web server, database containers Automatic HTTPS with mkcert Built-in Composer and Node.js support Easy multi-project management Note: Drush is NOT included by default - you must composer require drush/drush after creating a Drupal project. Essential Commands Project Manag...
59
12611 inertia-rails-typescript inertia-rails/skills
Inertia Rails TypeScript Setup Type-safe shared props, flash, and errors using InertiaConfig module augmentation. Works identically across React, Vue, and Svelte — the globals.d.ts and InertiaConfig setup is the same for all frameworks. Before adding TypeScript types, ask: Shared props (auth, flash)? → Update SharedProps / FlashData in index.ts — InertiaConfig in globals.d.ts propagates them globally via usePage() Page-specific props? → type Props = { ... } in the page file only — never include ...
59
12612 vercel-react-best-practices polarsource/polar
Vercel React Best Practices Comprehensive performance optimization guide for React and Next.js applications, maintained by Vercel. Contains 62 rules across 8 categories, prioritized by impact to guide automated refactoring and code generation. When to Apply Reference these guidelines when: Writing new React components or Next.js pages Implementing data fetching (client or server-side) Reviewing code for performance issues Refactoring existing React/Next.js code Optimizing bundle size or load tim...
59
12613 deep-review coder/mux
Deep Review Mode Provide an excellent code review by defaulting to parallelism . You should use sub-agents to review the change from multiple angles (correctness, tests, consistency, UX, performance, safety). Each sub-agent should have a focused mandate and return actionable findings with file paths. Step 0: Establish the review surface Before reviewing, gather context: Identify the change scope: git diff --name-only (or the file list the user provides). Skim the diff for intent and risk: git di...
59
12614 umbraco-menu umbraco/umbraco-cms-backoffice-skills
Umbraco Menu What is it? Menus are extension components that display throughout the Umbraco backoffice interface, including in sidebars and button flyouts. They serve as containers for one or more menu item extensions, enabling organized navigation and action grouping. Menu items are configured separately and can be added to existing menus or custom menus. Documentation Always fetch the latest docs before implementing: Main docs : https://docs.umbraco.com/umbraco-cms/customizing/extending-overvi...
59
12615 security-testing proffesor-for-testing/agentic-qe
Security Testing Overview Security testing identifies vulnerabilities, weaknesses, and threats in applications to ensure data protection, prevent unauthorized access, and maintain system integrity. It combines automated scanning (SAST, DAST) with manual penetration testing and code review. When to Use Testing for OWASP Top 10 vulnerabilities Scanning dependencies for known vulnerabilities Testing authentication and authorization Validating input sanitization Testing API security Checking for s...
59
12616 rewrite-en2zh simonwong/agent-skills
英文重写为简体中文 核心理念 这是重写,不是翻译。 像口译大师一样工作: 理解 - 完全理解原文的意思 脱壳 - 忘掉英文的词汇和句式 重写 - 用中文自然地表达同样的意思 目标:让读者感觉这就是中文母语者写的文章。 重要原则:尊重原意,保持原有格式不变。 重写是换一种语言表达,不是删减、增添或改变原文的意思和结构。 重写规则 保留不变 AI 专有名词:Agent、OpenAI、Claude、Gemini、GPT、LLM、Prompt、Token、RAG、Fine-tuning 等 技术术语:API、SDK、JSON、Markdown、GitHub、Docker、Kubernetes 等 品牌/产品名:React、Next.js、Vercel、Anthropic 等 Markdown 格式:图片、链接、加粗、斜体、代码块、列表等全部保留 代码块内容:完全保留,禁止改动 标点符号 中文内容使用中文标点,但代码、命令、URL 内保持英文标点。 领域固定术语 某些术语在特定语境下有固定的中文表达,需要根据语境判断,不能随意改写: context:AI 语境是"上下文",其...
59
12617 unix-macos-engineer petekp/agent-skills
Expert Unix and macOS Engineer Deep expertise in Unix systems and macOS-specific administration. Core Expertise Shell Scripting: Bash, Zsh, POSIX sh - robust scripts with proper error handling macOS System Administration: launchd, plists, defaults, security frameworks Command-Line Mastery: sed, awk, grep, find, xargs, jq, curl Process Management: signals, job control, daemons, resource limits Networking: curl, ssh, tunneling, DNS, firewall rules File Systems: permissions, ACLs, extended attrib...
59
12618 link-validator terrylica/cc-skills
Validates markdown links in Claude Code skills for portability across installation locations. The Problem Skills with absolute repo paths break when installed elsewhere: | Absolute repo | `/skills/foo/SKILL.md` | No - path doesn't exist | Relative | `./references/guide.md` | Yes - always resolves | Relative parent | `../sibling/SKILL.md` | Yes - always resolves When to Use This Skill - Before distributing a skill/plugin - After creating new markdown links in skills - When CI ...
59
12619 grove-issues autumnsgrove/groveengine
Grove Issues Turn a brain dump into a clean issue backlog. You receive a messy list of TODOs and produce properly labeled, well-structured GitHub issues ready for the Lattice Kanban board. When to Activate User provides a batch of TODOs, tasks, or ideas in a single message User explicitly calls /grove-issues User says something like "create issues for these" or "turn these into tickets" User pastes a list of things they want tracked The Pipeline Brain Dump → Parse → Deduplicate → Create Issues →...
59
12620 brave-search vm0-ai/vm0-skills
Brave Search Headless web search and content extraction using Brave Search. No browser required. Setup Run once before first use: cd ~/Projects/agent-scripts/skills/brave-search npm ci Needs env: BRAVE_API_KEY . Search ./search.js "query" Basic search (5 results) ./search.js "query" -n 10 More results ./search.js "query" --content Include page content as markdown ./search.js "query" -n 3 --content Combined Extract Page Content ./content.js https://example.com/article Fetches a URL and extrac...
59
12621 azure-openai-2025 josiahsiegel/claude-plugin-marketplace
Azure OpenAI Service - 2025 Models and Features Complete knowledge base for Azure OpenAI Service with latest 2025 models including GPT-5, GPT-4.1, reasoning models, and Azure AI Foundry integration. Overview Azure OpenAI Service provides REST API access to OpenAI's most powerful models with enterprise-grade security, compliance, and regional availability. Latest Models (2025) GPT-5 Series (GA August 2025) Registration Required Models: gpt-5-pro: Highest capability, complex reasoning gpt-5:...
59
12622 dotnet-ui novotnyllc/dotnet-artisan
dotnet-ui Overview .NET UI development across Blazor, MAUI, Uno Platform, WPF, WinUI 3, and WinForms. This skill covers framework selection, component architecture, XAML patterns, MVVM, platform-specific deployment, accessibility, and localization. Each framework area has a dedicated companion file with deep guidance. Routing Table Topic Keywords Description Companion File Blazor patterns hosting model, render mode, routing, streaming, prerender Hosting models, render modes, routing, streaming, ...
59
12623 component-interface-design qodex-ai/ai-agent-skills
Shadcn UI Designer Core Design Prompt When designing any UI, apply this philosophy: "Design a modern, clean UI following Shadcn principles: apply minimalism with ample white space and simple sans-serif typography; use strategic, subtle shadows for depth and hierarchy; ensure accessibility with high-contrast neutrals and scalable elements; provide beautiful defaults for buttons, cards, and forms that compose modularly; incorporate fluid, non-intrusive animations; maintain a professional palette...
59
12624 google-ads-scripts henkisdabro/wookstar-claude-plugins
Google Ads Scripts Overview Guidance for developing Google Ads Scripts using the AdsApp API. Automate campaign management, bid optimisation, performance reporting, and bulk operations through JavaScript running in the Google Ads editor. When to Use This Skill Automating campaign management or bulk operations Managing keywords and adjusting bids programmatically Creating performance reports or dashboards Implementing automated rules for campaign optimisation Optimising ad spend based on ROAS or C...
59
12625 hypothesis-testing laurigates/claude-plugins
Automatically generate test cases to find edge cases and validate properties of your code. When to Use Hypothesis vs Example-Based Tests | Testing mathematical properties (commutative, associative) | Testing specific known edge cases | Many valid inputs need testing | Exact business logic with known values | Verifying serialization round-trips | Testing specific error messages | Finding edge cases you can't predict | Integration with external systems | Testing APIs with many param...
59
12626 orchestration planner daffy0208/ai-dev-standards
Orchestration Planner Plan multi-step workflows using capability graph and Codex-powered goal decomposition Purpose Takes high-level goals and decomposes them into executable workflows using the capability graph. Uses Codex to understand goal semantics, find matching capabilities, validate preconditions, and generate Hierarchical Task Network (HTN) plans with alternatives and scoring. When to Use Converting user goals into executable plans (e.g., "build RAG system") Finding optimal capability se...
59
12627 log-reader terrylica/cc-skills
Read MetaTrader 5 log files directly to access Print() output from indicators, scripts, and expert advisors without requiring manual Experts pane inspection. Purpose Implement "Option 3" dual logging pattern: - Print() - MT5 log files (human-readable via Experts pane) - CSV files - Structured data (programmatic analysis) Claude Code CLI can autonomously read both outputs without user intervention. When to Use Use this skill when: - Validating MT5 indicator/script execution - Checking ...
59
12628 swain-design cristoslc/swain
Spec Management This skill defines the canonical artifact types, phases, and hierarchy. Detailed definitions and templates live in references/ . If the host repo has an AGENTS.md, keep its artifact sections in sync with the skill's reference data. Artifact type definitions Each artifact type has a definition file (lifecycle phases, conventions, folder structure) and a template (frontmatter fields, document skeleton). Read the definition for the artifact type you are creating or transitioning. Ty...
59
12629 vibe-agents khazp/vibe-coding-prompt-template
You are helping the user create AGENTS.md and tool-specific configuration files. This is Step 4 of the vibe-coding workflow. Your Role Generate the instruction files that guide AI coding assistants to build the MVP. Use progressive disclosure - master plan in AGENTS.md, details in agent_docs/. Prerequisites - Look for `docs/PRD-*.md` - REQUIRED - Look for `docs/TechDesign-*.md` - REQUIRED - If either is missing, suggest running the appropriate skill first Step 1: Load Context Extract ...
59
12630 netbox-integration-best-practices netboxlabs/netbox-best-practices
NetBox Integration Best Practices Skill This skill provides best practices guidance for building integrations and automations with NetBox REST and GraphQL APIs. Target Audience Engineers building integrations atop NetBox APIs Teams planning new automations with Claude Developers learning NetBox API best practices Scope: This skill covers API integration patterns. It does NOT cover plugin development, custom scripts, or NetBox administration. NetBox Version Requirements Feature Version Requir...
59
12631 raydium sendaifun/skills
Raydium Protocol - Complete Integration Guide The definitive guide for integrating Raydium - Solana's leading AMM and liquidity infrastructure powering DeFi since 2021. What is Raydium? Raydium is a decentralized exchange on Solana providing: Token Swapping - Fast, cheap swaps via smart routing across all pool types Liquidity Provision - Earn trading fees and rewards by providing liquidity Token Launches - LaunchLab for permissionless token launches with bonding curves Perpetual Trading - Levera...
59
12632 youtube-downloader aviz85/claude-skills-library
YouTube Video Downloader Download YouTube videos with full control over quality and format settings. Quick Start The simplest way to download a video: python scripts/download_video.py "https://www.youtube.com/watch?v=VIDEO_ID" This downloads the video in best available quality as MP4 to /mnt/user-data/outputs/. Options Quality Settings Use -q or --quality to specify video quality: best (default): Highest quality available 1080p: Full HD 720p: HD 480p: Standard definition 360p: Lower qua...
59
12633 github-multi-repo ruvnet/claude-flow
GitHub Multi-Repository Coordination Skill Overview Advanced multi-repository coordination system that combines swarm intelligence, package synchronization, and repository architecture optimization. This skill enables organization-wide automation, cross-project collaboration, and scalable repository management. Core Capabilities 🔄 Multi-Repository Swarm Coordination Cross-repository AI swarm orchestration for distributed development workflows. 📦 Package Synchronization Intelligent dependency res...
59
12634 terraform-best-practices nickcrew/claude-ctx-plugin
Terraform Best Practices Comprehensive optimization guide for Terraform and Infrastructure as Code, maintained by Terramate. Contains 37 rules across 10 categories, prioritized by impact to guide automated refactoring and code generation. When to Apply Reference these guidelines when: Writing new Terraform modules or configurations Implementing infrastructure patterns (AWS, GCP, Azure, etc.) Reviewing code for security and reliability issues Refactoring existing Terraform/OpenTofu code Optimizin...
59
12635 shopify-admin-graphql tamiror6/shopify-app-skills
Shopify Admin GraphQL Use this skill when adding or changing code that talks to the Shopify Admin API via GraphQL. When to Use Querying Shopify data (shop, customers, orders, products, inventory) Mutating Shopify data (creating/updating customers, orders, products) Implementing pagination for large datasets Handling API throttling and rate limits Working with metafields or other Shopify resources Getting the GraphQL Client In Remix Loaders/Actions (Recommended) Use authenticate.admin() from @sho...
59
12636 exploratory-testing-advanced proffesor-for-testing/agentic-qe
Advanced Exploratory Testing <default_to_action> When exploring software or investigating quality risks: CREATE charter with mission, scope, and time-box (45-90 min) APPLY heuristics: SFDIPOT (quality criteria), FEW HICCUPPS (consistency oracles) EXPLORE systematically using test tours (Business District, Bad Neighborhood, Historical) DOCUMENT findings in real-time with notes, screenshots, evidence DEBRIEF: What learned? What's next? Share via agent memory Quick Heuristic Selection: What to test...
59
12637 internationalization-i18n secondsky/claude-skills
Internationalization (i18n) & Localization Overview Comprehensive guide to implementing internationalization and localization in applications. Covers message translation, pluralization, date/time/number formatting, RTL languages, and integration with popular i18n libraries. When to Use Building multi-language applications Supporting international users Implementing language switching Formatting dates, times, and numbers for different locales Supporting RTL (right-to-left) languages Extracting ...
59
12638 dev-server civitai/civitai
Dev Server Skill Centralized management of Next.js dev servers across multiple git worktrees. The daemon handles port allocation, environment variable injection, and log aggregation so that any agent can access dev server logs regardless of who started the server. Quick Start Check what's running node .claude/skills/dev-server/cli.mjs status Start a dev server for current worktree node .claude/skills/dev-server/cli.mjs start Start for a specific worktree node .claude/skills/dev-server/cli.mjs...
59
12639 ant-design-mini teachingai/full-stack-skills
When to use this skill Use this skill whenever the user wants to: Install and set up Ant Design Mini in a mini-program project Use Ant Design Mini components in Alipay Mini Program Use Ant Design Mini components in WeChat Mini Program Configure Ant Design Mini (theme, i18n, etc.) Use form components (Button, Input, Form, etc.) Use data display components (List, Card, etc.) Use feedback components (Toast, Modal, etc.) Use navigation components (Tabs, NavBar, etc.) Customize component styles Han...
59
12640 umbraco-property-action umbraco/umbraco-cms-backoffice-skills
Umbraco Property Action What is it? Property Actions are buttons that appear next to property labels in the backoffice, providing secondary functionality for property editors. They expand to show available actions when clicked. Property Actions let you add auxiliary features to existing property editors without modifying the editors themselves - useful for shortcuts, transformations, or context-specific operations. Documentation Always fetch the latest docs before implementing: Main docs : https...
59
12641 godot-composition-apps thedivergentai/gd-agentic-skills
Godot Composition & Architecture (Apps & UI) This skill enforces the Single Responsibility Principle within Godot's Node system. Whether building an RPG or a SaaS Dashboard, the rule remains: One Script = One Job. The Core Philosophy The Litmus Test Before writing a script, ask: "If I attached this script to a literal rock, would it still function?" Pass: An AuthComponent on a rock allows the rock to log in. (Context Agnostic) Fail: A LoginForm script on a rock tries to grab text fields the rock...
59
12642 ui-design-system borghei/claude-skills
UI/UX Design & Development Expert Comprehensive UI/UX design, review, and improvement for modern web applications. Production-ready implementations with TailwindCSS + Radix UI + shadcn/ui and modern React patterns. Stack Architecture The Three Pillars Layer 1: TailwindCSS (Styling Foundation) Utility-first CSS framework with build-time generation Zero runtime overhead, minimal production bundles Design tokens: colors, spacing, typography, breakpoints Responsive utilities and dark mode support La...
59
12643 umbraco-add-extension-reference umbraco/umbraco-cms-backoffice-skills
Add Extension Reference to Umbraco Instance What is it? After creating a new Umbraco backoffice extension project, it must be added as a project reference in the main Umbraco instance's .csproj file. Without this reference, the extension will not be loaded when running the Umbraco site. If a solution file ( .sln ) exists, the extension should also be added to it for proper IDE support (Visual Studio, Rider). This is optional - the extension will work without being in the solution. When to Use Us...
59
12644 hig-inputs raintree-technology/apple-hig-skills
Apple HIG: Inputs Check for .claude/apple-design-context.md before asking questions. Use existing context and only ask for information not already covered. Key Principles Support multiple input methods. Touch, pointer, keyboard, pencil, voice, eyes, hands, controllers. Design for the inputs available on each platform. On iPadOS, support both touch and pointer; on macOS, both pointer and keyboard. Consistent feedback for every input action. Visible, audible, or haptic response. Standard gestures ...
59
12645 app-store-deployment secondsky/claude-skills
App Store Deployment Overview Publish mobile applications to official app stores with proper code signing, versioning, testing, and submission procedures. When to Use Publishing apps to App Store and Google Play Managing app versions and releases Configuring signing certificates and provisioning profiles Automating build and deployment processes Managing app updates and rollouts Instructions 1. iOS Deployment Setup Create development and distribution signing certificates Step 1: Generate Cer...
59
12646 sheets-cli gmickel/sheets-cli
sheets-cli CLI for Google Sheets primitives. Read tables, append rows, update cells by key or index, batch operations. Installation: sheets-cli is already installed and available in the user's PATH. Run commands directly—no installation needed. Quick Reference Find spreadsheet by name sheets-cli sheets find --name "Projects" List sheets/tabs sheets-cli sheets list --spreadsheet <id-or-url> Read table data sheets-cli read table --spreadsheet <id> --sheet "Sheet1" --limit 100 Update by k...
59
12647 api-data-fetcher meleantonio/awesome-econ-ai-stuff
API Data Fetcher Purpose This skill helps economists fetch data from major economic data APIs including FRED (Federal Reserve Economic Data), World Bank, IMF, BLS, and OECD. It generates clean, documented Python code with proper error handling. When to Use Downloading macroeconomic indicators Building custom datasets from multiple sources Automating data updates for ongoing projects Fetching cross-country panel data Instructions Step 1: Identify Data Requirements Ask the user: What data do you n...
59
12648 uniappx-project teachingai/full-stack-skills
Use this skill whenever the user wants to: - Use any uni-app-x built-in component - Use any uni-app-x API (network, storage, device, UI, navigation, media, etc.) - Access per-component or per-API examples with official doc links - Check platform compatibility for components and APIs in uni-app-x - Build uni-app-x applications with Vue 3 + TypeScript + Vite How to use this skill This skill is organized to match the official uni-app-x components and API documentation: - Choose component ...
59
12649 erk-planning dagster-io/erk
Erk Planning Skill When to Load Load this skill when user mentions: "update plan", "update the plan" "modify the plan", "change the plan" "edit the plan" When these triggers fire and a plan was saved in this session: Check for plan-saved-issue.marker in session scratch: erk exec marker read --session-id < session-id > plan-saved-issue If found (exit code 0), invoke /local:plan-update <issue-number> with the marker content If not found (exit code 1), ask user for issue number Overview Erk-plans a...
59
12650 vuex-vue2 teachingai/full-stack-skills
Use this skill whenever the user wants to: - Install and set up Vuex in a Vue 2 project - Manage application state with Vuex - Use Vuex store in Vue components - Understand Vuex core concepts (state, getters, mutations, actions) - Use Vuex modules for large applications - Handle Vuex plugins and devtools - Understand Vuex API and methods - Troubleshoot Vuex issues How to use this skill This skill is organized to match the Vuex official documentation structure ([https://vuex.vuejs.org/...
59