[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-anthropic-command-development":3,"mdc--by37p6-key":38,"related-org-anthropic-command-development":5664,"related-repo-anthropic-command-development":5850},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":24,"repoUrl":25,"updatedAt":26,"license":27,"forks":28,"topics":29,"repo":33,"sourceUrl":36,"mdContent":37},"command-development","create and define slash commands","This skill should be used when the user asks to \"create a slash command\", \"add a command\", \"write a custom command\", \"define command arguments\", \"use command frontmatter\", \"organize commands\", \"create command with file references\", \"interactive command\", \"use AskUserQuestion in command\", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"anthropic","Anthropic","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fanthropic.png","anthropics",[13,15,18,21],{"name":9,"slug":8,"type":14},"tag",{"name":16,"slug":17,"type":14},"CLI","cli",{"name":19,"slug":20,"type":14},"Plugin Development","plugin-development",{"name":22,"slug":23,"type":14},"Engineering","engineering",32228,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fclaude-plugins-official","2026-04-10T04:55:45.450102",null,3591,[30,31,32],"claude-code","mcp","skills",{"repoUrl":25,"stars":24,"forks":28,"topics":34,"description":35},[30,31,32],"Official, Anthropic-managed directory of high quality Claude Code Plugins.","https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fclaude-plugins-official\u002Ftree\u002FHEAD\u002Fplugins\u002Fplugin-dev\u002Fskills\u002Fcommand-development","---\nname: command-development\ndescription: This skill should be used when the user asks to \"create a slash command\", \"add a command\", \"write a custom command\", \"define command arguments\", \"use command frontmatter\", \"organize commands\", \"create command with file references\", \"interactive command\", \"use AskUserQuestion in command\", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.\nversion: 0.2.0\n---\n\n# Command Development for Claude Code\n\n> **Note:** The `.claude\u002Fcommands\u002F` directory is a legacy format. For new skills, use the `.claude\u002Fskills\u002F\u003Cname>\u002FSKILL.md` directory format. Both are loaded identically — the only difference is file layout. See the `skill-development` skill for the preferred format.\n\n## Overview\n\nSlash commands are frequently-used prompts defined as Markdown files that Claude executes during interactive sessions. Understanding command structure, frontmatter options, and dynamic features enables creating powerful, reusable workflows.\n\n**Key concepts:**\n\n- Markdown file format for commands\n- YAML frontmatter for configuration\n- Dynamic arguments and file references\n- Bash execution for context\n- Command organization and namespacing\n\n## Command Basics\n\n### What is a Slash Command?\n\nA slash command is a Markdown file containing a prompt that Claude executes when invoked. Commands provide:\n\n- **Reusability**: Define once, use repeatedly\n- **Consistency**: Standardize common workflows\n- **Sharing**: Distribute across team or projects\n- **Efficiency**: Quick access to complex prompts\n\n### Critical: Commands are Instructions FOR Claude\n\n**Commands are written for agent consumption, not human consumption.**\n\nWhen a user invokes `\u002Fcommand-name`, the command content becomes Claude's instructions. Write commands as directives TO Claude about what to do, not as messages TO the user.\n\n**Correct approach (instructions for Claude):**\n\n```markdown\nReview this code for security vulnerabilities including:\n\n- SQL injection\n- XSS attacks\n- Authentication issues\n\nProvide specific line numbers and severity ratings.\n```\n\n**Incorrect approach (messages to user):**\n\n```markdown\nThis command will review your code for security issues.\nYou'll receive a report with vulnerability details.\n```\n\nThe first example tells Claude what to do. The second tells the user what will happen but doesn't instruct Claude. Always use the first approach.\n\n### Command Locations\n\n**Project commands** (shared with team):\n\n- Location: `.claude\u002Fcommands\u002F`\n- Scope: Available in specific project\n- Label: Shown as \"(project)\" in `\u002Fhelp`\n- Use for: Team workflows, project-specific tasks\n\n**Personal commands** (available everywhere):\n\n- Location: `~\u002F.claude\u002Fcommands\u002F`\n- Scope: Available in all projects\n- Label: Shown as \"(user)\" in `\u002Fhelp`\n- Use for: Personal workflows, cross-project utilities\n\n**Plugin commands** (bundled with plugins):\n\n- Location: `plugin-name\u002Fcommands\u002F`\n- Scope: Available when plugin installed\n- Label: Shown as \"(plugin-name)\" in `\u002Fhelp`\n- Use for: Plugin-specific functionality\n\n## File Format\n\n### Basic Structure\n\nCommands are Markdown files with `.md` extension:\n\n```\n.claude\u002Fcommands\u002F\n├── review.md           # \u002Freview command\n├── test.md             # \u002Ftest command\n└── deploy.md           # \u002Fdeploy command\n```\n\n**Simple command:**\n\n```markdown\nReview this code for security vulnerabilities including:\n\n- SQL injection\n- XSS attacks\n- Authentication bypass\n- Insecure data handling\n```\n\nNo frontmatter needed for basic commands.\n\n### With YAML Frontmatter\n\nAdd configuration using YAML frontmatter:\n\n```markdown\n---\ndescription: Review code for security issues\nallowed-tools: Read, Grep, Bash(git:*)\nmodel: sonnet\n---\n\nReview this code for security vulnerabilities...\n```\n\n## YAML Frontmatter Fields\n\n### description\n\n**Purpose:** Brief description shown in `\u002Fhelp`\n**Type:** String\n**Default:** First line of command prompt\n\n```yaml\n---\ndescription: Review pull request for code quality\n---\n```\n\n**Best practice:** Clear, actionable description (under 60 characters)\n\n### allowed-tools\n\n**Purpose:** Specify which tools command can use\n**Type:** String or Array\n**Default:** Inherits from conversation\n\n```yaml\n---\nallowed-tools: Read, Write, Edit, Bash(git:*)\n---\n```\n\n**Patterns:**\n\n- `Read, Write, Edit` - Specific tools\n- `Bash(git:*)` - Bash with git commands only\n- `*` - All tools (rarely needed)\n\n**Use when:** Command requires specific tool access\n\n### model\n\n**Purpose:** Specify model for command execution\n**Type:** String (sonnet, opus, haiku)\n**Default:** Inherits from conversation\n\n```yaml\n---\nmodel: haiku\n---\n```\n\n**Use cases:**\n\n- `haiku` - Fast, simple commands\n- `sonnet` - Standard workflows\n- `opus` - Complex analysis\n\n### argument-hint\n\n**Purpose:** Document expected arguments for autocomplete\n**Type:** String\n**Default:** None\n\n```yaml\n---\nargument-hint: [pr-number] [priority] [assignee]\n---\n```\n\n**Benefits:**\n\n- Helps users understand command arguments\n- Improves command discovery\n- Documents command interface\n\n### disable-model-invocation\n\n**Purpose:** Prevent SlashCommand tool from programmatically calling command\n**Type:** Boolean\n**Default:** false\n\n```yaml\n---\ndisable-model-invocation: true\n---\n```\n\n**Use when:** Command should only be manually invoked\n\n## Dynamic Arguments\n\n### Using $ARGUMENTS\n\nCapture all arguments as single string:\n\n```markdown\n---\ndescription: Fix issue by number\nargument-hint: [issue-number]\n---\n\nFix issue #$ARGUMENTS following our coding standards and best practices.\n```\n\n**Usage:**\n\n```\n> \u002Ffix-issue 123\n> \u002Ffix-issue 456\n```\n\n**Expands to:**\n\n```\nFix issue #123 following our coding standards...\nFix issue #456 following our coding standards...\n```\n\n### Using Positional Arguments\n\nCapture individual arguments with `$1`, `$2`, `$3`, etc.:\n\n```markdown\n---\ndescription: Review PR with priority and assignee\nargument-hint: [pr-number] [priority] [assignee]\n---\n\nReview pull request #$1 with priority level $2.\nAfter review, assign to $3 for follow-up.\n```\n\n**Usage:**\n\n```\n> \u002Freview-pr 123 high alice\n```\n\n**Expands to:**\n\n```\nReview pull request #123 with priority level high.\nAfter review, assign to alice for follow-up.\n```\n\n### Combining Arguments\n\nMix positional and remaining arguments:\n\n```markdown\nDeploy $1 to $2 environment with options: $3\n```\n\n**Usage:**\n\n```\n> \u002Fdeploy api staging --force --skip-tests\n```\n\n**Expands to:**\n\n```\nDeploy api to staging environment with options: --force --skip-tests\n```\n\n## File References\n\n### Using @ Syntax\n\nInclude file contents in command:\n\n```markdown\n---\ndescription: Review specific file\nargument-hint: [file-path]\n---\n\nReview @$1 for:\n\n- Code quality\n- Best practices\n- Potential bugs\n```\n\n**Usage:**\n\n```\n> \u002Freview-file src\u002Fapi\u002Fusers.ts\n```\n\n**Effect:** Claude reads `src\u002Fapi\u002Fusers.ts` before processing command\n\n### Multiple File References\n\nReference multiple files:\n\n```markdown\nCompare @src\u002Fold-version.js with @src\u002Fnew-version.js\n\nIdentify:\n\n- Breaking changes\n- New features\n- Bug fixes\n```\n\n### Static File References\n\nReference known files without arguments:\n\n```markdown\nReview @package.json and @tsconfig.json for consistency\n\nEnsure:\n\n- TypeScript version matches\n- Dependencies are aligned\n- Build configuration is correct\n```\n\n## Bash Execution in Commands\n\nCommands can execute bash commands inline to dynamically gather context before Claude processes the command. This is useful for including repository state, environment information, or project-specific context.\n\n**When to use:**\n\n- Include dynamic context (git status, environment vars, etc.)\n- Gather project\u002Frepository state\n- Build context-aware workflows\n\n**Implementation details:**\nFor complete syntax, examples, and best practices, see `references\u002Fplugin-features-reference.md` section on bash execution. The reference includes the exact syntax and multiple working examples to avoid execution issues\n\n## Command Organization\n\n### Flat Structure\n\nSimple organization for small command sets:\n\n```\n.claude\u002Fcommands\u002F\n├── build.md\n├── test.md\n├── deploy.md\n├── review.md\n└── docs.md\n```\n\n**Use when:** 5-15 commands, no clear categories\n\n### Namespaced Structure\n\nOrganize commands in subdirectories:\n\n```\n.claude\u002Fcommands\u002F\n├── ci\u002F\n│   ├── build.md        # \u002Fbuild (project:ci)\n│   ├── test.md         # \u002Ftest (project:ci)\n│   └── lint.md         # \u002Flint (project:ci)\n├── git\u002F\n│   ├── commit.md       # \u002Fcommit (project:git)\n│   └── pr.md           # \u002Fpr (project:git)\n└── docs\u002F\n    ├── generate.md     # \u002Fgenerate (project:docs)\n    └── publish.md      # \u002Fpublish (project:docs)\n```\n\n**Benefits:**\n\n- Logical grouping by category\n- Namespace shown in `\u002Fhelp`\n- Easier to find related commands\n\n**Use when:** 15+ commands, clear categories\n\n## Best Practices\n\n### Command Design\n\n1. **Single responsibility:** One command, one task\n2. **Clear descriptions:** Self-explanatory in `\u002Fhelp`\n3. **Explicit dependencies:** Use `allowed-tools` when needed\n4. **Document arguments:** Always provide `argument-hint`\n5. **Consistent naming:** Use verb-noun pattern (review-pr, fix-issue)\n\n### Argument Handling\n\n1. **Validate arguments:** Check for required arguments in prompt\n2. **Provide defaults:** Suggest defaults when arguments missing\n3. **Document format:** Explain expected argument format\n4. **Handle edge cases:** Consider missing or invalid arguments\n\n```markdown\n---\nargument-hint: [pr-number]\n---\n\n$IF($1,\nReview PR #$1,\nPlease provide a PR number. Usage: \u002Freview-pr [number]\n)\n```\n\n### File References\n\n1. **Explicit paths:** Use clear file paths\n2. **Check existence:** Handle missing files gracefully\n3. **Relative paths:** Use project-relative paths\n4. **Glob support:** Consider using Glob tool for patterns\n\n### Bash Commands\n\n1. **Limit scope:** Use `Bash(git:*)` not `Bash(*)`\n2. **Safe commands:** Avoid destructive operations\n3. **Handle errors:** Consider command failures\n4. **Keep fast:** Long-running commands slow invocation\n\n### Documentation\n\n1. **Add comments:** Explain complex logic\n2. **Provide examples:** Show usage in comments\n3. **List requirements:** Document dependencies\n4. **Version commands:** Note breaking changes\n\n```markdown\n---\ndescription: Deploy application to environment\nargument-hint: [environment] [version]\n---\n\n\u003C!--\nUsage: \u002Fdeploy [staging|production] [version]\nRequires: AWS credentials configured\nExample: \u002Fdeploy staging v1.2.3\n-->\n\nDeploy application to $1 environment using version $2...\n```\n\n## Common Patterns\n\n### Review Pattern\n\n```markdown\n---\ndescription: Review code changes\nallowed-tools: Read, Bash(git:*)\n---\n\nFiles changed: !`git diff --name-only`\n\nReview each file for:\n\n1. Code quality and style\n2. Potential bugs or issues\n3. Test coverage\n4. Documentation needs\n\nProvide specific feedback for each file.\n```\n\n### Testing Pattern\n\n```markdown\n---\ndescription: Run tests for specific file\nargument-hint: [test-file]\nallowed-tools: Bash(npm:*)\n---\n\nRun tests: !`npm test $1`\n\nAnalyze results and suggest fixes for failures.\n```\n\n### Documentation Pattern\n\n```markdown\n---\ndescription: Generate documentation for file\nargument-hint: [source-file]\n---\n\nGenerate comprehensive documentation for @$1 including:\n\n- Function\u002Fclass descriptions\n- Parameter documentation\n- Return value descriptions\n- Usage examples\n- Edge cases and errors\n```\n\n### Workflow Pattern\n\n```markdown\n---\ndescription: Complete PR workflow\nargument-hint: [pr-number]\nallowed-tools: Bash(gh:*), Read\n---\n\nPR #$1 Workflow:\n\n1. Fetch PR: !`gh pr view $1`\n2. Review changes\n3. Run checks\n4. Approve or request changes\n```\n\n## Troubleshooting\n\n**Command not appearing:**\n\n- Check file is in correct directory\n- Verify `.md` extension present\n- Ensure valid Markdown format\n- Restart Claude Code\n\n**Arguments not working:**\n\n- Verify `$1`, `$2` syntax correct\n- Check `argument-hint` matches usage\n- Ensure no extra spaces\n\n**Bash execution failing:**\n\n- Check `allowed-tools` includes Bash\n- Verify command syntax in backticks\n- Test command in terminal first\n- Check for required permissions\n\n**File references not working:**\n\n- Verify `@` syntax correct\n- Check file path is valid\n- Ensure Read tool allowed\n- Use absolute or project-relative paths\n\n## Plugin-Specific Features\n\n### CLAUDE_PLUGIN_ROOT Variable\n\nPlugin commands have access to `${CLAUDE_PLUGIN_ROOT}`, an environment variable that resolves to the plugin's absolute path.\n\n**Purpose:**\n\n- Reference plugin files portably\n- Execute plugin scripts\n- Load plugin configuration\n- Access plugin templates\n\n**Basic usage:**\n\n```markdown\n---\ndescription: Analyze using plugin script\nallowed-tools: Bash(node:*)\n---\n\nRun analysis: !`node ${CLAUDE_PLUGIN_ROOT}\u002Fscripts\u002Fanalyze.js $1`\n\nReview results and report findings.\n```\n\n**Common patterns:**\n\n```markdown\n# Execute plugin script\n\n!`bash ${CLAUDE_PLUGIN_ROOT}\u002Fscripts\u002Fscript.sh`\n\n# Load plugin configuration\n\n@${CLAUDE_PLUGIN_ROOT}\u002Fconfig\u002Fsettings.json\n\n# Use plugin template\n\n@${CLAUDE_PLUGIN_ROOT}\u002Ftemplates\u002Freport.md\n\n# Access plugin resources\n\n@${CLAUDE_PLUGIN_ROOT}\u002Fdocs\u002Freference.md\n```\n\n**Why use it:**\n\n- Works across all installations\n- Portable between systems\n- No hardcoded paths needed\n- Essential for multi-file plugins\n\n### Plugin Command Organization\n\nPlugin commands discovered automatically from `commands\u002F` directory:\n\n```\nplugin-name\u002F\n├── commands\u002F\n│   ├── foo.md              # \u002Ffoo (plugin:plugin-name)\n│   ├── bar.md              # \u002Fbar (plugin:plugin-name)\n│   └── utils\u002F\n│       └── helper.md       # \u002Fhelper (plugin:plugin-name:utils)\n└── plugin.json\n```\n\n**Namespace benefits:**\n\n- Logical command grouping\n- Shown in `\u002Fhelp` output\n- Avoid name conflicts\n- Organize related commands\n\n**Naming conventions:**\n\n- Use descriptive action names\n- Avoid generic names (test, run)\n- Consider plugin-specific prefix\n- Use hyphens for multi-word names\n\n### Plugin Command Patterns\n\n**Configuration-based pattern:**\n\n```markdown\n---\ndescription: Deploy using plugin configuration\nargument-hint: [environment]\nallowed-tools: Read, Bash(*)\n---\n\nLoad configuration: @${CLAUDE_PLUGIN_ROOT}\u002Fconfig\u002F$1-deploy.json\n\nDeploy to $1 using configuration settings.\nMonitor deployment and report status.\n```\n\n**Template-based pattern:**\n\n```markdown\n---\ndescription: Generate docs from template\nargument-hint: [component]\n---\n\nTemplate: @${CLAUDE_PLUGIN_ROOT}\u002Ftemplates\u002Fdocs.md\n\nGenerate documentation for $1 following template structure.\n```\n\n**Multi-script pattern:**\n\n```markdown\n---\ndescription: Complete build workflow\nallowed-tools: Bash(*)\n---\n\nBuild: !`bash ${CLAUDE_PLUGIN_ROOT}\u002Fscripts\u002Fbuild.sh`\nTest: !`bash ${CLAUDE_PLUGIN_ROOT}\u002Fscripts\u002Ftest.sh`\nPackage: !`bash ${CLAUDE_PLUGIN_ROOT}\u002Fscripts\u002Fpackage.sh`\n\nReview outputs and report workflow status.\n```\n\n**See `references\u002Fplugin-features-reference.md` for detailed patterns.**\n\n## Integration with Plugin Components\n\nCommands can integrate with other plugin components for powerful workflows.\n\n### Agent Integration\n\nLaunch plugin agents for complex tasks:\n\n```markdown\n---\ndescription: Deep code review\nargument-hint: [file-path]\n---\n\nInitiate comprehensive review of @$1 using the code-reviewer agent.\n\nThe agent will analyze:\n\n- Code structure\n- Security issues\n- Performance\n- Best practices\n\nAgent uses plugin resources:\n\n- ${CLAUDE_PLUGIN_ROOT}\u002Fconfig\u002Frules.json\n- ${CLAUDE_PLUGIN_ROOT}\u002Fchecklists\u002Freview.md\n```\n\n**Key points:**\n\n- Agent must exist in `plugin\u002Fagents\u002F` directory\n- Claude uses Task tool to launch agent\n- Document agent capabilities\n- Reference plugin resources agent uses\n\n### Skill Integration\n\nLeverage plugin skills for specialized knowledge:\n\n```markdown\n---\ndescription: Document API with standards\nargument-hint: [api-file]\n---\n\nDocument API in @$1 following plugin standards.\n\nUse the api-docs-standards skill to ensure:\n\n- Complete endpoint documentation\n- Consistent formatting\n- Example quality\n- Error documentation\n\nGenerate production-ready API docs.\n```\n\n**Key points:**\n\n- Skill must exist in `plugin\u002Fskills\u002F` directory\n- Mention skill name to trigger invocation\n- Document skill purpose\n- Explain what skill provides\n\n### Hook Coordination\n\nDesign commands that work with plugin hooks:\n\n- Commands can prepare state for hooks to process\n- Hooks execute automatically on tool events\n- Commands should document expected hook behavior\n- Guide Claude on interpreting hook output\n\nSee `references\u002Fplugin-features-reference.md` for examples of commands that coordinate with hooks\n\n### Multi-Component Workflows\n\nCombine agents, skills, and scripts:\n\n```markdown\n---\ndescription: Comprehensive review workflow\nargument-hint: [file]\nallowed-tools: Bash(node:*), Read\n---\n\nTarget: @$1\n\nPhase 1 - Static Analysis:\n!`node ${CLAUDE_PLUGIN_ROOT}\u002Fscripts\u002Flint.js $1`\n\nPhase 2 - Deep Review:\nLaunch code-reviewer agent for detailed analysis.\n\nPhase 3 - Standards Check:\nUse coding-standards skill for validation.\n\nPhase 4 - Report:\nTemplate: @${CLAUDE_PLUGIN_ROOT}\u002Ftemplates\u002Freview.md\n\nCompile findings into report following template.\n```\n\n**When to use:**\n\n- Complex multi-step workflows\n- Leverage multiple plugin capabilities\n- Require specialized analysis\n- Need structured outputs\n\n## Validation Patterns\n\nCommands should validate inputs and resources before processing.\n\n### Argument Validation\n\n```markdown\n---\ndescription: Deploy with validation\nargument-hint: [environment]\n---\n\nValidate environment: !`echo \"$1\" | grep -E \"^(dev|staging|prod)$\" || echo \"INVALID\"`\n\nIf $1 is valid environment:\nDeploy to $1\nOtherwise:\nExplain valid environments: dev, staging, prod\nShow usage: \u002Fdeploy [environment]\n```\n\n### File Existence Checks\n\n```markdown\n---\ndescription: Process configuration\nargument-hint: [config-file]\n---\n\nCheck file exists: !`test -f $1 && echo \"EXISTS\" || echo \"MISSING\"`\n\nIf file exists:\nProcess configuration: @$1\nOtherwise:\nExplain where to place config file\nShow expected format\nProvide example configuration\n```\n\n### Plugin Resource Validation\n\n```markdown\n---\ndescription: Run plugin analyzer\nallowed-tools: Bash(test:*)\n---\n\nValidate plugin setup:\n\n- Script: !`test -x ${CLAUDE_PLUGIN_ROOT}\u002Fbin\u002Fanalyze && echo \"✓\" || echo \"✗\"`\n- Config: !`test -f ${CLAUDE_PLUGIN_ROOT}\u002Fconfig.json && echo \"✓\" || echo \"✗\"`\n\nIf all checks pass, run analysis.\nOtherwise, report missing components.\n```\n\n### Error Handling\n\n```markdown\n---\ndescription: Build with error handling\nallowed-tools: Bash(*)\n---\n\nExecute build: !`bash ${CLAUDE_PLUGIN_ROOT}\u002Fscripts\u002Fbuild.sh 2>&1 || echo \"BUILD_FAILED\"`\n\nIf build succeeded:\nReport success and output location\nIf build failed:\nAnalyze error output\nSuggest likely causes\nProvide troubleshooting steps\n```\n\n**Best practices:**\n\n- Validate early in command\n- Provide helpful error messages\n- Suggest corrective actions\n- Handle edge cases gracefully\n\n---\n\nFor detailed frontmatter field specifications, see `references\u002Ffrontmatter-reference.md`.\nFor plugin-specific features and patterns, see `references\u002Fplugin-features-reference.md`.\nFor command pattern examples, see `examples\u002F` directory.\n",{"data":39,"body":41},{"name":4,"description":6,"version":40},"0.2.0",{"type":42,"children":43},"root",[44,53,94,101,106,114,144,150,157,162,205,211,219,232,240,331,339,362,367,373,383,417,427,460,470,503,509,515,528,538,546,613,618,624,629,720,726,730,759,799,809,813,834,871,879,915,925,929,949,986,994,1030,1035,1055,1129,1137,1155,1160,1181,1219,1228,1234,1240,1245,1321,1329,1338,1346,1355,1361,1389,1496,1503,1512,1519,1528,1534,1539,1553,1560,1569,1576,1585,1591,1597,1602,1724,1731,1740,1758,1764,1769,1842,1848,1853,1926,1932,1937,1945,1963,1981,1987,1993,1998,2007,2016,2022,2027,2036,2043,2066,2075,2081,2087,2158,2164,2207,2304,2309,2352,2358,2413,2419,2462,2601,2607,2613,2788,2794,2914,2920,3063,3069,3228,3234,3242,3272,3280,3317,3325,3354,3362,3391,3397,3403,3416,3423,3446,3454,3550,3558,3708,3716,3739,3745,3758,3767,3775,3805,3813,3836,3842,3850,3964,3972,4063,4071,4209,4224,4230,4235,4241,4246,4439,4447,4478,4484,4489,4650,4657,4687,4693,4698,4721,4732,4738,4743,4957,4964,4987,4993,4998,5004,5151,5157,5300,5306,5454,5460,5595,5603,5626,5630,5658],{"type":45,"tag":46,"props":47,"children":49},"element","h1",{"id":48},"command-development-for-claude-code",[50],{"type":51,"value":52},"text","Command Development for Claude Code",{"type":45,"tag":54,"props":55,"children":56},"blockquote",{},[57],{"type":45,"tag":58,"props":59,"children":60},"p",{},[61,67,69,76,78,84,86,92],{"type":45,"tag":62,"props":63,"children":64},"strong",{},[65],{"type":51,"value":66},"Note:",{"type":51,"value":68}," The ",{"type":45,"tag":70,"props":71,"children":73},"code",{"className":72},[],[74],{"type":51,"value":75},".claude\u002Fcommands\u002F",{"type":51,"value":77}," directory is a legacy format. For new skills, use the ",{"type":45,"tag":70,"props":79,"children":81},{"className":80},[],[82],{"type":51,"value":83},".claude\u002Fskills\u002F\u003Cname>\u002FSKILL.md",{"type":51,"value":85}," directory format. Both are loaded identically — the only difference is file layout. See the ",{"type":45,"tag":70,"props":87,"children":89},{"className":88},[],[90],{"type":51,"value":91},"skill-development",{"type":51,"value":93}," skill for the preferred format.",{"type":45,"tag":95,"props":96,"children":98},"h2",{"id":97},"overview",[99],{"type":51,"value":100},"Overview",{"type":45,"tag":58,"props":102,"children":103},{},[104],{"type":51,"value":105},"Slash commands are frequently-used prompts defined as Markdown files that Claude executes during interactive sessions. Understanding command structure, frontmatter options, and dynamic features enables creating powerful, reusable workflows.",{"type":45,"tag":58,"props":107,"children":108},{},[109],{"type":45,"tag":62,"props":110,"children":111},{},[112],{"type":51,"value":113},"Key concepts:",{"type":45,"tag":115,"props":116,"children":117},"ul",{},[118,124,129,134,139],{"type":45,"tag":119,"props":120,"children":121},"li",{},[122],{"type":51,"value":123},"Markdown file format for commands",{"type":45,"tag":119,"props":125,"children":126},{},[127],{"type":51,"value":128},"YAML frontmatter for configuration",{"type":45,"tag":119,"props":130,"children":131},{},[132],{"type":51,"value":133},"Dynamic arguments and file references",{"type":45,"tag":119,"props":135,"children":136},{},[137],{"type":51,"value":138},"Bash execution for context",{"type":45,"tag":119,"props":140,"children":141},{},[142],{"type":51,"value":143},"Command organization and namespacing",{"type":45,"tag":95,"props":145,"children":147},{"id":146},"command-basics",[148],{"type":51,"value":149},"Command Basics",{"type":45,"tag":151,"props":152,"children":154},"h3",{"id":153},"what-is-a-slash-command",[155],{"type":51,"value":156},"What is a Slash Command?",{"type":45,"tag":58,"props":158,"children":159},{},[160],{"type":51,"value":161},"A slash command is a Markdown file containing a prompt that Claude executes when invoked. Commands provide:",{"type":45,"tag":115,"props":163,"children":164},{},[165,175,185,195],{"type":45,"tag":119,"props":166,"children":167},{},[168,173],{"type":45,"tag":62,"props":169,"children":170},{},[171],{"type":51,"value":172},"Reusability",{"type":51,"value":174},": Define once, use repeatedly",{"type":45,"tag":119,"props":176,"children":177},{},[178,183],{"type":45,"tag":62,"props":179,"children":180},{},[181],{"type":51,"value":182},"Consistency",{"type":51,"value":184},": Standardize common workflows",{"type":45,"tag":119,"props":186,"children":187},{},[188,193],{"type":45,"tag":62,"props":189,"children":190},{},[191],{"type":51,"value":192},"Sharing",{"type":51,"value":194},": Distribute across team or projects",{"type":45,"tag":119,"props":196,"children":197},{},[198,203],{"type":45,"tag":62,"props":199,"children":200},{},[201],{"type":51,"value":202},"Efficiency",{"type":51,"value":204},": Quick access to complex prompts",{"type":45,"tag":151,"props":206,"children":208},{"id":207},"critical-commands-are-instructions-for-claude",[209],{"type":51,"value":210},"Critical: Commands are Instructions FOR Claude",{"type":45,"tag":58,"props":212,"children":213},{},[214],{"type":45,"tag":62,"props":215,"children":216},{},[217],{"type":51,"value":218},"Commands are written for agent consumption, not human consumption.",{"type":45,"tag":58,"props":220,"children":221},{},[222,224,230],{"type":51,"value":223},"When a user invokes ",{"type":45,"tag":70,"props":225,"children":227},{"className":226},[],[228],{"type":51,"value":229},"\u002Fcommand-name",{"type":51,"value":231},", the command content becomes Claude's instructions. Write commands as directives TO Claude about what to do, not as messages TO the user.",{"type":45,"tag":58,"props":233,"children":234},{},[235],{"type":45,"tag":62,"props":236,"children":237},{},[238],{"type":51,"value":239},"Correct approach (instructions for Claude):",{"type":45,"tag":241,"props":242,"children":247},"pre",{"className":243,"code":244,"language":245,"meta":246,"style":246},"language-markdown shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","Review this code for security vulnerabilities including:\n\n- SQL injection\n- XSS attacks\n- Authentication issues\n\nProvide specific line numbers and severity ratings.\n","markdown","",[248],{"type":45,"tag":70,"props":249,"children":250},{"__ignoreMap":246},[251,263,273,288,301,314,322],{"type":45,"tag":252,"props":253,"children":256},"span",{"class":254,"line":255},"line",1,[257],{"type":45,"tag":252,"props":258,"children":260},{"style":259},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[261],{"type":51,"value":262},"Review this code for security vulnerabilities including:\n",{"type":45,"tag":252,"props":264,"children":266},{"class":254,"line":265},2,[267],{"type":45,"tag":252,"props":268,"children":270},{"emptyLinePlaceholder":269},true,[271],{"type":51,"value":272},"\n",{"type":45,"tag":252,"props":274,"children":276},{"class":254,"line":275},3,[277,283],{"type":45,"tag":252,"props":278,"children":280},{"style":279},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[281],{"type":51,"value":282},"-",{"type":45,"tag":252,"props":284,"children":285},{"style":259},[286],{"type":51,"value":287}," SQL injection\n",{"type":45,"tag":252,"props":289,"children":291},{"class":254,"line":290},4,[292,296],{"type":45,"tag":252,"props":293,"children":294},{"style":279},[295],{"type":51,"value":282},{"type":45,"tag":252,"props":297,"children":298},{"style":259},[299],{"type":51,"value":300}," XSS attacks\n",{"type":45,"tag":252,"props":302,"children":304},{"class":254,"line":303},5,[305,309],{"type":45,"tag":252,"props":306,"children":307},{"style":279},[308],{"type":51,"value":282},{"type":45,"tag":252,"props":310,"children":311},{"style":259},[312],{"type":51,"value":313}," Authentication issues\n",{"type":45,"tag":252,"props":315,"children":317},{"class":254,"line":316},6,[318],{"type":45,"tag":252,"props":319,"children":320},{"emptyLinePlaceholder":269},[321],{"type":51,"value":272},{"type":45,"tag":252,"props":323,"children":325},{"class":254,"line":324},7,[326],{"type":45,"tag":252,"props":327,"children":328},{"style":259},[329],{"type":51,"value":330},"Provide specific line numbers and severity ratings.\n",{"type":45,"tag":58,"props":332,"children":333},{},[334],{"type":45,"tag":62,"props":335,"children":336},{},[337],{"type":51,"value":338},"Incorrect approach (messages to user):",{"type":45,"tag":241,"props":340,"children":342},{"className":243,"code":341,"language":245,"meta":246,"style":246},"This command will review your code for security issues.\nYou'll receive a report with vulnerability details.\n",[343],{"type":45,"tag":70,"props":344,"children":345},{"__ignoreMap":246},[346,354],{"type":45,"tag":252,"props":347,"children":348},{"class":254,"line":255},[349],{"type":45,"tag":252,"props":350,"children":351},{"style":259},[352],{"type":51,"value":353},"This command will review your code for security issues.\n",{"type":45,"tag":252,"props":355,"children":356},{"class":254,"line":265},[357],{"type":45,"tag":252,"props":358,"children":359},{"style":259},[360],{"type":51,"value":361},"You'll receive a report with vulnerability details.\n",{"type":45,"tag":58,"props":363,"children":364},{},[365],{"type":51,"value":366},"The first example tells Claude what to do. The second tells the user what will happen but doesn't instruct Claude. Always use the first approach.",{"type":45,"tag":151,"props":368,"children":370},{"id":369},"command-locations",[371],{"type":51,"value":372},"Command Locations",{"type":45,"tag":58,"props":374,"children":375},{},[376,381],{"type":45,"tag":62,"props":377,"children":378},{},[379],{"type":51,"value":380},"Project commands",{"type":51,"value":382}," (shared with team):",{"type":45,"tag":115,"props":384,"children":385},{},[386,396,401,412],{"type":45,"tag":119,"props":387,"children":388},{},[389,391],{"type":51,"value":390},"Location: ",{"type":45,"tag":70,"props":392,"children":394},{"className":393},[],[395],{"type":51,"value":75},{"type":45,"tag":119,"props":397,"children":398},{},[399],{"type":51,"value":400},"Scope: Available in specific project",{"type":45,"tag":119,"props":402,"children":403},{},[404,406],{"type":51,"value":405},"Label: Shown as \"(project)\" in ",{"type":45,"tag":70,"props":407,"children":409},{"className":408},[],[410],{"type":51,"value":411},"\u002Fhelp",{"type":45,"tag":119,"props":413,"children":414},{},[415],{"type":51,"value":416},"Use for: Team workflows, project-specific tasks",{"type":45,"tag":58,"props":418,"children":419},{},[420,425],{"type":45,"tag":62,"props":421,"children":422},{},[423],{"type":51,"value":424},"Personal commands",{"type":51,"value":426}," (available everywhere):",{"type":45,"tag":115,"props":428,"children":429},{},[430,440,445,455],{"type":45,"tag":119,"props":431,"children":432},{},[433,434],{"type":51,"value":390},{"type":45,"tag":70,"props":435,"children":437},{"className":436},[],[438],{"type":51,"value":439},"~\u002F.claude\u002Fcommands\u002F",{"type":45,"tag":119,"props":441,"children":442},{},[443],{"type":51,"value":444},"Scope: Available in all projects",{"type":45,"tag":119,"props":446,"children":447},{},[448,450],{"type":51,"value":449},"Label: Shown as \"(user)\" in ",{"type":45,"tag":70,"props":451,"children":453},{"className":452},[],[454],{"type":51,"value":411},{"type":45,"tag":119,"props":456,"children":457},{},[458],{"type":51,"value":459},"Use for: Personal workflows, cross-project utilities",{"type":45,"tag":58,"props":461,"children":462},{},[463,468],{"type":45,"tag":62,"props":464,"children":465},{},[466],{"type":51,"value":467},"Plugin commands",{"type":51,"value":469}," (bundled with plugins):",{"type":45,"tag":115,"props":471,"children":472},{},[473,483,488,498],{"type":45,"tag":119,"props":474,"children":475},{},[476,477],{"type":51,"value":390},{"type":45,"tag":70,"props":478,"children":480},{"className":479},[],[481],{"type":51,"value":482},"plugin-name\u002Fcommands\u002F",{"type":45,"tag":119,"props":484,"children":485},{},[486],{"type":51,"value":487},"Scope: Available when plugin installed",{"type":45,"tag":119,"props":489,"children":490},{},[491,493],{"type":51,"value":492},"Label: Shown as \"(plugin-name)\" in ",{"type":45,"tag":70,"props":494,"children":496},{"className":495},[],[497],{"type":51,"value":411},{"type":45,"tag":119,"props":499,"children":500},{},[501],{"type":51,"value":502},"Use for: Plugin-specific functionality",{"type":45,"tag":95,"props":504,"children":506},{"id":505},"file-format",[507],{"type":51,"value":508},"File Format",{"type":45,"tag":151,"props":510,"children":512},{"id":511},"basic-structure",[513],{"type":51,"value":514},"Basic Structure",{"type":45,"tag":58,"props":516,"children":517},{},[518,520,526],{"type":51,"value":519},"Commands are Markdown files with ",{"type":45,"tag":70,"props":521,"children":523},{"className":522},[],[524],{"type":51,"value":525},".md",{"type":51,"value":527}," extension:",{"type":45,"tag":241,"props":529,"children":533},{"className":530,"code":532,"language":51},[531],"language-text",".claude\u002Fcommands\u002F\n├── review.md           # \u002Freview command\n├── test.md             # \u002Ftest command\n└── deploy.md           # \u002Fdeploy command\n",[534],{"type":45,"tag":70,"props":535,"children":536},{"__ignoreMap":246},[537],{"type":51,"value":532},{"type":45,"tag":58,"props":539,"children":540},{},[541],{"type":45,"tag":62,"props":542,"children":543},{},[544],{"type":51,"value":545},"Simple command:",{"type":45,"tag":241,"props":547,"children":549},{"className":243,"code":548,"language":245,"meta":246,"style":246},"Review this code for security vulnerabilities including:\n\n- SQL injection\n- XSS attacks\n- Authentication bypass\n- Insecure data handling\n",[550],{"type":45,"tag":70,"props":551,"children":552},{"__ignoreMap":246},[553,560,567,578,589,601],{"type":45,"tag":252,"props":554,"children":555},{"class":254,"line":255},[556],{"type":45,"tag":252,"props":557,"children":558},{"style":259},[559],{"type":51,"value":262},{"type":45,"tag":252,"props":561,"children":562},{"class":254,"line":265},[563],{"type":45,"tag":252,"props":564,"children":565},{"emptyLinePlaceholder":269},[566],{"type":51,"value":272},{"type":45,"tag":252,"props":568,"children":569},{"class":254,"line":275},[570,574],{"type":45,"tag":252,"props":571,"children":572},{"style":279},[573],{"type":51,"value":282},{"type":45,"tag":252,"props":575,"children":576},{"style":259},[577],{"type":51,"value":287},{"type":45,"tag":252,"props":579,"children":580},{"class":254,"line":290},[581,585],{"type":45,"tag":252,"props":582,"children":583},{"style":279},[584],{"type":51,"value":282},{"type":45,"tag":252,"props":586,"children":587},{"style":259},[588],{"type":51,"value":300},{"type":45,"tag":252,"props":590,"children":591},{"class":254,"line":303},[592,596],{"type":45,"tag":252,"props":593,"children":594},{"style":279},[595],{"type":51,"value":282},{"type":45,"tag":252,"props":597,"children":598},{"style":259},[599],{"type":51,"value":600}," Authentication bypass\n",{"type":45,"tag":252,"props":602,"children":603},{"class":254,"line":316},[604,608],{"type":45,"tag":252,"props":605,"children":606},{"style":279},[607],{"type":51,"value":282},{"type":45,"tag":252,"props":609,"children":610},{"style":259},[611],{"type":51,"value":612}," Insecure data handling\n",{"type":45,"tag":58,"props":614,"children":615},{},[616],{"type":51,"value":617},"No frontmatter needed for basic commands.",{"type":45,"tag":151,"props":619,"children":621},{"id":620},"with-yaml-frontmatter",[622],{"type":51,"value":623},"With YAML Frontmatter",{"type":45,"tag":58,"props":625,"children":626},{},[627],{"type":51,"value":628},"Add configuration using YAML frontmatter:",{"type":45,"tag":241,"props":630,"children":632},{"className":243,"code":631,"language":245,"meta":246,"style":246},"---\ndescription: Review code for security issues\nallowed-tools: Read, Grep, Bash(git:*)\nmodel: sonnet\n---\n\nReview this code for security vulnerabilities...\n",[633],{"type":45,"tag":70,"props":634,"children":635},{"__ignoreMap":246},[636,644,664,681,698,705,712],{"type":45,"tag":252,"props":637,"children":638},{"class":254,"line":255},[639],{"type":45,"tag":252,"props":640,"children":641},{"style":279},[642],{"type":51,"value":643},"---\n",{"type":45,"tag":252,"props":645,"children":646},{"class":254,"line":265},[647,653,658],{"type":45,"tag":252,"props":648,"children":650},{"style":649},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[651],{"type":51,"value":652},"description",{"type":45,"tag":252,"props":654,"children":655},{"style":279},[656],{"type":51,"value":657},":",{"type":45,"tag":252,"props":659,"children":661},{"style":660},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[662],{"type":51,"value":663}," Review code for security issues\n",{"type":45,"tag":252,"props":665,"children":666},{"class":254,"line":275},[667,672,676],{"type":45,"tag":252,"props":668,"children":669},{"style":649},[670],{"type":51,"value":671},"allowed-tools",{"type":45,"tag":252,"props":673,"children":674},{"style":279},[675],{"type":51,"value":657},{"type":45,"tag":252,"props":677,"children":678},{"style":660},[679],{"type":51,"value":680}," Read, Grep, Bash(git:*)\n",{"type":45,"tag":252,"props":682,"children":683},{"class":254,"line":290},[684,689,693],{"type":45,"tag":252,"props":685,"children":686},{"style":649},[687],{"type":51,"value":688},"model",{"type":45,"tag":252,"props":690,"children":691},{"style":279},[692],{"type":51,"value":657},{"type":45,"tag":252,"props":694,"children":695},{"style":660},[696],{"type":51,"value":697}," sonnet\n",{"type":45,"tag":252,"props":699,"children":700},{"class":254,"line":303},[701],{"type":45,"tag":252,"props":702,"children":703},{"style":279},[704],{"type":51,"value":643},{"type":45,"tag":252,"props":706,"children":707},{"class":254,"line":316},[708],{"type":45,"tag":252,"props":709,"children":710},{"emptyLinePlaceholder":269},[711],{"type":51,"value":272},{"type":45,"tag":252,"props":713,"children":714},{"class":254,"line":324},[715],{"type":45,"tag":252,"props":716,"children":717},{"style":259},[718],{"type":51,"value":719},"Review this code for security vulnerabilities...\n",{"type":45,"tag":95,"props":721,"children":723},{"id":722},"yaml-frontmatter-fields",[724],{"type":51,"value":725},"YAML Frontmatter Fields",{"type":45,"tag":151,"props":727,"children":728},{"id":652},[729],{"type":51,"value":652},{"type":45,"tag":58,"props":731,"children":732},{},[733,738,740,745,750,752,757],{"type":45,"tag":62,"props":734,"children":735},{},[736],{"type":51,"value":737},"Purpose:",{"type":51,"value":739}," Brief description shown in ",{"type":45,"tag":70,"props":741,"children":743},{"className":742},[],[744],{"type":51,"value":411},{"type":45,"tag":62,"props":746,"children":747},{},[748],{"type":51,"value":749},"Type:",{"type":51,"value":751}," String\n",{"type":45,"tag":62,"props":753,"children":754},{},[755],{"type":51,"value":756},"Default:",{"type":51,"value":758}," First line of command prompt",{"type":45,"tag":241,"props":760,"children":764},{"className":761,"code":762,"language":763,"meta":246,"style":246},"language-yaml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","---\ndescription: Review pull request for code quality\n---\n","yaml",[765],{"type":45,"tag":70,"props":766,"children":767},{"__ignoreMap":246},[768,776,792],{"type":45,"tag":252,"props":769,"children":770},{"class":254,"line":255},[771],{"type":45,"tag":252,"props":772,"children":774},{"style":773},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[775],{"type":51,"value":643},{"type":45,"tag":252,"props":777,"children":778},{"class":254,"line":265},[779,783,787],{"type":45,"tag":252,"props":780,"children":781},{"style":649},[782],{"type":51,"value":652},{"type":45,"tag":252,"props":784,"children":785},{"style":279},[786],{"type":51,"value":657},{"type":45,"tag":252,"props":788,"children":789},{"style":660},[790],{"type":51,"value":791}," Review pull request for code quality\n",{"type":45,"tag":252,"props":793,"children":794},{"class":254,"line":275},[795],{"type":45,"tag":252,"props":796,"children":797},{"style":773},[798],{"type":51,"value":643},{"type":45,"tag":58,"props":800,"children":801},{},[802,807],{"type":45,"tag":62,"props":803,"children":804},{},[805],{"type":51,"value":806},"Best practice:",{"type":51,"value":808}," Clear, actionable description (under 60 characters)",{"type":45,"tag":151,"props":810,"children":811},{"id":671},[812],{"type":51,"value":671},{"type":45,"tag":58,"props":814,"children":815},{},[816,820,822,826,828,832],{"type":45,"tag":62,"props":817,"children":818},{},[819],{"type":51,"value":737},{"type":51,"value":821}," Specify which tools command can use\n",{"type":45,"tag":62,"props":823,"children":824},{},[825],{"type":51,"value":749},{"type":51,"value":827}," String or Array\n",{"type":45,"tag":62,"props":829,"children":830},{},[831],{"type":51,"value":756},{"type":51,"value":833}," Inherits from conversation",{"type":45,"tag":241,"props":835,"children":837},{"className":761,"code":836,"language":763,"meta":246,"style":246},"---\nallowed-tools: Read, Write, Edit, Bash(git:*)\n---\n",[838],{"type":45,"tag":70,"props":839,"children":840},{"__ignoreMap":246},[841,848,864],{"type":45,"tag":252,"props":842,"children":843},{"class":254,"line":255},[844],{"type":45,"tag":252,"props":845,"children":846},{"style":773},[847],{"type":51,"value":643},{"type":45,"tag":252,"props":849,"children":850},{"class":254,"line":265},[851,855,859],{"type":45,"tag":252,"props":852,"children":853},{"style":649},[854],{"type":51,"value":671},{"type":45,"tag":252,"props":856,"children":857},{"style":279},[858],{"type":51,"value":657},{"type":45,"tag":252,"props":860,"children":861},{"style":660},[862],{"type":51,"value":863}," Read, Write, Edit, Bash(git:*)\n",{"type":45,"tag":252,"props":865,"children":866},{"class":254,"line":275},[867],{"type":45,"tag":252,"props":868,"children":869},{"style":773},[870],{"type":51,"value":643},{"type":45,"tag":58,"props":872,"children":873},{},[874],{"type":45,"tag":62,"props":875,"children":876},{},[877],{"type":51,"value":878},"Patterns:",{"type":45,"tag":115,"props":880,"children":881},{},[882,893,904],{"type":45,"tag":119,"props":883,"children":884},{},[885,891],{"type":45,"tag":70,"props":886,"children":888},{"className":887},[],[889],{"type":51,"value":890},"Read, Write, Edit",{"type":51,"value":892}," - Specific tools",{"type":45,"tag":119,"props":894,"children":895},{},[896,902],{"type":45,"tag":70,"props":897,"children":899},{"className":898},[],[900],{"type":51,"value":901},"Bash(git:*)",{"type":51,"value":903}," - Bash with git commands only",{"type":45,"tag":119,"props":905,"children":906},{},[907,913],{"type":45,"tag":70,"props":908,"children":910},{"className":909},[],[911],{"type":51,"value":912},"*",{"type":51,"value":914}," - All tools (rarely needed)",{"type":45,"tag":58,"props":916,"children":917},{},[918,923],{"type":45,"tag":62,"props":919,"children":920},{},[921],{"type":51,"value":922},"Use when:",{"type":51,"value":924}," Command requires specific tool access",{"type":45,"tag":151,"props":926,"children":927},{"id":688},[928],{"type":51,"value":688},{"type":45,"tag":58,"props":930,"children":931},{},[932,936,938,942,944,948],{"type":45,"tag":62,"props":933,"children":934},{},[935],{"type":51,"value":737},{"type":51,"value":937}," Specify model for command execution\n",{"type":45,"tag":62,"props":939,"children":940},{},[941],{"type":51,"value":749},{"type":51,"value":943}," String (sonnet, opus, haiku)\n",{"type":45,"tag":62,"props":945,"children":946},{},[947],{"type":51,"value":756},{"type":51,"value":833},{"type":45,"tag":241,"props":950,"children":952},{"className":761,"code":951,"language":763,"meta":246,"style":246},"---\nmodel: haiku\n---\n",[953],{"type":45,"tag":70,"props":954,"children":955},{"__ignoreMap":246},[956,963,979],{"type":45,"tag":252,"props":957,"children":958},{"class":254,"line":255},[959],{"type":45,"tag":252,"props":960,"children":961},{"style":773},[962],{"type":51,"value":643},{"type":45,"tag":252,"props":964,"children":965},{"class":254,"line":265},[966,970,974],{"type":45,"tag":252,"props":967,"children":968},{"style":649},[969],{"type":51,"value":688},{"type":45,"tag":252,"props":971,"children":972},{"style":279},[973],{"type":51,"value":657},{"type":45,"tag":252,"props":975,"children":976},{"style":660},[977],{"type":51,"value":978}," haiku\n",{"type":45,"tag":252,"props":980,"children":981},{"class":254,"line":275},[982],{"type":45,"tag":252,"props":983,"children":984},{"style":773},[985],{"type":51,"value":643},{"type":45,"tag":58,"props":987,"children":988},{},[989],{"type":45,"tag":62,"props":990,"children":991},{},[992],{"type":51,"value":993},"Use cases:",{"type":45,"tag":115,"props":995,"children":996},{},[997,1008,1019],{"type":45,"tag":119,"props":998,"children":999},{},[1000,1006],{"type":45,"tag":70,"props":1001,"children":1003},{"className":1002},[],[1004],{"type":51,"value":1005},"haiku",{"type":51,"value":1007}," - Fast, simple commands",{"type":45,"tag":119,"props":1009,"children":1010},{},[1011,1017],{"type":45,"tag":70,"props":1012,"children":1014},{"className":1013},[],[1015],{"type":51,"value":1016},"sonnet",{"type":51,"value":1018}," - Standard workflows",{"type":45,"tag":119,"props":1020,"children":1021},{},[1022,1028],{"type":45,"tag":70,"props":1023,"children":1025},{"className":1024},[],[1026],{"type":51,"value":1027},"opus",{"type":51,"value":1029}," - Complex analysis",{"type":45,"tag":151,"props":1031,"children":1033},{"id":1032},"argument-hint",[1034],{"type":51,"value":1032},{"type":45,"tag":58,"props":1036,"children":1037},{},[1038,1042,1044,1048,1049,1053],{"type":45,"tag":62,"props":1039,"children":1040},{},[1041],{"type":51,"value":737},{"type":51,"value":1043}," Document expected arguments for autocomplete\n",{"type":45,"tag":62,"props":1045,"children":1046},{},[1047],{"type":51,"value":749},{"type":51,"value":751},{"type":45,"tag":62,"props":1050,"children":1051},{},[1052],{"type":51,"value":756},{"type":51,"value":1054}," None",{"type":45,"tag":241,"props":1056,"children":1058},{"className":761,"code":1057,"language":763,"meta":246,"style":246},"---\nargument-hint: [pr-number] [priority] [assignee]\n---\n",[1059],{"type":45,"tag":70,"props":1060,"children":1061},{"__ignoreMap":246},[1062,1069,1122],{"type":45,"tag":252,"props":1063,"children":1064},{"class":254,"line":255},[1065],{"type":45,"tag":252,"props":1066,"children":1067},{"style":773},[1068],{"type":51,"value":643},{"type":45,"tag":252,"props":1070,"children":1071},{"class":254,"line":265},[1072,1076,1080,1085,1090,1095,1099,1104,1108,1112,1117],{"type":45,"tag":252,"props":1073,"children":1074},{"style":649},[1075],{"type":51,"value":1032},{"type":45,"tag":252,"props":1077,"children":1078},{"style":279},[1079],{"type":51,"value":657},{"type":45,"tag":252,"props":1081,"children":1082},{"style":279},[1083],{"type":51,"value":1084}," [",{"type":45,"tag":252,"props":1086,"children":1087},{"style":660},[1088],{"type":51,"value":1089},"pr-number",{"type":45,"tag":252,"props":1091,"children":1092},{"style":279},[1093],{"type":51,"value":1094},"]",{"type":45,"tag":252,"props":1096,"children":1097},{"style":279},[1098],{"type":51,"value":1084},{"type":45,"tag":252,"props":1100,"children":1101},{"style":660},[1102],{"type":51,"value":1103},"priority",{"type":45,"tag":252,"props":1105,"children":1106},{"style":279},[1107],{"type":51,"value":1094},{"type":45,"tag":252,"props":1109,"children":1110},{"style":279},[1111],{"type":51,"value":1084},{"type":45,"tag":252,"props":1113,"children":1114},{"style":660},[1115],{"type":51,"value":1116},"assignee",{"type":45,"tag":252,"props":1118,"children":1119},{"style":279},[1120],{"type":51,"value":1121},"]\n",{"type":45,"tag":252,"props":1123,"children":1124},{"class":254,"line":275},[1125],{"type":45,"tag":252,"props":1126,"children":1127},{"style":773},[1128],{"type":51,"value":643},{"type":45,"tag":58,"props":1130,"children":1131},{},[1132],{"type":45,"tag":62,"props":1133,"children":1134},{},[1135],{"type":51,"value":1136},"Benefits:",{"type":45,"tag":115,"props":1138,"children":1139},{},[1140,1145,1150],{"type":45,"tag":119,"props":1141,"children":1142},{},[1143],{"type":51,"value":1144},"Helps users understand command arguments",{"type":45,"tag":119,"props":1146,"children":1147},{},[1148],{"type":51,"value":1149},"Improves command discovery",{"type":45,"tag":119,"props":1151,"children":1152},{},[1153],{"type":51,"value":1154},"Documents command interface",{"type":45,"tag":151,"props":1156,"children":1158},{"id":1157},"disable-model-invocation",[1159],{"type":51,"value":1157},{"type":45,"tag":58,"props":1161,"children":1162},{},[1163,1167,1169,1173,1175,1179],{"type":45,"tag":62,"props":1164,"children":1165},{},[1166],{"type":51,"value":737},{"type":51,"value":1168}," Prevent SlashCommand tool from programmatically calling command\n",{"type":45,"tag":62,"props":1170,"children":1171},{},[1172],{"type":51,"value":749},{"type":51,"value":1174}," Boolean\n",{"type":45,"tag":62,"props":1176,"children":1177},{},[1178],{"type":51,"value":756},{"type":51,"value":1180}," false",{"type":45,"tag":241,"props":1182,"children":1184},{"className":761,"code":1183,"language":763,"meta":246,"style":246},"---\ndisable-model-invocation: true\n---\n",[1185],{"type":45,"tag":70,"props":1186,"children":1187},{"__ignoreMap":246},[1188,1195,1212],{"type":45,"tag":252,"props":1189,"children":1190},{"class":254,"line":255},[1191],{"type":45,"tag":252,"props":1192,"children":1193},{"style":773},[1194],{"type":51,"value":643},{"type":45,"tag":252,"props":1196,"children":1197},{"class":254,"line":265},[1198,1202,1206],{"type":45,"tag":252,"props":1199,"children":1200},{"style":649},[1201],{"type":51,"value":1157},{"type":45,"tag":252,"props":1203,"children":1204},{"style":279},[1205],{"type":51,"value":657},{"type":45,"tag":252,"props":1207,"children":1209},{"style":1208},"--shiki-light:#FF5370;--shiki-default:#FF9CAC;--shiki-dark:#FF9CAC",[1210],{"type":51,"value":1211}," true\n",{"type":45,"tag":252,"props":1213,"children":1214},{"class":254,"line":275},[1215],{"type":45,"tag":252,"props":1216,"children":1217},{"style":773},[1218],{"type":51,"value":643},{"type":45,"tag":58,"props":1220,"children":1221},{},[1222,1226],{"type":45,"tag":62,"props":1223,"children":1224},{},[1225],{"type":51,"value":922},{"type":51,"value":1227}," Command should only be manually invoked",{"type":45,"tag":95,"props":1229,"children":1231},{"id":1230},"dynamic-arguments",[1232],{"type":51,"value":1233},"Dynamic Arguments",{"type":45,"tag":151,"props":1235,"children":1237},{"id":1236},"using-arguments",[1238],{"type":51,"value":1239},"Using $ARGUMENTS",{"type":45,"tag":58,"props":1241,"children":1242},{},[1243],{"type":51,"value":1244},"Capture all arguments as single string:",{"type":45,"tag":241,"props":1246,"children":1248},{"className":243,"code":1247,"language":245,"meta":246,"style":246},"---\ndescription: Fix issue by number\nargument-hint: [issue-number]\n---\n\nFix issue #$ARGUMENTS following our coding standards and best practices.\n",[1249],{"type":45,"tag":70,"props":1250,"children":1251},{"__ignoreMap":246},[1252,1259,1275,1299,1306,1313],{"type":45,"tag":252,"props":1253,"children":1254},{"class":254,"line":255},[1255],{"type":45,"tag":252,"props":1256,"children":1257},{"style":279},[1258],{"type":51,"value":643},{"type":45,"tag":252,"props":1260,"children":1261},{"class":254,"line":265},[1262,1266,1270],{"type":45,"tag":252,"props":1263,"children":1264},{"style":649},[1265],{"type":51,"value":652},{"type":45,"tag":252,"props":1267,"children":1268},{"style":279},[1269],{"type":51,"value":657},{"type":45,"tag":252,"props":1271,"children":1272},{"style":660},[1273],{"type":51,"value":1274}," Fix issue by number\n",{"type":45,"tag":252,"props":1276,"children":1277},{"class":254,"line":275},[1278,1282,1286,1290,1295],{"type":45,"tag":252,"props":1279,"children":1280},{"style":649},[1281],{"type":51,"value":1032},{"type":45,"tag":252,"props":1283,"children":1284},{"style":279},[1285],{"type":51,"value":657},{"type":45,"tag":252,"props":1287,"children":1288},{"style":279},[1289],{"type":51,"value":1084},{"type":45,"tag":252,"props":1291,"children":1292},{"style":660},[1293],{"type":51,"value":1294},"issue-number",{"type":45,"tag":252,"props":1296,"children":1297},{"style":279},[1298],{"type":51,"value":1121},{"type":45,"tag":252,"props":1300,"children":1301},{"class":254,"line":290},[1302],{"type":45,"tag":252,"props":1303,"children":1304},{"style":279},[1305],{"type":51,"value":643},{"type":45,"tag":252,"props":1307,"children":1308},{"class":254,"line":303},[1309],{"type":45,"tag":252,"props":1310,"children":1311},{"emptyLinePlaceholder":269},[1312],{"type":51,"value":272},{"type":45,"tag":252,"props":1314,"children":1315},{"class":254,"line":316},[1316],{"type":45,"tag":252,"props":1317,"children":1318},{"style":259},[1319],{"type":51,"value":1320},"Fix issue #$ARGUMENTS following our coding standards and best practices.\n",{"type":45,"tag":58,"props":1322,"children":1323},{},[1324],{"type":45,"tag":62,"props":1325,"children":1326},{},[1327],{"type":51,"value":1328},"Usage:",{"type":45,"tag":241,"props":1330,"children":1333},{"className":1331,"code":1332,"language":51},[531],"> \u002Ffix-issue 123\n> \u002Ffix-issue 456\n",[1334],{"type":45,"tag":70,"props":1335,"children":1336},{"__ignoreMap":246},[1337],{"type":51,"value":1332},{"type":45,"tag":58,"props":1339,"children":1340},{},[1341],{"type":45,"tag":62,"props":1342,"children":1343},{},[1344],{"type":51,"value":1345},"Expands to:",{"type":45,"tag":241,"props":1347,"children":1350},{"className":1348,"code":1349,"language":51},[531],"Fix issue #123 following our coding standards...\nFix issue #456 following our coding standards...\n",[1351],{"type":45,"tag":70,"props":1352,"children":1353},{"__ignoreMap":246},[1354],{"type":51,"value":1349},{"type":45,"tag":151,"props":1356,"children":1358},{"id":1357},"using-positional-arguments",[1359],{"type":51,"value":1360},"Using Positional Arguments",{"type":45,"tag":58,"props":1362,"children":1363},{},[1364,1366,1372,1374,1380,1381,1387],{"type":51,"value":1365},"Capture individual arguments with ",{"type":45,"tag":70,"props":1367,"children":1369},{"className":1368},[],[1370],{"type":51,"value":1371},"$1",{"type":51,"value":1373},", ",{"type":45,"tag":70,"props":1375,"children":1377},{"className":1376},[],[1378],{"type":51,"value":1379},"$2",{"type":51,"value":1373},{"type":45,"tag":70,"props":1382,"children":1384},{"className":1383},[],[1385],{"type":51,"value":1386},"$3",{"type":51,"value":1388},", etc.:",{"type":45,"tag":241,"props":1390,"children":1392},{"className":243,"code":1391,"language":245,"meta":246,"style":246},"---\ndescription: Review PR with priority and assignee\nargument-hint: [pr-number] [priority] [assignee]\n---\n\nReview pull request #$1 with priority level $2.\nAfter review, assign to $3 for follow-up.\n",[1393],{"type":45,"tag":70,"props":1394,"children":1395},{"__ignoreMap":246},[1396,1403,1419,1466,1473,1480,1488],{"type":45,"tag":252,"props":1397,"children":1398},{"class":254,"line":255},[1399],{"type":45,"tag":252,"props":1400,"children":1401},{"style":279},[1402],{"type":51,"value":643},{"type":45,"tag":252,"props":1404,"children":1405},{"class":254,"line":265},[1406,1410,1414],{"type":45,"tag":252,"props":1407,"children":1408},{"style":649},[1409],{"type":51,"value":652},{"type":45,"tag":252,"props":1411,"children":1412},{"style":279},[1413],{"type":51,"value":657},{"type":45,"tag":252,"props":1415,"children":1416},{"style":660},[1417],{"type":51,"value":1418}," Review PR with priority and assignee\n",{"type":45,"tag":252,"props":1420,"children":1421},{"class":254,"line":275},[1422,1426,1430,1434,1438,1442,1446,1450,1454,1458,1462],{"type":45,"tag":252,"props":1423,"children":1424},{"style":649},[1425],{"type":51,"value":1032},{"type":45,"tag":252,"props":1427,"children":1428},{"style":279},[1429],{"type":51,"value":657},{"type":45,"tag":252,"props":1431,"children":1432},{"style":279},[1433],{"type":51,"value":1084},{"type":45,"tag":252,"props":1435,"children":1436},{"style":660},[1437],{"type":51,"value":1089},{"type":45,"tag":252,"props":1439,"children":1440},{"style":279},[1441],{"type":51,"value":1094},{"type":45,"tag":252,"props":1443,"children":1444},{"style":279},[1445],{"type":51,"value":1084},{"type":45,"tag":252,"props":1447,"children":1448},{"style":660},[1449],{"type":51,"value":1103},{"type":45,"tag":252,"props":1451,"children":1452},{"style":279},[1453],{"type":51,"value":1094},{"type":45,"tag":252,"props":1455,"children":1456},{"style":279},[1457],{"type":51,"value":1084},{"type":45,"tag":252,"props":1459,"children":1460},{"style":660},[1461],{"type":51,"value":1116},{"type":45,"tag":252,"props":1463,"children":1464},{"style":279},[1465],{"type":51,"value":1121},{"type":45,"tag":252,"props":1467,"children":1468},{"class":254,"line":290},[1469],{"type":45,"tag":252,"props":1470,"children":1471},{"style":279},[1472],{"type":51,"value":643},{"type":45,"tag":252,"props":1474,"children":1475},{"class":254,"line":303},[1476],{"type":45,"tag":252,"props":1477,"children":1478},{"emptyLinePlaceholder":269},[1479],{"type":51,"value":272},{"type":45,"tag":252,"props":1481,"children":1482},{"class":254,"line":316},[1483],{"type":45,"tag":252,"props":1484,"children":1485},{"style":259},[1486],{"type":51,"value":1487},"Review pull request #$1 with priority level $2.\n",{"type":45,"tag":252,"props":1489,"children":1490},{"class":254,"line":324},[1491],{"type":45,"tag":252,"props":1492,"children":1493},{"style":259},[1494],{"type":51,"value":1495},"After review, assign to $3 for follow-up.\n",{"type":45,"tag":58,"props":1497,"children":1498},{},[1499],{"type":45,"tag":62,"props":1500,"children":1501},{},[1502],{"type":51,"value":1328},{"type":45,"tag":241,"props":1504,"children":1507},{"className":1505,"code":1506,"language":51},[531],"> \u002Freview-pr 123 high alice\n",[1508],{"type":45,"tag":70,"props":1509,"children":1510},{"__ignoreMap":246},[1511],{"type":51,"value":1506},{"type":45,"tag":58,"props":1513,"children":1514},{},[1515],{"type":45,"tag":62,"props":1516,"children":1517},{},[1518],{"type":51,"value":1345},{"type":45,"tag":241,"props":1520,"children":1523},{"className":1521,"code":1522,"language":51},[531],"Review pull request #123 with priority level high.\nAfter review, assign to alice for follow-up.\n",[1524],{"type":45,"tag":70,"props":1525,"children":1526},{"__ignoreMap":246},[1527],{"type":51,"value":1522},{"type":45,"tag":151,"props":1529,"children":1531},{"id":1530},"combining-arguments",[1532],{"type":51,"value":1533},"Combining Arguments",{"type":45,"tag":58,"props":1535,"children":1536},{},[1537],{"type":51,"value":1538},"Mix positional and remaining arguments:",{"type":45,"tag":241,"props":1540,"children":1542},{"className":243,"code":1541,"language":245,"meta":246,"style":246},"Deploy $1 to $2 environment with options: $3\n",[1543],{"type":45,"tag":70,"props":1544,"children":1545},{"__ignoreMap":246},[1546],{"type":45,"tag":252,"props":1547,"children":1548},{"class":254,"line":255},[1549],{"type":45,"tag":252,"props":1550,"children":1551},{"style":259},[1552],{"type":51,"value":1541},{"type":45,"tag":58,"props":1554,"children":1555},{},[1556],{"type":45,"tag":62,"props":1557,"children":1558},{},[1559],{"type":51,"value":1328},{"type":45,"tag":241,"props":1561,"children":1564},{"className":1562,"code":1563,"language":51},[531],"> \u002Fdeploy api staging --force --skip-tests\n",[1565],{"type":45,"tag":70,"props":1566,"children":1567},{"__ignoreMap":246},[1568],{"type":51,"value":1563},{"type":45,"tag":58,"props":1570,"children":1571},{},[1572],{"type":45,"tag":62,"props":1573,"children":1574},{},[1575],{"type":51,"value":1345},{"type":45,"tag":241,"props":1577,"children":1580},{"className":1578,"code":1579,"language":51},[531],"Deploy api to staging environment with options: --force --skip-tests\n",[1581],{"type":45,"tag":70,"props":1582,"children":1583},{"__ignoreMap":246},[1584],{"type":51,"value":1579},{"type":45,"tag":95,"props":1586,"children":1588},{"id":1587},"file-references",[1589],{"type":51,"value":1590},"File References",{"type":45,"tag":151,"props":1592,"children":1594},{"id":1593},"using-syntax",[1595],{"type":51,"value":1596},"Using @ Syntax",{"type":45,"tag":58,"props":1598,"children":1599},{},[1600],{"type":51,"value":1601},"Include file contents in command:",{"type":45,"tag":241,"props":1603,"children":1605},{"className":243,"code":1604,"language":245,"meta":246,"style":246},"---\ndescription: Review specific file\nargument-hint: [file-path]\n---\n\nReview @$1 for:\n\n- Code quality\n- Best practices\n- Potential bugs\n",[1606],{"type":45,"tag":70,"props":1607,"children":1608},{"__ignoreMap":246},[1609,1616,1632,1656,1663,1670,1678,1685,1698,1711],{"type":45,"tag":252,"props":1610,"children":1611},{"class":254,"line":255},[1612],{"type":45,"tag":252,"props":1613,"children":1614},{"style":279},[1615],{"type":51,"value":643},{"type":45,"tag":252,"props":1617,"children":1618},{"class":254,"line":265},[1619,1623,1627],{"type":45,"tag":252,"props":1620,"children":1621},{"style":649},[1622],{"type":51,"value":652},{"type":45,"tag":252,"props":1624,"children":1625},{"style":279},[1626],{"type":51,"value":657},{"type":45,"tag":252,"props":1628,"children":1629},{"style":660},[1630],{"type":51,"value":1631}," Review specific file\n",{"type":45,"tag":252,"props":1633,"children":1634},{"class":254,"line":275},[1635,1639,1643,1647,1652],{"type":45,"tag":252,"props":1636,"children":1637},{"style":649},[1638],{"type":51,"value":1032},{"type":45,"tag":252,"props":1640,"children":1641},{"style":279},[1642],{"type":51,"value":657},{"type":45,"tag":252,"props":1644,"children":1645},{"style":279},[1646],{"type":51,"value":1084},{"type":45,"tag":252,"props":1648,"children":1649},{"style":660},[1650],{"type":51,"value":1651},"file-path",{"type":45,"tag":252,"props":1653,"children":1654},{"style":279},[1655],{"type":51,"value":1121},{"type":45,"tag":252,"props":1657,"children":1658},{"class":254,"line":290},[1659],{"type":45,"tag":252,"props":1660,"children":1661},{"style":279},[1662],{"type":51,"value":643},{"type":45,"tag":252,"props":1664,"children":1665},{"class":254,"line":303},[1666],{"type":45,"tag":252,"props":1667,"children":1668},{"emptyLinePlaceholder":269},[1669],{"type":51,"value":272},{"type":45,"tag":252,"props":1671,"children":1672},{"class":254,"line":316},[1673],{"type":45,"tag":252,"props":1674,"children":1675},{"style":259},[1676],{"type":51,"value":1677},"Review @$1 for:\n",{"type":45,"tag":252,"props":1679,"children":1680},{"class":254,"line":324},[1681],{"type":45,"tag":252,"props":1682,"children":1683},{"emptyLinePlaceholder":269},[1684],{"type":51,"value":272},{"type":45,"tag":252,"props":1686,"children":1688},{"class":254,"line":1687},8,[1689,1693],{"type":45,"tag":252,"props":1690,"children":1691},{"style":279},[1692],{"type":51,"value":282},{"type":45,"tag":252,"props":1694,"children":1695},{"style":259},[1696],{"type":51,"value":1697}," Code quality\n",{"type":45,"tag":252,"props":1699,"children":1701},{"class":254,"line":1700},9,[1702,1706],{"type":45,"tag":252,"props":1703,"children":1704},{"style":279},[1705],{"type":51,"value":282},{"type":45,"tag":252,"props":1707,"children":1708},{"style":259},[1709],{"type":51,"value":1710}," Best practices\n",{"type":45,"tag":252,"props":1712,"children":1714},{"class":254,"line":1713},10,[1715,1719],{"type":45,"tag":252,"props":1716,"children":1717},{"style":279},[1718],{"type":51,"value":282},{"type":45,"tag":252,"props":1720,"children":1721},{"style":259},[1722],{"type":51,"value":1723}," Potential bugs\n",{"type":45,"tag":58,"props":1725,"children":1726},{},[1727],{"type":45,"tag":62,"props":1728,"children":1729},{},[1730],{"type":51,"value":1328},{"type":45,"tag":241,"props":1732,"children":1735},{"className":1733,"code":1734,"language":51},[531],"> \u002Freview-file src\u002Fapi\u002Fusers.ts\n",[1736],{"type":45,"tag":70,"props":1737,"children":1738},{"__ignoreMap":246},[1739],{"type":51,"value":1734},{"type":45,"tag":58,"props":1741,"children":1742},{},[1743,1748,1750,1756],{"type":45,"tag":62,"props":1744,"children":1745},{},[1746],{"type":51,"value":1747},"Effect:",{"type":51,"value":1749}," Claude reads ",{"type":45,"tag":70,"props":1751,"children":1753},{"className":1752},[],[1754],{"type":51,"value":1755},"src\u002Fapi\u002Fusers.ts",{"type":51,"value":1757}," before processing command",{"type":45,"tag":151,"props":1759,"children":1761},{"id":1760},"multiple-file-references",[1762],{"type":51,"value":1763},"Multiple File References",{"type":45,"tag":58,"props":1765,"children":1766},{},[1767],{"type":51,"value":1768},"Reference multiple files:",{"type":45,"tag":241,"props":1770,"children":1772},{"className":243,"code":1771,"language":245,"meta":246,"style":246},"Compare @src\u002Fold-version.js with @src\u002Fnew-version.js\n\nIdentify:\n\n- Breaking changes\n- New features\n- Bug fixes\n",[1773],{"type":45,"tag":70,"props":1774,"children":1775},{"__ignoreMap":246},[1776,1784,1791,1799,1806,1818,1830],{"type":45,"tag":252,"props":1777,"children":1778},{"class":254,"line":255},[1779],{"type":45,"tag":252,"props":1780,"children":1781},{"style":259},[1782],{"type":51,"value":1783},"Compare @src\u002Fold-version.js with @src\u002Fnew-version.js\n",{"type":45,"tag":252,"props":1785,"children":1786},{"class":254,"line":265},[1787],{"type":45,"tag":252,"props":1788,"children":1789},{"emptyLinePlaceholder":269},[1790],{"type":51,"value":272},{"type":45,"tag":252,"props":1792,"children":1793},{"class":254,"line":275},[1794],{"type":45,"tag":252,"props":1795,"children":1796},{"style":259},[1797],{"type":51,"value":1798},"Identify:\n",{"type":45,"tag":252,"props":1800,"children":1801},{"class":254,"line":290},[1802],{"type":45,"tag":252,"props":1803,"children":1804},{"emptyLinePlaceholder":269},[1805],{"type":51,"value":272},{"type":45,"tag":252,"props":1807,"children":1808},{"class":254,"line":303},[1809,1813],{"type":45,"tag":252,"props":1810,"children":1811},{"style":279},[1812],{"type":51,"value":282},{"type":45,"tag":252,"props":1814,"children":1815},{"style":259},[1816],{"type":51,"value":1817}," Breaking changes\n",{"type":45,"tag":252,"props":1819,"children":1820},{"class":254,"line":316},[1821,1825],{"type":45,"tag":252,"props":1822,"children":1823},{"style":279},[1824],{"type":51,"value":282},{"type":45,"tag":252,"props":1826,"children":1827},{"style":259},[1828],{"type":51,"value":1829}," New features\n",{"type":45,"tag":252,"props":1831,"children":1832},{"class":254,"line":324},[1833,1837],{"type":45,"tag":252,"props":1834,"children":1835},{"style":279},[1836],{"type":51,"value":282},{"type":45,"tag":252,"props":1838,"children":1839},{"style":259},[1840],{"type":51,"value":1841}," Bug fixes\n",{"type":45,"tag":151,"props":1843,"children":1845},{"id":1844},"static-file-references",[1846],{"type":51,"value":1847},"Static File References",{"type":45,"tag":58,"props":1849,"children":1850},{},[1851],{"type":51,"value":1852},"Reference known files without arguments:",{"type":45,"tag":241,"props":1854,"children":1856},{"className":243,"code":1855,"language":245,"meta":246,"style":246},"Review @package.json and @tsconfig.json for consistency\n\nEnsure:\n\n- TypeScript version matches\n- Dependencies are aligned\n- Build configuration is correct\n",[1857],{"type":45,"tag":70,"props":1858,"children":1859},{"__ignoreMap":246},[1860,1868,1875,1883,1890,1902,1914],{"type":45,"tag":252,"props":1861,"children":1862},{"class":254,"line":255},[1863],{"type":45,"tag":252,"props":1864,"children":1865},{"style":259},[1866],{"type":51,"value":1867},"Review @package.json and @tsconfig.json for consistency\n",{"type":45,"tag":252,"props":1869,"children":1870},{"class":254,"line":265},[1871],{"type":45,"tag":252,"props":1872,"children":1873},{"emptyLinePlaceholder":269},[1874],{"type":51,"value":272},{"type":45,"tag":252,"props":1876,"children":1877},{"class":254,"line":275},[1878],{"type":45,"tag":252,"props":1879,"children":1880},{"style":259},[1881],{"type":51,"value":1882},"Ensure:\n",{"type":45,"tag":252,"props":1884,"children":1885},{"class":254,"line":290},[1886],{"type":45,"tag":252,"props":1887,"children":1888},{"emptyLinePlaceholder":269},[1889],{"type":51,"value":272},{"type":45,"tag":252,"props":1891,"children":1892},{"class":254,"line":303},[1893,1897],{"type":45,"tag":252,"props":1894,"children":1895},{"style":279},[1896],{"type":51,"value":282},{"type":45,"tag":252,"props":1898,"children":1899},{"style":259},[1900],{"type":51,"value":1901}," TypeScript version matches\n",{"type":45,"tag":252,"props":1903,"children":1904},{"class":254,"line":316},[1905,1909],{"type":45,"tag":252,"props":1906,"children":1907},{"style":279},[1908],{"type":51,"value":282},{"type":45,"tag":252,"props":1910,"children":1911},{"style":259},[1912],{"type":51,"value":1913}," Dependencies are aligned\n",{"type":45,"tag":252,"props":1915,"children":1916},{"class":254,"line":324},[1917,1921],{"type":45,"tag":252,"props":1918,"children":1919},{"style":279},[1920],{"type":51,"value":282},{"type":45,"tag":252,"props":1922,"children":1923},{"style":259},[1924],{"type":51,"value":1925}," Build configuration is correct\n",{"type":45,"tag":95,"props":1927,"children":1929},{"id":1928},"bash-execution-in-commands",[1930],{"type":51,"value":1931},"Bash Execution in Commands",{"type":45,"tag":58,"props":1933,"children":1934},{},[1935],{"type":51,"value":1936},"Commands can execute bash commands inline to dynamically gather context before Claude processes the command. This is useful for including repository state, environment information, or project-specific context.",{"type":45,"tag":58,"props":1938,"children":1939},{},[1940],{"type":45,"tag":62,"props":1941,"children":1942},{},[1943],{"type":51,"value":1944},"When to use:",{"type":45,"tag":115,"props":1946,"children":1947},{},[1948,1953,1958],{"type":45,"tag":119,"props":1949,"children":1950},{},[1951],{"type":51,"value":1952},"Include dynamic context (git status, environment vars, etc.)",{"type":45,"tag":119,"props":1954,"children":1955},{},[1956],{"type":51,"value":1957},"Gather project\u002Frepository state",{"type":45,"tag":119,"props":1959,"children":1960},{},[1961],{"type":51,"value":1962},"Build context-aware workflows",{"type":45,"tag":58,"props":1964,"children":1965},{},[1966,1971,1973,1979],{"type":45,"tag":62,"props":1967,"children":1968},{},[1969],{"type":51,"value":1970},"Implementation details:",{"type":51,"value":1972},"\nFor complete syntax, examples, and best practices, see ",{"type":45,"tag":70,"props":1974,"children":1976},{"className":1975},[],[1977],{"type":51,"value":1978},"references\u002Fplugin-features-reference.md",{"type":51,"value":1980}," section on bash execution. The reference includes the exact syntax and multiple working examples to avoid execution issues",{"type":45,"tag":95,"props":1982,"children":1984},{"id":1983},"command-organization",[1985],{"type":51,"value":1986},"Command Organization",{"type":45,"tag":151,"props":1988,"children":1990},{"id":1989},"flat-structure",[1991],{"type":51,"value":1992},"Flat Structure",{"type":45,"tag":58,"props":1994,"children":1995},{},[1996],{"type":51,"value":1997},"Simple organization for small command sets:",{"type":45,"tag":241,"props":1999,"children":2002},{"className":2000,"code":2001,"language":51},[531],".claude\u002Fcommands\u002F\n├── build.md\n├── test.md\n├── deploy.md\n├── review.md\n└── docs.md\n",[2003],{"type":45,"tag":70,"props":2004,"children":2005},{"__ignoreMap":246},[2006],{"type":51,"value":2001},{"type":45,"tag":58,"props":2008,"children":2009},{},[2010,2014],{"type":45,"tag":62,"props":2011,"children":2012},{},[2013],{"type":51,"value":922},{"type":51,"value":2015}," 5-15 commands, no clear categories",{"type":45,"tag":151,"props":2017,"children":2019},{"id":2018},"namespaced-structure",[2020],{"type":51,"value":2021},"Namespaced Structure",{"type":45,"tag":58,"props":2023,"children":2024},{},[2025],{"type":51,"value":2026},"Organize commands in subdirectories:",{"type":45,"tag":241,"props":2028,"children":2031},{"className":2029,"code":2030,"language":51},[531],".claude\u002Fcommands\u002F\n├── ci\u002F\n│   ├── build.md        # \u002Fbuild (project:ci)\n│   ├── test.md         # \u002Ftest (project:ci)\n│   └── lint.md         # \u002Flint (project:ci)\n├── git\u002F\n│   ├── commit.md       # \u002Fcommit (project:git)\n│   └── pr.md           # \u002Fpr (project:git)\n└── docs\u002F\n    ├── generate.md     # \u002Fgenerate (project:docs)\n    └── publish.md      # \u002Fpublish (project:docs)\n",[2032],{"type":45,"tag":70,"props":2033,"children":2034},{"__ignoreMap":246},[2035],{"type":51,"value":2030},{"type":45,"tag":58,"props":2037,"children":2038},{},[2039],{"type":45,"tag":62,"props":2040,"children":2041},{},[2042],{"type":51,"value":1136},{"type":45,"tag":115,"props":2044,"children":2045},{},[2046,2051,2061],{"type":45,"tag":119,"props":2047,"children":2048},{},[2049],{"type":51,"value":2050},"Logical grouping by category",{"type":45,"tag":119,"props":2052,"children":2053},{},[2054,2056],{"type":51,"value":2055},"Namespace shown in ",{"type":45,"tag":70,"props":2057,"children":2059},{"className":2058},[],[2060],{"type":51,"value":411},{"type":45,"tag":119,"props":2062,"children":2063},{},[2064],{"type":51,"value":2065},"Easier to find related commands",{"type":45,"tag":58,"props":2067,"children":2068},{},[2069,2073],{"type":45,"tag":62,"props":2070,"children":2071},{},[2072],{"type":51,"value":922},{"type":51,"value":2074}," 15+ commands, clear categories",{"type":45,"tag":95,"props":2076,"children":2078},{"id":2077},"best-practices",[2079],{"type":51,"value":2080},"Best Practices",{"type":45,"tag":151,"props":2082,"children":2084},{"id":2083},"command-design",[2085],{"type":51,"value":2086},"Command Design",{"type":45,"tag":2088,"props":2089,"children":2090},"ol",{},[2091,2101,2116,2133,2148],{"type":45,"tag":119,"props":2092,"children":2093},{},[2094,2099],{"type":45,"tag":62,"props":2095,"children":2096},{},[2097],{"type":51,"value":2098},"Single responsibility:",{"type":51,"value":2100}," One command, one task",{"type":45,"tag":119,"props":2102,"children":2103},{},[2104,2109,2111],{"type":45,"tag":62,"props":2105,"children":2106},{},[2107],{"type":51,"value":2108},"Clear descriptions:",{"type":51,"value":2110}," Self-explanatory in ",{"type":45,"tag":70,"props":2112,"children":2114},{"className":2113},[],[2115],{"type":51,"value":411},{"type":45,"tag":119,"props":2117,"children":2118},{},[2119,2124,2126,2131],{"type":45,"tag":62,"props":2120,"children":2121},{},[2122],{"type":51,"value":2123},"Explicit dependencies:",{"type":51,"value":2125}," Use ",{"type":45,"tag":70,"props":2127,"children":2129},{"className":2128},[],[2130],{"type":51,"value":671},{"type":51,"value":2132}," when needed",{"type":45,"tag":119,"props":2134,"children":2135},{},[2136,2141,2143],{"type":45,"tag":62,"props":2137,"children":2138},{},[2139],{"type":51,"value":2140},"Document arguments:",{"type":51,"value":2142}," Always provide ",{"type":45,"tag":70,"props":2144,"children":2146},{"className":2145},[],[2147],{"type":51,"value":1032},{"type":45,"tag":119,"props":2149,"children":2150},{},[2151,2156],{"type":45,"tag":62,"props":2152,"children":2153},{},[2154],{"type":51,"value":2155},"Consistent naming:",{"type":51,"value":2157}," Use verb-noun pattern (review-pr, fix-issue)",{"type":45,"tag":151,"props":2159,"children":2161},{"id":2160},"argument-handling",[2162],{"type":51,"value":2163},"Argument Handling",{"type":45,"tag":2088,"props":2165,"children":2166},{},[2167,2177,2187,2197],{"type":45,"tag":119,"props":2168,"children":2169},{},[2170,2175],{"type":45,"tag":62,"props":2171,"children":2172},{},[2173],{"type":51,"value":2174},"Validate arguments:",{"type":51,"value":2176}," Check for required arguments in prompt",{"type":45,"tag":119,"props":2178,"children":2179},{},[2180,2185],{"type":45,"tag":62,"props":2181,"children":2182},{},[2183],{"type":51,"value":2184},"Provide defaults:",{"type":51,"value":2186}," Suggest defaults when arguments missing",{"type":45,"tag":119,"props":2188,"children":2189},{},[2190,2195],{"type":45,"tag":62,"props":2191,"children":2192},{},[2193],{"type":51,"value":2194},"Document format:",{"type":51,"value":2196}," Explain expected argument format",{"type":45,"tag":119,"props":2198,"children":2199},{},[2200,2205],{"type":45,"tag":62,"props":2201,"children":2202},{},[2203],{"type":51,"value":2204},"Handle edge cases:",{"type":51,"value":2206}," Consider missing or invalid arguments",{"type":45,"tag":241,"props":2208,"children":2210},{"className":243,"code":2209,"language":245,"meta":246,"style":246},"---\nargument-hint: [pr-number]\n---\n\n$IF($1,\nReview PR #$1,\nPlease provide a PR number. Usage: \u002Freview-pr [number]\n)\n",[2211],{"type":45,"tag":70,"props":2212,"children":2213},{"__ignoreMap":246},[2214,2221,2244,2251,2258,2266,2274,2296],{"type":45,"tag":252,"props":2215,"children":2216},{"class":254,"line":255},[2217],{"type":45,"tag":252,"props":2218,"children":2219},{"style":279},[2220],{"type":51,"value":643},{"type":45,"tag":252,"props":2222,"children":2223},{"class":254,"line":265},[2224,2228,2232,2236,2240],{"type":45,"tag":252,"props":2225,"children":2226},{"style":649},[2227],{"type":51,"value":1032},{"type":45,"tag":252,"props":2229,"children":2230},{"style":279},[2231],{"type":51,"value":657},{"type":45,"tag":252,"props":2233,"children":2234},{"style":279},[2235],{"type":51,"value":1084},{"type":45,"tag":252,"props":2237,"children":2238},{"style":660},[2239],{"type":51,"value":1089},{"type":45,"tag":252,"props":2241,"children":2242},{"style":279},[2243],{"type":51,"value":1121},{"type":45,"tag":252,"props":2245,"children":2246},{"class":254,"line":275},[2247],{"type":45,"tag":252,"props":2248,"children":2249},{"style":279},[2250],{"type":51,"value":643},{"type":45,"tag":252,"props":2252,"children":2253},{"class":254,"line":290},[2254],{"type":45,"tag":252,"props":2255,"children":2256},{"emptyLinePlaceholder":269},[2257],{"type":51,"value":272},{"type":45,"tag":252,"props":2259,"children":2260},{"class":254,"line":303},[2261],{"type":45,"tag":252,"props":2262,"children":2263},{"style":259},[2264],{"type":51,"value":2265},"$IF($1,\n",{"type":45,"tag":252,"props":2267,"children":2268},{"class":254,"line":316},[2269],{"type":45,"tag":252,"props":2270,"children":2271},{"style":259},[2272],{"type":51,"value":2273},"Review PR #$1,\n",{"type":45,"tag":252,"props":2275,"children":2276},{"class":254,"line":324},[2277,2282,2287,2292],{"type":45,"tag":252,"props":2278,"children":2279},{"style":259},[2280],{"type":51,"value":2281},"Please provide a PR number. Usage: \u002Freview-pr ",{"type":45,"tag":252,"props":2283,"children":2284},{"style":279},[2285],{"type":51,"value":2286},"[",{"type":45,"tag":252,"props":2288,"children":2289},{"style":660},[2290],{"type":51,"value":2291},"number",{"type":45,"tag":252,"props":2293,"children":2294},{"style":279},[2295],{"type":51,"value":1121},{"type":45,"tag":252,"props":2297,"children":2298},{"class":254,"line":1687},[2299],{"type":45,"tag":252,"props":2300,"children":2301},{"style":259},[2302],{"type":51,"value":2303},")\n",{"type":45,"tag":151,"props":2305,"children":2307},{"id":2306},"file-references-1",[2308],{"type":51,"value":1590},{"type":45,"tag":2088,"props":2310,"children":2311},{},[2312,2322,2332,2342],{"type":45,"tag":119,"props":2313,"children":2314},{},[2315,2320],{"type":45,"tag":62,"props":2316,"children":2317},{},[2318],{"type":51,"value":2319},"Explicit paths:",{"type":51,"value":2321}," Use clear file paths",{"type":45,"tag":119,"props":2323,"children":2324},{},[2325,2330],{"type":45,"tag":62,"props":2326,"children":2327},{},[2328],{"type":51,"value":2329},"Check existence:",{"type":51,"value":2331}," Handle missing files gracefully",{"type":45,"tag":119,"props":2333,"children":2334},{},[2335,2340],{"type":45,"tag":62,"props":2336,"children":2337},{},[2338],{"type":51,"value":2339},"Relative paths:",{"type":51,"value":2341}," Use project-relative paths",{"type":45,"tag":119,"props":2343,"children":2344},{},[2345,2350],{"type":45,"tag":62,"props":2346,"children":2347},{},[2348],{"type":51,"value":2349},"Glob support:",{"type":51,"value":2351}," Consider using Glob tool for patterns",{"type":45,"tag":151,"props":2353,"children":2355},{"id":2354},"bash-commands",[2356],{"type":51,"value":2357},"Bash Commands",{"type":45,"tag":2088,"props":2359,"children":2360},{},[2361,2383,2393,2403],{"type":45,"tag":119,"props":2362,"children":2363},{},[2364,2369,2370,2375,2377],{"type":45,"tag":62,"props":2365,"children":2366},{},[2367],{"type":51,"value":2368},"Limit scope:",{"type":51,"value":2125},{"type":45,"tag":70,"props":2371,"children":2373},{"className":2372},[],[2374],{"type":51,"value":901},{"type":51,"value":2376}," not ",{"type":45,"tag":70,"props":2378,"children":2380},{"className":2379},[],[2381],{"type":51,"value":2382},"Bash(*)",{"type":45,"tag":119,"props":2384,"children":2385},{},[2386,2391],{"type":45,"tag":62,"props":2387,"children":2388},{},[2389],{"type":51,"value":2390},"Safe commands:",{"type":51,"value":2392}," Avoid destructive operations",{"type":45,"tag":119,"props":2394,"children":2395},{},[2396,2401],{"type":45,"tag":62,"props":2397,"children":2398},{},[2399],{"type":51,"value":2400},"Handle errors:",{"type":51,"value":2402}," Consider command failures",{"type":45,"tag":119,"props":2404,"children":2405},{},[2406,2411],{"type":45,"tag":62,"props":2407,"children":2408},{},[2409],{"type":51,"value":2410},"Keep fast:",{"type":51,"value":2412}," Long-running commands slow invocation",{"type":45,"tag":151,"props":2414,"children":2416},{"id":2415},"documentation",[2417],{"type":51,"value":2418},"Documentation",{"type":45,"tag":2088,"props":2420,"children":2421},{},[2422,2432,2442,2452],{"type":45,"tag":119,"props":2423,"children":2424},{},[2425,2430],{"type":45,"tag":62,"props":2426,"children":2427},{},[2428],{"type":51,"value":2429},"Add comments:",{"type":51,"value":2431}," Explain complex logic",{"type":45,"tag":119,"props":2433,"children":2434},{},[2435,2440],{"type":45,"tag":62,"props":2436,"children":2437},{},[2438],{"type":51,"value":2439},"Provide examples:",{"type":51,"value":2441}," Show usage in comments",{"type":45,"tag":119,"props":2443,"children":2444},{},[2445,2450],{"type":45,"tag":62,"props":2446,"children":2447},{},[2448],{"type":51,"value":2449},"List requirements:",{"type":51,"value":2451}," Document dependencies",{"type":45,"tag":119,"props":2453,"children":2454},{},[2455,2460],{"type":45,"tag":62,"props":2456,"children":2457},{},[2458],{"type":51,"value":2459},"Version commands:",{"type":51,"value":2461}," Note breaking changes",{"type":45,"tag":241,"props":2463,"children":2465},{"className":243,"code":2464,"language":245,"meta":246,"style":246},"---\ndescription: Deploy application to environment\nargument-hint: [environment] [version]\n---\n\n\u003C!--\nUsage: \u002Fdeploy [staging|production] [version]\nRequires: AWS credentials configured\nExample: \u002Fdeploy staging v1.2.3\n-->\n\nDeploy application to $1 environment using version $2...\n",[2466],{"type":45,"tag":70,"props":2467,"children":2468},{"__ignoreMap":246},[2469,2476,2492,2529,2536,2543,2552,2560,2568,2576,2584,2592],{"type":45,"tag":252,"props":2470,"children":2471},{"class":254,"line":255},[2472],{"type":45,"tag":252,"props":2473,"children":2474},{"style":279},[2475],{"type":51,"value":643},{"type":45,"tag":252,"props":2477,"children":2478},{"class":254,"line":265},[2479,2483,2487],{"type":45,"tag":252,"props":2480,"children":2481},{"style":649},[2482],{"type":51,"value":652},{"type":45,"tag":252,"props":2484,"children":2485},{"style":279},[2486],{"type":51,"value":657},{"type":45,"tag":252,"props":2488,"children":2489},{"style":660},[2490],{"type":51,"value":2491}," Deploy application to environment\n",{"type":45,"tag":252,"props":2493,"children":2494},{"class":254,"line":275},[2495,2499,2503,2507,2512,2516,2520,2525],{"type":45,"tag":252,"props":2496,"children":2497},{"style":649},[2498],{"type":51,"value":1032},{"type":45,"tag":252,"props":2500,"children":2501},{"style":279},[2502],{"type":51,"value":657},{"type":45,"tag":252,"props":2504,"children":2505},{"style":279},[2506],{"type":51,"value":1084},{"type":45,"tag":252,"props":2508,"children":2509},{"style":660},[2510],{"type":51,"value":2511},"environment",{"type":45,"tag":252,"props":2513,"children":2514},{"style":279},[2515],{"type":51,"value":1094},{"type":45,"tag":252,"props":2517,"children":2518},{"style":279},[2519],{"type":51,"value":1084},{"type":45,"tag":252,"props":2521,"children":2522},{"style":660},[2523],{"type":51,"value":2524},"version",{"type":45,"tag":252,"props":2526,"children":2527},{"style":279},[2528],{"type":51,"value":1121},{"type":45,"tag":252,"props":2530,"children":2531},{"class":254,"line":290},[2532],{"type":45,"tag":252,"props":2533,"children":2534},{"style":279},[2535],{"type":51,"value":643},{"type":45,"tag":252,"props":2537,"children":2538},{"class":254,"line":303},[2539],{"type":45,"tag":252,"props":2540,"children":2541},{"emptyLinePlaceholder":269},[2542],{"type":51,"value":272},{"type":45,"tag":252,"props":2544,"children":2545},{"class":254,"line":316},[2546],{"type":45,"tag":252,"props":2547,"children":2549},{"style":2548},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[2550],{"type":51,"value":2551},"\u003C!--\n",{"type":45,"tag":252,"props":2553,"children":2554},{"class":254,"line":324},[2555],{"type":45,"tag":252,"props":2556,"children":2557},{"style":2548},[2558],{"type":51,"value":2559},"Usage: \u002Fdeploy [staging|production] [version]\n",{"type":45,"tag":252,"props":2561,"children":2562},{"class":254,"line":1687},[2563],{"type":45,"tag":252,"props":2564,"children":2565},{"style":2548},[2566],{"type":51,"value":2567},"Requires: AWS credentials configured\n",{"type":45,"tag":252,"props":2569,"children":2570},{"class":254,"line":1700},[2571],{"type":45,"tag":252,"props":2572,"children":2573},{"style":2548},[2574],{"type":51,"value":2575},"Example: \u002Fdeploy staging v1.2.3\n",{"type":45,"tag":252,"props":2577,"children":2578},{"class":254,"line":1713},[2579],{"type":45,"tag":252,"props":2580,"children":2581},{"style":2548},[2582],{"type":51,"value":2583},"-->\n",{"type":45,"tag":252,"props":2585,"children":2587},{"class":254,"line":2586},11,[2588],{"type":45,"tag":252,"props":2589,"children":2590},{"emptyLinePlaceholder":269},[2591],{"type":51,"value":272},{"type":45,"tag":252,"props":2593,"children":2595},{"class":254,"line":2594},12,[2596],{"type":45,"tag":252,"props":2597,"children":2598},{"style":259},[2599],{"type":51,"value":2600},"Deploy application to $1 environment using version $2...\n",{"type":45,"tag":95,"props":2602,"children":2604},{"id":2603},"common-patterns",[2605],{"type":51,"value":2606},"Common Patterns",{"type":45,"tag":151,"props":2608,"children":2610},{"id":2609},"review-pattern",[2611],{"type":51,"value":2612},"Review Pattern",{"type":45,"tag":241,"props":2614,"children":2616},{"className":243,"code":2615,"language":245,"meta":246,"style":246},"---\ndescription: Review code changes\nallowed-tools: Read, Bash(git:*)\n---\n\nFiles changed: !`git diff --name-only`\n\nReview each file for:\n\n1. Code quality and style\n2. Potential bugs or issues\n3. Test coverage\n4. Documentation needs\n\nProvide specific feedback for each file.\n",[2617],{"type":45,"tag":70,"props":2618,"children":2619},{"__ignoreMap":246},[2620,2627,2643,2659,2666,2673,2696,2703,2711,2718,2731,2744,2757,2771,2779],{"type":45,"tag":252,"props":2621,"children":2622},{"class":254,"line":255},[2623],{"type":45,"tag":252,"props":2624,"children":2625},{"style":279},[2626],{"type":51,"value":643},{"type":45,"tag":252,"props":2628,"children":2629},{"class":254,"line":265},[2630,2634,2638],{"type":45,"tag":252,"props":2631,"children":2632},{"style":649},[2633],{"type":51,"value":652},{"type":45,"tag":252,"props":2635,"children":2636},{"style":279},[2637],{"type":51,"value":657},{"type":45,"tag":252,"props":2639,"children":2640},{"style":660},[2641],{"type":51,"value":2642}," Review code changes\n",{"type":45,"tag":252,"props":2644,"children":2645},{"class":254,"line":275},[2646,2650,2654],{"type":45,"tag":252,"props":2647,"children":2648},{"style":649},[2649],{"type":51,"value":671},{"type":45,"tag":252,"props":2651,"children":2652},{"style":279},[2653],{"type":51,"value":657},{"type":45,"tag":252,"props":2655,"children":2656},{"style":660},[2657],{"type":51,"value":2658}," Read, Bash(git:*)\n",{"type":45,"tag":252,"props":2660,"children":2661},{"class":254,"line":290},[2662],{"type":45,"tag":252,"props":2663,"children":2664},{"style":279},[2665],{"type":51,"value":643},{"type":45,"tag":252,"props":2667,"children":2668},{"class":254,"line":303},[2669],{"type":45,"tag":252,"props":2670,"children":2671},{"emptyLinePlaceholder":269},[2672],{"type":51,"value":272},{"type":45,"tag":252,"props":2674,"children":2675},{"class":254,"line":316},[2676,2681,2686,2691],{"type":45,"tag":252,"props":2677,"children":2678},{"style":259},[2679],{"type":51,"value":2680},"Files changed: !",{"type":45,"tag":252,"props":2682,"children":2683},{"style":279},[2684],{"type":51,"value":2685},"`",{"type":45,"tag":252,"props":2687,"children":2688},{"style":660},[2689],{"type":51,"value":2690},"git diff --name-only",{"type":45,"tag":252,"props":2692,"children":2693},{"style":279},[2694],{"type":51,"value":2695},"`\n",{"type":45,"tag":252,"props":2697,"children":2698},{"class":254,"line":324},[2699],{"type":45,"tag":252,"props":2700,"children":2701},{"emptyLinePlaceholder":269},[2702],{"type":51,"value":272},{"type":45,"tag":252,"props":2704,"children":2705},{"class":254,"line":1687},[2706],{"type":45,"tag":252,"props":2707,"children":2708},{"style":259},[2709],{"type":51,"value":2710},"Review each file for:\n",{"type":45,"tag":252,"props":2712,"children":2713},{"class":254,"line":1700},[2714],{"type":45,"tag":252,"props":2715,"children":2716},{"emptyLinePlaceholder":269},[2717],{"type":51,"value":272},{"type":45,"tag":252,"props":2719,"children":2720},{"class":254,"line":1713},[2721,2726],{"type":45,"tag":252,"props":2722,"children":2723},{"style":279},[2724],{"type":51,"value":2725},"1.",{"type":45,"tag":252,"props":2727,"children":2728},{"style":259},[2729],{"type":51,"value":2730}," Code quality and style\n",{"type":45,"tag":252,"props":2732,"children":2733},{"class":254,"line":2586},[2734,2739],{"type":45,"tag":252,"props":2735,"children":2736},{"style":279},[2737],{"type":51,"value":2738},"2.",{"type":45,"tag":252,"props":2740,"children":2741},{"style":259},[2742],{"type":51,"value":2743}," Potential bugs or issues\n",{"type":45,"tag":252,"props":2745,"children":2746},{"class":254,"line":2594},[2747,2752],{"type":45,"tag":252,"props":2748,"children":2749},{"style":279},[2750],{"type":51,"value":2751},"3.",{"type":45,"tag":252,"props":2753,"children":2754},{"style":259},[2755],{"type":51,"value":2756}," Test coverage\n",{"type":45,"tag":252,"props":2758,"children":2760},{"class":254,"line":2759},13,[2761,2766],{"type":45,"tag":252,"props":2762,"children":2763},{"style":279},[2764],{"type":51,"value":2765},"4.",{"type":45,"tag":252,"props":2767,"children":2768},{"style":259},[2769],{"type":51,"value":2770}," Documentation needs\n",{"type":45,"tag":252,"props":2772,"children":2774},{"class":254,"line":2773},14,[2775],{"type":45,"tag":252,"props":2776,"children":2777},{"emptyLinePlaceholder":269},[2778],{"type":51,"value":272},{"type":45,"tag":252,"props":2780,"children":2782},{"class":254,"line":2781},15,[2783],{"type":45,"tag":252,"props":2784,"children":2785},{"style":259},[2786],{"type":51,"value":2787},"Provide specific feedback for each file.\n",{"type":45,"tag":151,"props":2789,"children":2791},{"id":2790},"testing-pattern",[2792],{"type":51,"value":2793},"Testing Pattern",{"type":45,"tag":241,"props":2795,"children":2797},{"className":243,"code":2796,"language":245,"meta":246,"style":246},"---\ndescription: Run tests for specific file\nargument-hint: [test-file]\nallowed-tools: Bash(npm:*)\n---\n\nRun tests: !`npm test $1`\n\nAnalyze results and suggest fixes for failures.\n",[2798],{"type":45,"tag":70,"props":2799,"children":2800},{"__ignoreMap":246},[2801,2808,2824,2848,2864,2871,2878,2899,2906],{"type":45,"tag":252,"props":2802,"children":2803},{"class":254,"line":255},[2804],{"type":45,"tag":252,"props":2805,"children":2806},{"style":279},[2807],{"type":51,"value":643},{"type":45,"tag":252,"props":2809,"children":2810},{"class":254,"line":265},[2811,2815,2819],{"type":45,"tag":252,"props":2812,"children":2813},{"style":649},[2814],{"type":51,"value":652},{"type":45,"tag":252,"props":2816,"children":2817},{"style":279},[2818],{"type":51,"value":657},{"type":45,"tag":252,"props":2820,"children":2821},{"style":660},[2822],{"type":51,"value":2823}," Run tests for specific file\n",{"type":45,"tag":252,"props":2825,"children":2826},{"class":254,"line":275},[2827,2831,2835,2839,2844],{"type":45,"tag":252,"props":2828,"children":2829},{"style":649},[2830],{"type":51,"value":1032},{"type":45,"tag":252,"props":2832,"children":2833},{"style":279},[2834],{"type":51,"value":657},{"type":45,"tag":252,"props":2836,"children":2837},{"style":279},[2838],{"type":51,"value":1084},{"type":45,"tag":252,"props":2840,"children":2841},{"style":660},[2842],{"type":51,"value":2843},"test-file",{"type":45,"tag":252,"props":2845,"children":2846},{"style":279},[2847],{"type":51,"value":1121},{"type":45,"tag":252,"props":2849,"children":2850},{"class":254,"line":290},[2851,2855,2859],{"type":45,"tag":252,"props":2852,"children":2853},{"style":649},[2854],{"type":51,"value":671},{"type":45,"tag":252,"props":2856,"children":2857},{"style":279},[2858],{"type":51,"value":657},{"type":45,"tag":252,"props":2860,"children":2861},{"style":660},[2862],{"type":51,"value":2863}," Bash(npm:*)\n",{"type":45,"tag":252,"props":2865,"children":2866},{"class":254,"line":303},[2867],{"type":45,"tag":252,"props":2868,"children":2869},{"style":279},[2870],{"type":51,"value":643},{"type":45,"tag":252,"props":2872,"children":2873},{"class":254,"line":316},[2874],{"type":45,"tag":252,"props":2875,"children":2876},{"emptyLinePlaceholder":269},[2877],{"type":51,"value":272},{"type":45,"tag":252,"props":2879,"children":2880},{"class":254,"line":324},[2881,2886,2890,2895],{"type":45,"tag":252,"props":2882,"children":2883},{"style":259},[2884],{"type":51,"value":2885},"Run tests: !",{"type":45,"tag":252,"props":2887,"children":2888},{"style":279},[2889],{"type":51,"value":2685},{"type":45,"tag":252,"props":2891,"children":2892},{"style":660},[2893],{"type":51,"value":2894},"npm test $1",{"type":45,"tag":252,"props":2896,"children":2897},{"style":279},[2898],{"type":51,"value":2695},{"type":45,"tag":252,"props":2900,"children":2901},{"class":254,"line":1687},[2902],{"type":45,"tag":252,"props":2903,"children":2904},{"emptyLinePlaceholder":269},[2905],{"type":51,"value":272},{"type":45,"tag":252,"props":2907,"children":2908},{"class":254,"line":1700},[2909],{"type":45,"tag":252,"props":2910,"children":2911},{"style":259},[2912],{"type":51,"value":2913},"Analyze results and suggest fixes for failures.\n",{"type":45,"tag":151,"props":2915,"children":2917},{"id":2916},"documentation-pattern",[2918],{"type":51,"value":2919},"Documentation Pattern",{"type":45,"tag":241,"props":2921,"children":2923},{"className":243,"code":2922,"language":245,"meta":246,"style":246},"---\ndescription: Generate documentation for file\nargument-hint: [source-file]\n---\n\nGenerate comprehensive documentation for @$1 including:\n\n- Function\u002Fclass descriptions\n- Parameter documentation\n- Return value descriptions\n- Usage examples\n- Edge cases and errors\n",[2924],{"type":45,"tag":70,"props":2925,"children":2926},{"__ignoreMap":246},[2927,2934,2950,2974,2981,2988,2996,3003,3015,3027,3039,3051],{"type":45,"tag":252,"props":2928,"children":2929},{"class":254,"line":255},[2930],{"type":45,"tag":252,"props":2931,"children":2932},{"style":279},[2933],{"type":51,"value":643},{"type":45,"tag":252,"props":2935,"children":2936},{"class":254,"line":265},[2937,2941,2945],{"type":45,"tag":252,"props":2938,"children":2939},{"style":649},[2940],{"type":51,"value":652},{"type":45,"tag":252,"props":2942,"children":2943},{"style":279},[2944],{"type":51,"value":657},{"type":45,"tag":252,"props":2946,"children":2947},{"style":660},[2948],{"type":51,"value":2949}," Generate documentation for file\n",{"type":45,"tag":252,"props":2951,"children":2952},{"class":254,"line":275},[2953,2957,2961,2965,2970],{"type":45,"tag":252,"props":2954,"children":2955},{"style":649},[2956],{"type":51,"value":1032},{"type":45,"tag":252,"props":2958,"children":2959},{"style":279},[2960],{"type":51,"value":657},{"type":45,"tag":252,"props":2962,"children":2963},{"style":279},[2964],{"type":51,"value":1084},{"type":45,"tag":252,"props":2966,"children":2967},{"style":660},[2968],{"type":51,"value":2969},"source-file",{"type":45,"tag":252,"props":2971,"children":2972},{"style":279},[2973],{"type":51,"value":1121},{"type":45,"tag":252,"props":2975,"children":2976},{"class":254,"line":290},[2977],{"type":45,"tag":252,"props":2978,"children":2979},{"style":279},[2980],{"type":51,"value":643},{"type":45,"tag":252,"props":2982,"children":2983},{"class":254,"line":303},[2984],{"type":45,"tag":252,"props":2985,"children":2986},{"emptyLinePlaceholder":269},[2987],{"type":51,"value":272},{"type":45,"tag":252,"props":2989,"children":2990},{"class":254,"line":316},[2991],{"type":45,"tag":252,"props":2992,"children":2993},{"style":259},[2994],{"type":51,"value":2995},"Generate comprehensive documentation for @$1 including:\n",{"type":45,"tag":252,"props":2997,"children":2998},{"class":254,"line":324},[2999],{"type":45,"tag":252,"props":3000,"children":3001},{"emptyLinePlaceholder":269},[3002],{"type":51,"value":272},{"type":45,"tag":252,"props":3004,"children":3005},{"class":254,"line":1687},[3006,3010],{"type":45,"tag":252,"props":3007,"children":3008},{"style":279},[3009],{"type":51,"value":282},{"type":45,"tag":252,"props":3011,"children":3012},{"style":259},[3013],{"type":51,"value":3014}," Function\u002Fclass descriptions\n",{"type":45,"tag":252,"props":3016,"children":3017},{"class":254,"line":1700},[3018,3022],{"type":45,"tag":252,"props":3019,"children":3020},{"style":279},[3021],{"type":51,"value":282},{"type":45,"tag":252,"props":3023,"children":3024},{"style":259},[3025],{"type":51,"value":3026}," Parameter documentation\n",{"type":45,"tag":252,"props":3028,"children":3029},{"class":254,"line":1713},[3030,3034],{"type":45,"tag":252,"props":3031,"children":3032},{"style":279},[3033],{"type":51,"value":282},{"type":45,"tag":252,"props":3035,"children":3036},{"style":259},[3037],{"type":51,"value":3038}," Return value descriptions\n",{"type":45,"tag":252,"props":3040,"children":3041},{"class":254,"line":2586},[3042,3046],{"type":45,"tag":252,"props":3043,"children":3044},{"style":279},[3045],{"type":51,"value":282},{"type":45,"tag":252,"props":3047,"children":3048},{"style":259},[3049],{"type":51,"value":3050}," Usage examples\n",{"type":45,"tag":252,"props":3052,"children":3053},{"class":254,"line":2594},[3054,3058],{"type":45,"tag":252,"props":3055,"children":3056},{"style":279},[3057],{"type":51,"value":282},{"type":45,"tag":252,"props":3059,"children":3060},{"style":259},[3061],{"type":51,"value":3062}," Edge cases and errors\n",{"type":45,"tag":151,"props":3064,"children":3066},{"id":3065},"workflow-pattern",[3067],{"type":51,"value":3068},"Workflow Pattern",{"type":45,"tag":241,"props":3070,"children":3072},{"className":243,"code":3071,"language":245,"meta":246,"style":246},"---\ndescription: Complete PR workflow\nargument-hint: [pr-number]\nallowed-tools: Bash(gh:*), Read\n---\n\nPR #$1 Workflow:\n\n1. Fetch PR: !`gh pr view $1`\n2. Review changes\n3. Run checks\n4. Approve or request changes\n",[3073],{"type":45,"tag":70,"props":3074,"children":3075},{"__ignoreMap":246},[3076,3083,3099,3122,3138,3145,3152,3160,3167,3192,3204,3216],{"type":45,"tag":252,"props":3077,"children":3078},{"class":254,"line":255},[3079],{"type":45,"tag":252,"props":3080,"children":3081},{"style":279},[3082],{"type":51,"value":643},{"type":45,"tag":252,"props":3084,"children":3085},{"class":254,"line":265},[3086,3090,3094],{"type":45,"tag":252,"props":3087,"children":3088},{"style":649},[3089],{"type":51,"value":652},{"type":45,"tag":252,"props":3091,"children":3092},{"style":279},[3093],{"type":51,"value":657},{"type":45,"tag":252,"props":3095,"children":3096},{"style":660},[3097],{"type":51,"value":3098}," Complete PR workflow\n",{"type":45,"tag":252,"props":3100,"children":3101},{"class":254,"line":275},[3102,3106,3110,3114,3118],{"type":45,"tag":252,"props":3103,"children":3104},{"style":649},[3105],{"type":51,"value":1032},{"type":45,"tag":252,"props":3107,"children":3108},{"style":279},[3109],{"type":51,"value":657},{"type":45,"tag":252,"props":3111,"children":3112},{"style":279},[3113],{"type":51,"value":1084},{"type":45,"tag":252,"props":3115,"children":3116},{"style":660},[3117],{"type":51,"value":1089},{"type":45,"tag":252,"props":3119,"children":3120},{"style":279},[3121],{"type":51,"value":1121},{"type":45,"tag":252,"props":3123,"children":3124},{"class":254,"line":290},[3125,3129,3133],{"type":45,"tag":252,"props":3126,"children":3127},{"style":649},[3128],{"type":51,"value":671},{"type":45,"tag":252,"props":3130,"children":3131},{"style":279},[3132],{"type":51,"value":657},{"type":45,"tag":252,"props":3134,"children":3135},{"style":660},[3136],{"type":51,"value":3137}," Bash(gh:*), Read\n",{"type":45,"tag":252,"props":3139,"children":3140},{"class":254,"line":303},[3141],{"type":45,"tag":252,"props":3142,"children":3143},{"style":279},[3144],{"type":51,"value":643},{"type":45,"tag":252,"props":3146,"children":3147},{"class":254,"line":316},[3148],{"type":45,"tag":252,"props":3149,"children":3150},{"emptyLinePlaceholder":269},[3151],{"type":51,"value":272},{"type":45,"tag":252,"props":3153,"children":3154},{"class":254,"line":324},[3155],{"type":45,"tag":252,"props":3156,"children":3157},{"style":259},[3158],{"type":51,"value":3159},"PR #$1 Workflow:\n",{"type":45,"tag":252,"props":3161,"children":3162},{"class":254,"line":1687},[3163],{"type":45,"tag":252,"props":3164,"children":3165},{"emptyLinePlaceholder":269},[3166],{"type":51,"value":272},{"type":45,"tag":252,"props":3168,"children":3169},{"class":254,"line":1700},[3170,3174,3179,3183,3188],{"type":45,"tag":252,"props":3171,"children":3172},{"style":279},[3173],{"type":51,"value":2725},{"type":45,"tag":252,"props":3175,"children":3176},{"style":259},[3177],{"type":51,"value":3178}," Fetch PR: !",{"type":45,"tag":252,"props":3180,"children":3181},{"style":279},[3182],{"type":51,"value":2685},{"type":45,"tag":252,"props":3184,"children":3185},{"style":660},[3186],{"type":51,"value":3187},"gh pr view $1",{"type":45,"tag":252,"props":3189,"children":3190},{"style":279},[3191],{"type":51,"value":2695},{"type":45,"tag":252,"props":3193,"children":3194},{"class":254,"line":1713},[3195,3199],{"type":45,"tag":252,"props":3196,"children":3197},{"style":279},[3198],{"type":51,"value":2738},{"type":45,"tag":252,"props":3200,"children":3201},{"style":259},[3202],{"type":51,"value":3203}," Review changes\n",{"type":45,"tag":252,"props":3205,"children":3206},{"class":254,"line":2586},[3207,3211],{"type":45,"tag":252,"props":3208,"children":3209},{"style":279},[3210],{"type":51,"value":2751},{"type":45,"tag":252,"props":3212,"children":3213},{"style":259},[3214],{"type":51,"value":3215}," Run checks\n",{"type":45,"tag":252,"props":3217,"children":3218},{"class":254,"line":2594},[3219,3223],{"type":45,"tag":252,"props":3220,"children":3221},{"style":279},[3222],{"type":51,"value":2765},{"type":45,"tag":252,"props":3224,"children":3225},{"style":259},[3226],{"type":51,"value":3227}," Approve or request changes\n",{"type":45,"tag":95,"props":3229,"children":3231},{"id":3230},"troubleshooting",[3232],{"type":51,"value":3233},"Troubleshooting",{"type":45,"tag":58,"props":3235,"children":3236},{},[3237],{"type":45,"tag":62,"props":3238,"children":3239},{},[3240],{"type":51,"value":3241},"Command not appearing:",{"type":45,"tag":115,"props":3243,"children":3244},{},[3245,3250,3262,3267],{"type":45,"tag":119,"props":3246,"children":3247},{},[3248],{"type":51,"value":3249},"Check file is in correct directory",{"type":45,"tag":119,"props":3251,"children":3252},{},[3253,3255,3260],{"type":51,"value":3254},"Verify ",{"type":45,"tag":70,"props":3256,"children":3258},{"className":3257},[],[3259],{"type":51,"value":525},{"type":51,"value":3261}," extension present",{"type":45,"tag":119,"props":3263,"children":3264},{},[3265],{"type":51,"value":3266},"Ensure valid Markdown format",{"type":45,"tag":119,"props":3268,"children":3269},{},[3270],{"type":51,"value":3271},"Restart Claude Code",{"type":45,"tag":58,"props":3273,"children":3274},{},[3275],{"type":45,"tag":62,"props":3276,"children":3277},{},[3278],{"type":51,"value":3279},"Arguments not working:",{"type":45,"tag":115,"props":3281,"children":3282},{},[3283,3300,3312],{"type":45,"tag":119,"props":3284,"children":3285},{},[3286,3287,3292,3293,3298],{"type":51,"value":3254},{"type":45,"tag":70,"props":3288,"children":3290},{"className":3289},[],[3291],{"type":51,"value":1371},{"type":51,"value":1373},{"type":45,"tag":70,"props":3294,"children":3296},{"className":3295},[],[3297],{"type":51,"value":1379},{"type":51,"value":3299}," syntax correct",{"type":45,"tag":119,"props":3301,"children":3302},{},[3303,3305,3310],{"type":51,"value":3304},"Check ",{"type":45,"tag":70,"props":3306,"children":3308},{"className":3307},[],[3309],{"type":51,"value":1032},{"type":51,"value":3311}," matches usage",{"type":45,"tag":119,"props":3313,"children":3314},{},[3315],{"type":51,"value":3316},"Ensure no extra spaces",{"type":45,"tag":58,"props":3318,"children":3319},{},[3320],{"type":45,"tag":62,"props":3321,"children":3322},{},[3323],{"type":51,"value":3324},"Bash execution failing:",{"type":45,"tag":115,"props":3326,"children":3327},{},[3328,3339,3344,3349],{"type":45,"tag":119,"props":3329,"children":3330},{},[3331,3332,3337],{"type":51,"value":3304},{"type":45,"tag":70,"props":3333,"children":3335},{"className":3334},[],[3336],{"type":51,"value":671},{"type":51,"value":3338}," includes Bash",{"type":45,"tag":119,"props":3340,"children":3341},{},[3342],{"type":51,"value":3343},"Verify command syntax in backticks",{"type":45,"tag":119,"props":3345,"children":3346},{},[3347],{"type":51,"value":3348},"Test command in terminal first",{"type":45,"tag":119,"props":3350,"children":3351},{},[3352],{"type":51,"value":3353},"Check for required permissions",{"type":45,"tag":58,"props":3355,"children":3356},{},[3357],{"type":45,"tag":62,"props":3358,"children":3359},{},[3360],{"type":51,"value":3361},"File references not working:",{"type":45,"tag":115,"props":3363,"children":3364},{},[3365,3376,3381,3386],{"type":45,"tag":119,"props":3366,"children":3367},{},[3368,3369,3375],{"type":51,"value":3254},{"type":45,"tag":70,"props":3370,"children":3372},{"className":3371},[],[3373],{"type":51,"value":3374},"@",{"type":51,"value":3299},{"type":45,"tag":119,"props":3377,"children":3378},{},[3379],{"type":51,"value":3380},"Check file path is valid",{"type":45,"tag":119,"props":3382,"children":3383},{},[3384],{"type":51,"value":3385},"Ensure Read tool allowed",{"type":45,"tag":119,"props":3387,"children":3388},{},[3389],{"type":51,"value":3390},"Use absolute or project-relative paths",{"type":45,"tag":95,"props":3392,"children":3394},{"id":3393},"plugin-specific-features",[3395],{"type":51,"value":3396},"Plugin-Specific Features",{"type":45,"tag":151,"props":3398,"children":3400},{"id":3399},"claude_plugin_root-variable",[3401],{"type":51,"value":3402},"CLAUDE_PLUGIN_ROOT Variable",{"type":45,"tag":58,"props":3404,"children":3405},{},[3406,3408,3414],{"type":51,"value":3407},"Plugin commands have access to ",{"type":45,"tag":70,"props":3409,"children":3411},{"className":3410},[],[3412],{"type":51,"value":3413},"${CLAUDE_PLUGIN_ROOT}",{"type":51,"value":3415},", an environment variable that resolves to the plugin's absolute path.",{"type":45,"tag":58,"props":3417,"children":3418},{},[3419],{"type":45,"tag":62,"props":3420,"children":3421},{},[3422],{"type":51,"value":737},{"type":45,"tag":115,"props":3424,"children":3425},{},[3426,3431,3436,3441],{"type":45,"tag":119,"props":3427,"children":3428},{},[3429],{"type":51,"value":3430},"Reference plugin files portably",{"type":45,"tag":119,"props":3432,"children":3433},{},[3434],{"type":51,"value":3435},"Execute plugin scripts",{"type":45,"tag":119,"props":3437,"children":3438},{},[3439],{"type":51,"value":3440},"Load plugin configuration",{"type":45,"tag":119,"props":3442,"children":3443},{},[3444],{"type":51,"value":3445},"Access plugin templates",{"type":45,"tag":58,"props":3447,"children":3448},{},[3449],{"type":45,"tag":62,"props":3450,"children":3451},{},[3452],{"type":51,"value":3453},"Basic usage:",{"type":45,"tag":241,"props":3455,"children":3457},{"className":243,"code":3456,"language":245,"meta":246,"style":246},"---\ndescription: Analyze using plugin script\nallowed-tools: Bash(node:*)\n---\n\nRun analysis: !`node ${CLAUDE_PLUGIN_ROOT}\u002Fscripts\u002Fanalyze.js $1`\n\nReview results and report findings.\n",[3458],{"type":45,"tag":70,"props":3459,"children":3460},{"__ignoreMap":246},[3461,3468,3484,3500,3507,3514,3535,3542],{"type":45,"tag":252,"props":3462,"children":3463},{"class":254,"line":255},[3464],{"type":45,"tag":252,"props":3465,"children":3466},{"style":279},[3467],{"type":51,"value":643},{"type":45,"tag":252,"props":3469,"children":3470},{"class":254,"line":265},[3471,3475,3479],{"type":45,"tag":252,"props":3472,"children":3473},{"style":649},[3474],{"type":51,"value":652},{"type":45,"tag":252,"props":3476,"children":3477},{"style":279},[3478],{"type":51,"value":657},{"type":45,"tag":252,"props":3480,"children":3481},{"style":660},[3482],{"type":51,"value":3483}," Analyze using plugin script\n",{"type":45,"tag":252,"props":3485,"children":3486},{"class":254,"line":275},[3487,3491,3495],{"type":45,"tag":252,"props":3488,"children":3489},{"style":649},[3490],{"type":51,"value":671},{"type":45,"tag":252,"props":3492,"children":3493},{"style":279},[3494],{"type":51,"value":657},{"type":45,"tag":252,"props":3496,"children":3497},{"style":660},[3498],{"type":51,"value":3499}," Bash(node:*)\n",{"type":45,"tag":252,"props":3501,"children":3502},{"class":254,"line":290},[3503],{"type":45,"tag":252,"props":3504,"children":3505},{"style":279},[3506],{"type":51,"value":643},{"type":45,"tag":252,"props":3508,"children":3509},{"class":254,"line":303},[3510],{"type":45,"tag":252,"props":3511,"children":3512},{"emptyLinePlaceholder":269},[3513],{"type":51,"value":272},{"type":45,"tag":252,"props":3515,"children":3516},{"class":254,"line":316},[3517,3522,3526,3531],{"type":45,"tag":252,"props":3518,"children":3519},{"style":259},[3520],{"type":51,"value":3521},"Run analysis: !",{"type":45,"tag":252,"props":3523,"children":3524},{"style":279},[3525],{"type":51,"value":2685},{"type":45,"tag":252,"props":3527,"children":3528},{"style":660},[3529],{"type":51,"value":3530},"node ${CLAUDE_PLUGIN_ROOT}\u002Fscripts\u002Fanalyze.js $1",{"type":45,"tag":252,"props":3532,"children":3533},{"style":279},[3534],{"type":51,"value":2695},{"type":45,"tag":252,"props":3536,"children":3537},{"class":254,"line":324},[3538],{"type":45,"tag":252,"props":3539,"children":3540},{"emptyLinePlaceholder":269},[3541],{"type":51,"value":272},{"type":45,"tag":252,"props":3543,"children":3544},{"class":254,"line":1687},[3545],{"type":45,"tag":252,"props":3546,"children":3547},{"style":259},[3548],{"type":51,"value":3549},"Review results and report findings.\n",{"type":45,"tag":58,"props":3551,"children":3552},{},[3553],{"type":45,"tag":62,"props":3554,"children":3555},{},[3556],{"type":51,"value":3557},"Common patterns:",{"type":45,"tag":241,"props":3559,"children":3561},{"className":243,"code":3560,"language":245,"meta":246,"style":246},"# Execute plugin script\n\n!`bash ${CLAUDE_PLUGIN_ROOT}\u002Fscripts\u002Fscript.sh`\n\n# Load plugin configuration\n\n@${CLAUDE_PLUGIN_ROOT}\u002Fconfig\u002Fsettings.json\n\n# Use plugin template\n\n@${CLAUDE_PLUGIN_ROOT}\u002Ftemplates\u002Freport.md\n\n# Access plugin resources\n\n@${CLAUDE_PLUGIN_ROOT}\u002Fdocs\u002Freference.md\n",[3562],{"type":45,"tag":70,"props":3563,"children":3564},{"__ignoreMap":246},[3565,3578,3585,3606,3613,3625,3632,3640,3647,3659,3666,3674,3681,3693,3700],{"type":45,"tag":252,"props":3566,"children":3567},{"class":254,"line":255},[3568,3573],{"type":45,"tag":252,"props":3569,"children":3570},{"style":279},[3571],{"type":51,"value":3572},"# ",{"type":45,"tag":252,"props":3574,"children":3575},{"style":773},[3576],{"type":51,"value":3577},"Execute plugin script\n",{"type":45,"tag":252,"props":3579,"children":3580},{"class":254,"line":265},[3581],{"type":45,"tag":252,"props":3582,"children":3583},{"emptyLinePlaceholder":269},[3584],{"type":51,"value":272},{"type":45,"tag":252,"props":3586,"children":3587},{"class":254,"line":275},[3588,3593,3597,3602],{"type":45,"tag":252,"props":3589,"children":3590},{"style":259},[3591],{"type":51,"value":3592},"!",{"type":45,"tag":252,"props":3594,"children":3595},{"style":279},[3596],{"type":51,"value":2685},{"type":45,"tag":252,"props":3598,"children":3599},{"style":660},[3600],{"type":51,"value":3601},"bash ${CLAUDE_PLUGIN_ROOT}\u002Fscripts\u002Fscript.sh",{"type":45,"tag":252,"props":3603,"children":3604},{"style":279},[3605],{"type":51,"value":2695},{"type":45,"tag":252,"props":3607,"children":3608},{"class":254,"line":290},[3609],{"type":45,"tag":252,"props":3610,"children":3611},{"emptyLinePlaceholder":269},[3612],{"type":51,"value":272},{"type":45,"tag":252,"props":3614,"children":3615},{"class":254,"line":303},[3616,3620],{"type":45,"tag":252,"props":3617,"children":3618},{"style":279},[3619],{"type":51,"value":3572},{"type":45,"tag":252,"props":3621,"children":3622},{"style":773},[3623],{"type":51,"value":3624},"Load plugin configuration\n",{"type":45,"tag":252,"props":3626,"children":3627},{"class":254,"line":316},[3628],{"type":45,"tag":252,"props":3629,"children":3630},{"emptyLinePlaceholder":269},[3631],{"type":51,"value":272},{"type":45,"tag":252,"props":3633,"children":3634},{"class":254,"line":324},[3635],{"type":45,"tag":252,"props":3636,"children":3637},{"style":259},[3638],{"type":51,"value":3639},"@${CLAUDE_PLUGIN_ROOT}\u002Fconfig\u002Fsettings.json\n",{"type":45,"tag":252,"props":3641,"children":3642},{"class":254,"line":1687},[3643],{"type":45,"tag":252,"props":3644,"children":3645},{"emptyLinePlaceholder":269},[3646],{"type":51,"value":272},{"type":45,"tag":252,"props":3648,"children":3649},{"class":254,"line":1700},[3650,3654],{"type":45,"tag":252,"props":3651,"children":3652},{"style":279},[3653],{"type":51,"value":3572},{"type":45,"tag":252,"props":3655,"children":3656},{"style":773},[3657],{"type":51,"value":3658},"Use plugin template\n",{"type":45,"tag":252,"props":3660,"children":3661},{"class":254,"line":1713},[3662],{"type":45,"tag":252,"props":3663,"children":3664},{"emptyLinePlaceholder":269},[3665],{"type":51,"value":272},{"type":45,"tag":252,"props":3667,"children":3668},{"class":254,"line":2586},[3669],{"type":45,"tag":252,"props":3670,"children":3671},{"style":259},[3672],{"type":51,"value":3673},"@${CLAUDE_PLUGIN_ROOT}\u002Ftemplates\u002Freport.md\n",{"type":45,"tag":252,"props":3675,"children":3676},{"class":254,"line":2594},[3677],{"type":45,"tag":252,"props":3678,"children":3679},{"emptyLinePlaceholder":269},[3680],{"type":51,"value":272},{"type":45,"tag":252,"props":3682,"children":3683},{"class":254,"line":2759},[3684,3688],{"type":45,"tag":252,"props":3685,"children":3686},{"style":279},[3687],{"type":51,"value":3572},{"type":45,"tag":252,"props":3689,"children":3690},{"style":773},[3691],{"type":51,"value":3692},"Access plugin resources\n",{"type":45,"tag":252,"props":3694,"children":3695},{"class":254,"line":2773},[3696],{"type":45,"tag":252,"props":3697,"children":3698},{"emptyLinePlaceholder":269},[3699],{"type":51,"value":272},{"type":45,"tag":252,"props":3701,"children":3702},{"class":254,"line":2781},[3703],{"type":45,"tag":252,"props":3704,"children":3705},{"style":259},[3706],{"type":51,"value":3707},"@${CLAUDE_PLUGIN_ROOT}\u002Fdocs\u002Freference.md\n",{"type":45,"tag":58,"props":3709,"children":3710},{},[3711],{"type":45,"tag":62,"props":3712,"children":3713},{},[3714],{"type":51,"value":3715},"Why use it:",{"type":45,"tag":115,"props":3717,"children":3718},{},[3719,3724,3729,3734],{"type":45,"tag":119,"props":3720,"children":3721},{},[3722],{"type":51,"value":3723},"Works across all installations",{"type":45,"tag":119,"props":3725,"children":3726},{},[3727],{"type":51,"value":3728},"Portable between systems",{"type":45,"tag":119,"props":3730,"children":3731},{},[3732],{"type":51,"value":3733},"No hardcoded paths needed",{"type":45,"tag":119,"props":3735,"children":3736},{},[3737],{"type":51,"value":3738},"Essential for multi-file plugins",{"type":45,"tag":151,"props":3740,"children":3742},{"id":3741},"plugin-command-organization",[3743],{"type":51,"value":3744},"Plugin Command Organization",{"type":45,"tag":58,"props":3746,"children":3747},{},[3748,3750,3756],{"type":51,"value":3749},"Plugin commands discovered automatically from ",{"type":45,"tag":70,"props":3751,"children":3753},{"className":3752},[],[3754],{"type":51,"value":3755},"commands\u002F",{"type":51,"value":3757}," directory:",{"type":45,"tag":241,"props":3759,"children":3762},{"className":3760,"code":3761,"language":51},[531],"plugin-name\u002F\n├── commands\u002F\n│   ├── foo.md              # \u002Ffoo (plugin:plugin-name)\n│   ├── bar.md              # \u002Fbar (plugin:plugin-name)\n│   └── utils\u002F\n│       └── helper.md       # \u002Fhelper (plugin:plugin-name:utils)\n└── plugin.json\n",[3763],{"type":45,"tag":70,"props":3764,"children":3765},{"__ignoreMap":246},[3766],{"type":51,"value":3761},{"type":45,"tag":58,"props":3768,"children":3769},{},[3770],{"type":45,"tag":62,"props":3771,"children":3772},{},[3773],{"type":51,"value":3774},"Namespace benefits:",{"type":45,"tag":115,"props":3776,"children":3777},{},[3778,3783,3795,3800],{"type":45,"tag":119,"props":3779,"children":3780},{},[3781],{"type":51,"value":3782},"Logical command grouping",{"type":45,"tag":119,"props":3784,"children":3785},{},[3786,3788,3793],{"type":51,"value":3787},"Shown in ",{"type":45,"tag":70,"props":3789,"children":3791},{"className":3790},[],[3792],{"type":51,"value":411},{"type":51,"value":3794}," output",{"type":45,"tag":119,"props":3796,"children":3797},{},[3798],{"type":51,"value":3799},"Avoid name conflicts",{"type":45,"tag":119,"props":3801,"children":3802},{},[3803],{"type":51,"value":3804},"Organize related commands",{"type":45,"tag":58,"props":3806,"children":3807},{},[3808],{"type":45,"tag":62,"props":3809,"children":3810},{},[3811],{"type":51,"value":3812},"Naming conventions:",{"type":45,"tag":115,"props":3814,"children":3815},{},[3816,3821,3826,3831],{"type":45,"tag":119,"props":3817,"children":3818},{},[3819],{"type":51,"value":3820},"Use descriptive action names",{"type":45,"tag":119,"props":3822,"children":3823},{},[3824],{"type":51,"value":3825},"Avoid generic names (test, run)",{"type":45,"tag":119,"props":3827,"children":3828},{},[3829],{"type":51,"value":3830},"Consider plugin-specific prefix",{"type":45,"tag":119,"props":3832,"children":3833},{},[3834],{"type":51,"value":3835},"Use hyphens for multi-word names",{"type":45,"tag":151,"props":3837,"children":3839},{"id":3838},"plugin-command-patterns",[3840],{"type":51,"value":3841},"Plugin Command Patterns",{"type":45,"tag":58,"props":3843,"children":3844},{},[3845],{"type":45,"tag":62,"props":3846,"children":3847},{},[3848],{"type":51,"value":3849},"Configuration-based pattern:",{"type":45,"tag":241,"props":3851,"children":3853},{"className":243,"code":3852,"language":245,"meta":246,"style":246},"---\ndescription: Deploy using plugin configuration\nargument-hint: [environment]\nallowed-tools: Read, Bash(*)\n---\n\nLoad configuration: @${CLAUDE_PLUGIN_ROOT}\u002Fconfig\u002F$1-deploy.json\n\nDeploy to $1 using configuration settings.\nMonitor deployment and report status.\n",[3854],{"type":45,"tag":70,"props":3855,"children":3856},{"__ignoreMap":246},[3857,3864,3880,3903,3919,3926,3933,3941,3948,3956],{"type":45,"tag":252,"props":3858,"children":3859},{"class":254,"line":255},[3860],{"type":45,"tag":252,"props":3861,"children":3862},{"style":279},[3863],{"type":51,"value":643},{"type":45,"tag":252,"props":3865,"children":3866},{"class":254,"line":265},[3867,3871,3875],{"type":45,"tag":252,"props":3868,"children":3869},{"style":649},[3870],{"type":51,"value":652},{"type":45,"tag":252,"props":3872,"children":3873},{"style":279},[3874],{"type":51,"value":657},{"type":45,"tag":252,"props":3876,"children":3877},{"style":660},[3878],{"type":51,"value":3879}," Deploy using plugin configuration\n",{"type":45,"tag":252,"props":3881,"children":3882},{"class":254,"line":275},[3883,3887,3891,3895,3899],{"type":45,"tag":252,"props":3884,"children":3885},{"style":649},[3886],{"type":51,"value":1032},{"type":45,"tag":252,"props":3888,"children":3889},{"style":279},[3890],{"type":51,"value":657},{"type":45,"tag":252,"props":3892,"children":3893},{"style":279},[3894],{"type":51,"value":1084},{"type":45,"tag":252,"props":3896,"children":3897},{"style":660},[3898],{"type":51,"value":2511},{"type":45,"tag":252,"props":3900,"children":3901},{"style":279},[3902],{"type":51,"value":1121},{"type":45,"tag":252,"props":3904,"children":3905},{"class":254,"line":290},[3906,3910,3914],{"type":45,"tag":252,"props":3907,"children":3908},{"style":649},[3909],{"type":51,"value":671},{"type":45,"tag":252,"props":3911,"children":3912},{"style":279},[3913],{"type":51,"value":657},{"type":45,"tag":252,"props":3915,"children":3916},{"style":660},[3917],{"type":51,"value":3918}," Read, Bash(*)\n",{"type":45,"tag":252,"props":3920,"children":3921},{"class":254,"line":303},[3922],{"type":45,"tag":252,"props":3923,"children":3924},{"style":279},[3925],{"type":51,"value":643},{"type":45,"tag":252,"props":3927,"children":3928},{"class":254,"line":316},[3929],{"type":45,"tag":252,"props":3930,"children":3931},{"emptyLinePlaceholder":269},[3932],{"type":51,"value":272},{"type":45,"tag":252,"props":3934,"children":3935},{"class":254,"line":324},[3936],{"type":45,"tag":252,"props":3937,"children":3938},{"style":259},[3939],{"type":51,"value":3940},"Load configuration: @${CLAUDE_PLUGIN_ROOT}\u002Fconfig\u002F$1-deploy.json\n",{"type":45,"tag":252,"props":3942,"children":3943},{"class":254,"line":1687},[3944],{"type":45,"tag":252,"props":3945,"children":3946},{"emptyLinePlaceholder":269},[3947],{"type":51,"value":272},{"type":45,"tag":252,"props":3949,"children":3950},{"class":254,"line":1700},[3951],{"type":45,"tag":252,"props":3952,"children":3953},{"style":259},[3954],{"type":51,"value":3955},"Deploy to $1 using configuration settings.\n",{"type":45,"tag":252,"props":3957,"children":3958},{"class":254,"line":1713},[3959],{"type":45,"tag":252,"props":3960,"children":3961},{"style":259},[3962],{"type":51,"value":3963},"Monitor deployment and report status.\n",{"type":45,"tag":58,"props":3965,"children":3966},{},[3967],{"type":45,"tag":62,"props":3968,"children":3969},{},[3970],{"type":51,"value":3971},"Template-based pattern:",{"type":45,"tag":241,"props":3973,"children":3975},{"className":243,"code":3974,"language":245,"meta":246,"style":246},"---\ndescription: Generate docs from template\nargument-hint: [component]\n---\n\nTemplate: @${CLAUDE_PLUGIN_ROOT}\u002Ftemplates\u002Fdocs.md\n\nGenerate documentation for $1 following template structure.\n",[3976],{"type":45,"tag":70,"props":3977,"children":3978},{"__ignoreMap":246},[3979,3986,4002,4026,4033,4040,4048,4055],{"type":45,"tag":252,"props":3980,"children":3981},{"class":254,"line":255},[3982],{"type":45,"tag":252,"props":3983,"children":3984},{"style":279},[3985],{"type":51,"value":643},{"type":45,"tag":252,"props":3987,"children":3988},{"class":254,"line":265},[3989,3993,3997],{"type":45,"tag":252,"props":3990,"children":3991},{"style":649},[3992],{"type":51,"value":652},{"type":45,"tag":252,"props":3994,"children":3995},{"style":279},[3996],{"type":51,"value":657},{"type":45,"tag":252,"props":3998,"children":3999},{"style":660},[4000],{"type":51,"value":4001}," Generate docs from template\n",{"type":45,"tag":252,"props":4003,"children":4004},{"class":254,"line":275},[4005,4009,4013,4017,4022],{"type":45,"tag":252,"props":4006,"children":4007},{"style":649},[4008],{"type":51,"value":1032},{"type":45,"tag":252,"props":4010,"children":4011},{"style":279},[4012],{"type":51,"value":657},{"type":45,"tag":252,"props":4014,"children":4015},{"style":279},[4016],{"type":51,"value":1084},{"type":45,"tag":252,"props":4018,"children":4019},{"style":660},[4020],{"type":51,"value":4021},"component",{"type":45,"tag":252,"props":4023,"children":4024},{"style":279},[4025],{"type":51,"value":1121},{"type":45,"tag":252,"props":4027,"children":4028},{"class":254,"line":290},[4029],{"type":45,"tag":252,"props":4030,"children":4031},{"style":279},[4032],{"type":51,"value":643},{"type":45,"tag":252,"props":4034,"children":4035},{"class":254,"line":303},[4036],{"type":45,"tag":252,"props":4037,"children":4038},{"emptyLinePlaceholder":269},[4039],{"type":51,"value":272},{"type":45,"tag":252,"props":4041,"children":4042},{"class":254,"line":316},[4043],{"type":45,"tag":252,"props":4044,"children":4045},{"style":259},[4046],{"type":51,"value":4047},"Template: @${CLAUDE_PLUGIN_ROOT}\u002Ftemplates\u002Fdocs.md\n",{"type":45,"tag":252,"props":4049,"children":4050},{"class":254,"line":324},[4051],{"type":45,"tag":252,"props":4052,"children":4053},{"emptyLinePlaceholder":269},[4054],{"type":51,"value":272},{"type":45,"tag":252,"props":4056,"children":4057},{"class":254,"line":1687},[4058],{"type":45,"tag":252,"props":4059,"children":4060},{"style":259},[4061],{"type":51,"value":4062},"Generate documentation for $1 following template structure.\n",{"type":45,"tag":58,"props":4064,"children":4065},{},[4066],{"type":45,"tag":62,"props":4067,"children":4068},{},[4069],{"type":51,"value":4070},"Multi-script pattern:",{"type":45,"tag":241,"props":4072,"children":4074},{"className":243,"code":4073,"language":245,"meta":246,"style":246},"---\ndescription: Complete build workflow\nallowed-tools: Bash(*)\n---\n\nBuild: !`bash ${CLAUDE_PLUGIN_ROOT}\u002Fscripts\u002Fbuild.sh`\nTest: !`bash ${CLAUDE_PLUGIN_ROOT}\u002Fscripts\u002Ftest.sh`\nPackage: !`bash ${CLAUDE_PLUGIN_ROOT}\u002Fscripts\u002Fpackage.sh`\n\nReview outputs and report workflow status.\n",[4075],{"type":45,"tag":70,"props":4076,"children":4077},{"__ignoreMap":246},[4078,4085,4101,4117,4124,4131,4152,4173,4194,4201],{"type":45,"tag":252,"props":4079,"children":4080},{"class":254,"line":255},[4081],{"type":45,"tag":252,"props":4082,"children":4083},{"style":279},[4084],{"type":51,"value":643},{"type":45,"tag":252,"props":4086,"children":4087},{"class":254,"line":265},[4088,4092,4096],{"type":45,"tag":252,"props":4089,"children":4090},{"style":649},[4091],{"type":51,"value":652},{"type":45,"tag":252,"props":4093,"children":4094},{"style":279},[4095],{"type":51,"value":657},{"type":45,"tag":252,"props":4097,"children":4098},{"style":660},[4099],{"type":51,"value":4100}," Complete build workflow\n",{"type":45,"tag":252,"props":4102,"children":4103},{"class":254,"line":275},[4104,4108,4112],{"type":45,"tag":252,"props":4105,"children":4106},{"style":649},[4107],{"type":51,"value":671},{"type":45,"tag":252,"props":4109,"children":4110},{"style":279},[4111],{"type":51,"value":657},{"type":45,"tag":252,"props":4113,"children":4114},{"style":660},[4115],{"type":51,"value":4116}," Bash(*)\n",{"type":45,"tag":252,"props":4118,"children":4119},{"class":254,"line":290},[4120],{"type":45,"tag":252,"props":4121,"children":4122},{"style":279},[4123],{"type":51,"value":643},{"type":45,"tag":252,"props":4125,"children":4126},{"class":254,"line":303},[4127],{"type":45,"tag":252,"props":4128,"children":4129},{"emptyLinePlaceholder":269},[4130],{"type":51,"value":272},{"type":45,"tag":252,"props":4132,"children":4133},{"class":254,"line":316},[4134,4139,4143,4148],{"type":45,"tag":252,"props":4135,"children":4136},{"style":259},[4137],{"type":51,"value":4138},"Build: !",{"type":45,"tag":252,"props":4140,"children":4141},{"style":279},[4142],{"type":51,"value":2685},{"type":45,"tag":252,"props":4144,"children":4145},{"style":660},[4146],{"type":51,"value":4147},"bash ${CLAUDE_PLUGIN_ROOT}\u002Fscripts\u002Fbuild.sh",{"type":45,"tag":252,"props":4149,"children":4150},{"style":279},[4151],{"type":51,"value":2695},{"type":45,"tag":252,"props":4153,"children":4154},{"class":254,"line":324},[4155,4160,4164,4169],{"type":45,"tag":252,"props":4156,"children":4157},{"style":259},[4158],{"type":51,"value":4159},"Test: !",{"type":45,"tag":252,"props":4161,"children":4162},{"style":279},[4163],{"type":51,"value":2685},{"type":45,"tag":252,"props":4165,"children":4166},{"style":660},[4167],{"type":51,"value":4168},"bash ${CLAUDE_PLUGIN_ROOT}\u002Fscripts\u002Ftest.sh",{"type":45,"tag":252,"props":4170,"children":4171},{"style":279},[4172],{"type":51,"value":2695},{"type":45,"tag":252,"props":4174,"children":4175},{"class":254,"line":1687},[4176,4181,4185,4190],{"type":45,"tag":252,"props":4177,"children":4178},{"style":259},[4179],{"type":51,"value":4180},"Package: !",{"type":45,"tag":252,"props":4182,"children":4183},{"style":279},[4184],{"type":51,"value":2685},{"type":45,"tag":252,"props":4186,"children":4187},{"style":660},[4188],{"type":51,"value":4189},"bash ${CLAUDE_PLUGIN_ROOT}\u002Fscripts\u002Fpackage.sh",{"type":45,"tag":252,"props":4191,"children":4192},{"style":279},[4193],{"type":51,"value":2695},{"type":45,"tag":252,"props":4195,"children":4196},{"class":254,"line":1700},[4197],{"type":45,"tag":252,"props":4198,"children":4199},{"emptyLinePlaceholder":269},[4200],{"type":51,"value":272},{"type":45,"tag":252,"props":4202,"children":4203},{"class":254,"line":1713},[4204],{"type":45,"tag":252,"props":4205,"children":4206},{"style":259},[4207],{"type":51,"value":4208},"Review outputs and report workflow status.\n",{"type":45,"tag":58,"props":4210,"children":4211},{},[4212],{"type":45,"tag":62,"props":4213,"children":4214},{},[4215,4217,4222],{"type":51,"value":4216},"See ",{"type":45,"tag":70,"props":4218,"children":4220},{"className":4219},[],[4221],{"type":51,"value":1978},{"type":51,"value":4223}," for detailed patterns.",{"type":45,"tag":95,"props":4225,"children":4227},{"id":4226},"integration-with-plugin-components",[4228],{"type":51,"value":4229},"Integration with Plugin Components",{"type":45,"tag":58,"props":4231,"children":4232},{},[4233],{"type":51,"value":4234},"Commands can integrate with other plugin components for powerful workflows.",{"type":45,"tag":151,"props":4236,"children":4238},{"id":4237},"agent-integration",[4239],{"type":51,"value":4240},"Agent Integration",{"type":45,"tag":58,"props":4242,"children":4243},{},[4244],{"type":51,"value":4245},"Launch plugin agents for complex tasks:",{"type":45,"tag":241,"props":4247,"children":4249},{"className":243,"code":4248,"language":245,"meta":246,"style":246},"---\ndescription: Deep code review\nargument-hint: [file-path]\n---\n\nInitiate comprehensive review of @$1 using the code-reviewer agent.\n\nThe agent will analyze:\n\n- Code structure\n- Security issues\n- Performance\n- Best practices\n\nAgent uses plugin resources:\n\n- ${CLAUDE_PLUGIN_ROOT}\u002Fconfig\u002Frules.json\n- ${CLAUDE_PLUGIN_ROOT}\u002Fchecklists\u002Freview.md\n",[4250],{"type":45,"tag":70,"props":4251,"children":4252},{"__ignoreMap":246},[4253,4260,4276,4299,4306,4313,4321,4328,4336,4343,4355,4367,4379,4390,4397,4405,4413,4426],{"type":45,"tag":252,"props":4254,"children":4255},{"class":254,"line":255},[4256],{"type":45,"tag":252,"props":4257,"children":4258},{"style":279},[4259],{"type":51,"value":643},{"type":45,"tag":252,"props":4261,"children":4262},{"class":254,"line":265},[4263,4267,4271],{"type":45,"tag":252,"props":4264,"children":4265},{"style":649},[4266],{"type":51,"value":652},{"type":45,"tag":252,"props":4268,"children":4269},{"style":279},[4270],{"type":51,"value":657},{"type":45,"tag":252,"props":4272,"children":4273},{"style":660},[4274],{"type":51,"value":4275}," Deep code review\n",{"type":45,"tag":252,"props":4277,"children":4278},{"class":254,"line":275},[4279,4283,4287,4291,4295],{"type":45,"tag":252,"props":4280,"children":4281},{"style":649},[4282],{"type":51,"value":1032},{"type":45,"tag":252,"props":4284,"children":4285},{"style":279},[4286],{"type":51,"value":657},{"type":45,"tag":252,"props":4288,"children":4289},{"style":279},[4290],{"type":51,"value":1084},{"type":45,"tag":252,"props":4292,"children":4293},{"style":660},[4294],{"type":51,"value":1651},{"type":45,"tag":252,"props":4296,"children":4297},{"style":279},[4298],{"type":51,"value":1121},{"type":45,"tag":252,"props":4300,"children":4301},{"class":254,"line":290},[4302],{"type":45,"tag":252,"props":4303,"children":4304},{"style":279},[4305],{"type":51,"value":643},{"type":45,"tag":252,"props":4307,"children":4308},{"class":254,"line":303},[4309],{"type":45,"tag":252,"props":4310,"children":4311},{"emptyLinePlaceholder":269},[4312],{"type":51,"value":272},{"type":45,"tag":252,"props":4314,"children":4315},{"class":254,"line":316},[4316],{"type":45,"tag":252,"props":4317,"children":4318},{"style":259},[4319],{"type":51,"value":4320},"Initiate comprehensive review of @$1 using the code-reviewer agent.\n",{"type":45,"tag":252,"props":4322,"children":4323},{"class":254,"line":324},[4324],{"type":45,"tag":252,"props":4325,"children":4326},{"emptyLinePlaceholder":269},[4327],{"type":51,"value":272},{"type":45,"tag":252,"props":4329,"children":4330},{"class":254,"line":1687},[4331],{"type":45,"tag":252,"props":4332,"children":4333},{"style":259},[4334],{"type":51,"value":4335},"The agent will analyze:\n",{"type":45,"tag":252,"props":4337,"children":4338},{"class":254,"line":1700},[4339],{"type":45,"tag":252,"props":4340,"children":4341},{"emptyLinePlaceholder":269},[4342],{"type":51,"value":272},{"type":45,"tag":252,"props":4344,"children":4345},{"class":254,"line":1713},[4346,4350],{"type":45,"tag":252,"props":4347,"children":4348},{"style":279},[4349],{"type":51,"value":282},{"type":45,"tag":252,"props":4351,"children":4352},{"style":259},[4353],{"type":51,"value":4354}," Code structure\n",{"type":45,"tag":252,"props":4356,"children":4357},{"class":254,"line":2586},[4358,4362],{"type":45,"tag":252,"props":4359,"children":4360},{"style":279},[4361],{"type":51,"value":282},{"type":45,"tag":252,"props":4363,"children":4364},{"style":259},[4365],{"type":51,"value":4366}," Security issues\n",{"type":45,"tag":252,"props":4368,"children":4369},{"class":254,"line":2594},[4370,4374],{"type":45,"tag":252,"props":4371,"children":4372},{"style":279},[4373],{"type":51,"value":282},{"type":45,"tag":252,"props":4375,"children":4376},{"style":259},[4377],{"type":51,"value":4378}," Performance\n",{"type":45,"tag":252,"props":4380,"children":4381},{"class":254,"line":2759},[4382,4386],{"type":45,"tag":252,"props":4383,"children":4384},{"style":279},[4385],{"type":51,"value":282},{"type":45,"tag":252,"props":4387,"children":4388},{"style":259},[4389],{"type":51,"value":1710},{"type":45,"tag":252,"props":4391,"children":4392},{"class":254,"line":2773},[4393],{"type":45,"tag":252,"props":4394,"children":4395},{"emptyLinePlaceholder":269},[4396],{"type":51,"value":272},{"type":45,"tag":252,"props":4398,"children":4399},{"class":254,"line":2781},[4400],{"type":45,"tag":252,"props":4401,"children":4402},{"style":259},[4403],{"type":51,"value":4404},"Agent uses plugin resources:\n",{"type":45,"tag":252,"props":4406,"children":4408},{"class":254,"line":4407},16,[4409],{"type":45,"tag":252,"props":4410,"children":4411},{"emptyLinePlaceholder":269},[4412],{"type":51,"value":272},{"type":45,"tag":252,"props":4414,"children":4416},{"class":254,"line":4415},17,[4417,4421],{"type":45,"tag":252,"props":4418,"children":4419},{"style":279},[4420],{"type":51,"value":282},{"type":45,"tag":252,"props":4422,"children":4423},{"style":259},[4424],{"type":51,"value":4425}," ${CLAUDE_PLUGIN_ROOT}\u002Fconfig\u002Frules.json\n",{"type":45,"tag":252,"props":4427,"children":4429},{"class":254,"line":4428},18,[4430,4434],{"type":45,"tag":252,"props":4431,"children":4432},{"style":279},[4433],{"type":51,"value":282},{"type":45,"tag":252,"props":4435,"children":4436},{"style":259},[4437],{"type":51,"value":4438}," ${CLAUDE_PLUGIN_ROOT}\u002Fchecklists\u002Freview.md\n",{"type":45,"tag":58,"props":4440,"children":4441},{},[4442],{"type":45,"tag":62,"props":4443,"children":4444},{},[4445],{"type":51,"value":4446},"Key points:",{"type":45,"tag":115,"props":4448,"children":4449},{},[4450,4463,4468,4473],{"type":45,"tag":119,"props":4451,"children":4452},{},[4453,4455,4461],{"type":51,"value":4454},"Agent must exist in ",{"type":45,"tag":70,"props":4456,"children":4458},{"className":4457},[],[4459],{"type":51,"value":4460},"plugin\u002Fagents\u002F",{"type":51,"value":4462}," directory",{"type":45,"tag":119,"props":4464,"children":4465},{},[4466],{"type":51,"value":4467},"Claude uses Task tool to launch agent",{"type":45,"tag":119,"props":4469,"children":4470},{},[4471],{"type":51,"value":4472},"Document agent capabilities",{"type":45,"tag":119,"props":4474,"children":4475},{},[4476],{"type":51,"value":4477},"Reference plugin resources agent uses",{"type":45,"tag":151,"props":4479,"children":4481},{"id":4480},"skill-integration",[4482],{"type":51,"value":4483},"Skill Integration",{"type":45,"tag":58,"props":4485,"children":4486},{},[4487],{"type":51,"value":4488},"Leverage plugin skills for specialized knowledge:",{"type":45,"tag":241,"props":4490,"children":4492},{"className":243,"code":4491,"language":245,"meta":246,"style":246},"---\ndescription: Document API with standards\nargument-hint: [api-file]\n---\n\nDocument API in @$1 following plugin standards.\n\nUse the api-docs-standards skill to ensure:\n\n- Complete endpoint documentation\n- Consistent formatting\n- Example quality\n- Error documentation\n\nGenerate production-ready API docs.\n",[4493],{"type":45,"tag":70,"props":4494,"children":4495},{"__ignoreMap":246},[4496,4503,4519,4543,4550,4557,4565,4572,4580,4587,4599,4611,4623,4635,4642],{"type":45,"tag":252,"props":4497,"children":4498},{"class":254,"line":255},[4499],{"type":45,"tag":252,"props":4500,"children":4501},{"style":279},[4502],{"type":51,"value":643},{"type":45,"tag":252,"props":4504,"children":4505},{"class":254,"line":265},[4506,4510,4514],{"type":45,"tag":252,"props":4507,"children":4508},{"style":649},[4509],{"type":51,"value":652},{"type":45,"tag":252,"props":4511,"children":4512},{"style":279},[4513],{"type":51,"value":657},{"type":45,"tag":252,"props":4515,"children":4516},{"style":660},[4517],{"type":51,"value":4518}," Document API with standards\n",{"type":45,"tag":252,"props":4520,"children":4521},{"class":254,"line":275},[4522,4526,4530,4534,4539],{"type":45,"tag":252,"props":4523,"children":4524},{"style":649},[4525],{"type":51,"value":1032},{"type":45,"tag":252,"props":4527,"children":4528},{"style":279},[4529],{"type":51,"value":657},{"type":45,"tag":252,"props":4531,"children":4532},{"style":279},[4533],{"type":51,"value":1084},{"type":45,"tag":252,"props":4535,"children":4536},{"style":660},[4537],{"type":51,"value":4538},"api-file",{"type":45,"tag":252,"props":4540,"children":4541},{"style":279},[4542],{"type":51,"value":1121},{"type":45,"tag":252,"props":4544,"children":4545},{"class":254,"line":290},[4546],{"type":45,"tag":252,"props":4547,"children":4548},{"style":279},[4549],{"type":51,"value":643},{"type":45,"tag":252,"props":4551,"children":4552},{"class":254,"line":303},[4553],{"type":45,"tag":252,"props":4554,"children":4555},{"emptyLinePlaceholder":269},[4556],{"type":51,"value":272},{"type":45,"tag":252,"props":4558,"children":4559},{"class":254,"line":316},[4560],{"type":45,"tag":252,"props":4561,"children":4562},{"style":259},[4563],{"type":51,"value":4564},"Document API in @$1 following plugin standards.\n",{"type":45,"tag":252,"props":4566,"children":4567},{"class":254,"line":324},[4568],{"type":45,"tag":252,"props":4569,"children":4570},{"emptyLinePlaceholder":269},[4571],{"type":51,"value":272},{"type":45,"tag":252,"props":4573,"children":4574},{"class":254,"line":1687},[4575],{"type":45,"tag":252,"props":4576,"children":4577},{"style":259},[4578],{"type":51,"value":4579},"Use the api-docs-standards skill to ensure:\n",{"type":45,"tag":252,"props":4581,"children":4582},{"class":254,"line":1700},[4583],{"type":45,"tag":252,"props":4584,"children":4585},{"emptyLinePlaceholder":269},[4586],{"type":51,"value":272},{"type":45,"tag":252,"props":4588,"children":4589},{"class":254,"line":1713},[4590,4594],{"type":45,"tag":252,"props":4591,"children":4592},{"style":279},[4593],{"type":51,"value":282},{"type":45,"tag":252,"props":4595,"children":4596},{"style":259},[4597],{"type":51,"value":4598}," Complete endpoint documentation\n",{"type":45,"tag":252,"props":4600,"children":4601},{"class":254,"line":2586},[4602,4606],{"type":45,"tag":252,"props":4603,"children":4604},{"style":279},[4605],{"type":51,"value":282},{"type":45,"tag":252,"props":4607,"children":4608},{"style":259},[4609],{"type":51,"value":4610}," Consistent formatting\n",{"type":45,"tag":252,"props":4612,"children":4613},{"class":254,"line":2594},[4614,4618],{"type":45,"tag":252,"props":4615,"children":4616},{"style":279},[4617],{"type":51,"value":282},{"type":45,"tag":252,"props":4619,"children":4620},{"style":259},[4621],{"type":51,"value":4622}," Example quality\n",{"type":45,"tag":252,"props":4624,"children":4625},{"class":254,"line":2759},[4626,4630],{"type":45,"tag":252,"props":4627,"children":4628},{"style":279},[4629],{"type":51,"value":282},{"type":45,"tag":252,"props":4631,"children":4632},{"style":259},[4633],{"type":51,"value":4634}," Error documentation\n",{"type":45,"tag":252,"props":4636,"children":4637},{"class":254,"line":2773},[4638],{"type":45,"tag":252,"props":4639,"children":4640},{"emptyLinePlaceholder":269},[4641],{"type":51,"value":272},{"type":45,"tag":252,"props":4643,"children":4644},{"class":254,"line":2781},[4645],{"type":45,"tag":252,"props":4646,"children":4647},{"style":259},[4648],{"type":51,"value":4649},"Generate production-ready API docs.\n",{"type":45,"tag":58,"props":4651,"children":4652},{},[4653],{"type":45,"tag":62,"props":4654,"children":4655},{},[4656],{"type":51,"value":4446},{"type":45,"tag":115,"props":4658,"children":4659},{},[4660,4672,4677,4682],{"type":45,"tag":119,"props":4661,"children":4662},{},[4663,4665,4671],{"type":51,"value":4664},"Skill must exist in ",{"type":45,"tag":70,"props":4666,"children":4668},{"className":4667},[],[4669],{"type":51,"value":4670},"plugin\u002Fskills\u002F",{"type":51,"value":4462},{"type":45,"tag":119,"props":4673,"children":4674},{},[4675],{"type":51,"value":4676},"Mention skill name to trigger invocation",{"type":45,"tag":119,"props":4678,"children":4679},{},[4680],{"type":51,"value":4681},"Document skill purpose",{"type":45,"tag":119,"props":4683,"children":4684},{},[4685],{"type":51,"value":4686},"Explain what skill provides",{"type":45,"tag":151,"props":4688,"children":4690},{"id":4689},"hook-coordination",[4691],{"type":51,"value":4692},"Hook Coordination",{"type":45,"tag":58,"props":4694,"children":4695},{},[4696],{"type":51,"value":4697},"Design commands that work with plugin hooks:",{"type":45,"tag":115,"props":4699,"children":4700},{},[4701,4706,4711,4716],{"type":45,"tag":119,"props":4702,"children":4703},{},[4704],{"type":51,"value":4705},"Commands can prepare state for hooks to process",{"type":45,"tag":119,"props":4707,"children":4708},{},[4709],{"type":51,"value":4710},"Hooks execute automatically on tool events",{"type":45,"tag":119,"props":4712,"children":4713},{},[4714],{"type":51,"value":4715},"Commands should document expected hook behavior",{"type":45,"tag":119,"props":4717,"children":4718},{},[4719],{"type":51,"value":4720},"Guide Claude on interpreting hook output",{"type":45,"tag":58,"props":4722,"children":4723},{},[4724,4725,4730],{"type":51,"value":4216},{"type":45,"tag":70,"props":4726,"children":4728},{"className":4727},[],[4729],{"type":51,"value":1978},{"type":51,"value":4731}," for examples of commands that coordinate with hooks",{"type":45,"tag":151,"props":4733,"children":4735},{"id":4734},"multi-component-workflows",[4736],{"type":51,"value":4737},"Multi-Component Workflows",{"type":45,"tag":58,"props":4739,"children":4740},{},[4741],{"type":51,"value":4742},"Combine agents, skills, and scripts:",{"type":45,"tag":241,"props":4744,"children":4746},{"className":243,"code":4745,"language":245,"meta":246,"style":246},"---\ndescription: Comprehensive review workflow\nargument-hint: [file]\nallowed-tools: Bash(node:*), Read\n---\n\nTarget: @$1\n\nPhase 1 - Static Analysis:\n!`node ${CLAUDE_PLUGIN_ROOT}\u002Fscripts\u002Flint.js $1`\n\nPhase 2 - Deep Review:\nLaunch code-reviewer agent for detailed analysis.\n\nPhase 3 - Standards Check:\nUse coding-standards skill for validation.\n\nPhase 4 - Report:\nTemplate: @${CLAUDE_PLUGIN_ROOT}\u002Ftemplates\u002Freview.md\n\nCompile findings into report following template.\n",[4747],{"type":45,"tag":70,"props":4748,"children":4749},{"__ignoreMap":246},[4750,4757,4773,4797,4813,4820,4827,4835,4842,4850,4870,4877,4885,4893,4900,4908,4916,4923,4931,4940,4948],{"type":45,"tag":252,"props":4751,"children":4752},{"class":254,"line":255},[4753],{"type":45,"tag":252,"props":4754,"children":4755},{"style":279},[4756],{"type":51,"value":643},{"type":45,"tag":252,"props":4758,"children":4759},{"class":254,"line":265},[4760,4764,4768],{"type":45,"tag":252,"props":4761,"children":4762},{"style":649},[4763],{"type":51,"value":652},{"type":45,"tag":252,"props":4765,"children":4766},{"style":279},[4767],{"type":51,"value":657},{"type":45,"tag":252,"props":4769,"children":4770},{"style":660},[4771],{"type":51,"value":4772}," Comprehensive review workflow\n",{"type":45,"tag":252,"props":4774,"children":4775},{"class":254,"line":275},[4776,4780,4784,4788,4793],{"type":45,"tag":252,"props":4777,"children":4778},{"style":649},[4779],{"type":51,"value":1032},{"type":45,"tag":252,"props":4781,"children":4782},{"style":279},[4783],{"type":51,"value":657},{"type":45,"tag":252,"props":4785,"children":4786},{"style":279},[4787],{"type":51,"value":1084},{"type":45,"tag":252,"props":4789,"children":4790},{"style":660},[4791],{"type":51,"value":4792},"file",{"type":45,"tag":252,"props":4794,"children":4795},{"style":279},[4796],{"type":51,"value":1121},{"type":45,"tag":252,"props":4798,"children":4799},{"class":254,"line":290},[4800,4804,4808],{"type":45,"tag":252,"props":4801,"children":4802},{"style":649},[4803],{"type":51,"value":671},{"type":45,"tag":252,"props":4805,"children":4806},{"style":279},[4807],{"type":51,"value":657},{"type":45,"tag":252,"props":4809,"children":4810},{"style":660},[4811],{"type":51,"value":4812}," Bash(node:*), Read\n",{"type":45,"tag":252,"props":4814,"children":4815},{"class":254,"line":303},[4816],{"type":45,"tag":252,"props":4817,"children":4818},{"style":279},[4819],{"type":51,"value":643},{"type":45,"tag":252,"props":4821,"children":4822},{"class":254,"line":316},[4823],{"type":45,"tag":252,"props":4824,"children":4825},{"emptyLinePlaceholder":269},[4826],{"type":51,"value":272},{"type":45,"tag":252,"props":4828,"children":4829},{"class":254,"line":324},[4830],{"type":45,"tag":252,"props":4831,"children":4832},{"style":259},[4833],{"type":51,"value":4834},"Target: @$1\n",{"type":45,"tag":252,"props":4836,"children":4837},{"class":254,"line":1687},[4838],{"type":45,"tag":252,"props":4839,"children":4840},{"emptyLinePlaceholder":269},[4841],{"type":51,"value":272},{"type":45,"tag":252,"props":4843,"children":4844},{"class":254,"line":1700},[4845],{"type":45,"tag":252,"props":4846,"children":4847},{"style":259},[4848],{"type":51,"value":4849},"Phase 1 - Static Analysis:\n",{"type":45,"tag":252,"props":4851,"children":4852},{"class":254,"line":1713},[4853,4857,4861,4866],{"type":45,"tag":252,"props":4854,"children":4855},{"style":259},[4856],{"type":51,"value":3592},{"type":45,"tag":252,"props":4858,"children":4859},{"style":279},[4860],{"type":51,"value":2685},{"type":45,"tag":252,"props":4862,"children":4863},{"style":660},[4864],{"type":51,"value":4865},"node ${CLAUDE_PLUGIN_ROOT}\u002Fscripts\u002Flint.js $1",{"type":45,"tag":252,"props":4867,"children":4868},{"style":279},[4869],{"type":51,"value":2695},{"type":45,"tag":252,"props":4871,"children":4872},{"class":254,"line":2586},[4873],{"type":45,"tag":252,"props":4874,"children":4875},{"emptyLinePlaceholder":269},[4876],{"type":51,"value":272},{"type":45,"tag":252,"props":4878,"children":4879},{"class":254,"line":2594},[4880],{"type":45,"tag":252,"props":4881,"children":4882},{"style":259},[4883],{"type":51,"value":4884},"Phase 2 - Deep Review:\n",{"type":45,"tag":252,"props":4886,"children":4887},{"class":254,"line":2759},[4888],{"type":45,"tag":252,"props":4889,"children":4890},{"style":259},[4891],{"type":51,"value":4892},"Launch code-reviewer agent for detailed analysis.\n",{"type":45,"tag":252,"props":4894,"children":4895},{"class":254,"line":2773},[4896],{"type":45,"tag":252,"props":4897,"children":4898},{"emptyLinePlaceholder":269},[4899],{"type":51,"value":272},{"type":45,"tag":252,"props":4901,"children":4902},{"class":254,"line":2781},[4903],{"type":45,"tag":252,"props":4904,"children":4905},{"style":259},[4906],{"type":51,"value":4907},"Phase 3 - Standards Check:\n",{"type":45,"tag":252,"props":4909,"children":4910},{"class":254,"line":4407},[4911],{"type":45,"tag":252,"props":4912,"children":4913},{"style":259},[4914],{"type":51,"value":4915},"Use coding-standards skill for validation.\n",{"type":45,"tag":252,"props":4917,"children":4918},{"class":254,"line":4415},[4919],{"type":45,"tag":252,"props":4920,"children":4921},{"emptyLinePlaceholder":269},[4922],{"type":51,"value":272},{"type":45,"tag":252,"props":4924,"children":4925},{"class":254,"line":4428},[4926],{"type":45,"tag":252,"props":4927,"children":4928},{"style":259},[4929],{"type":51,"value":4930},"Phase 4 - Report:\n",{"type":45,"tag":252,"props":4932,"children":4934},{"class":254,"line":4933},19,[4935],{"type":45,"tag":252,"props":4936,"children":4937},{"style":259},[4938],{"type":51,"value":4939},"Template: @${CLAUDE_PLUGIN_ROOT}\u002Ftemplates\u002Freview.md\n",{"type":45,"tag":252,"props":4941,"children":4943},{"class":254,"line":4942},20,[4944],{"type":45,"tag":252,"props":4945,"children":4946},{"emptyLinePlaceholder":269},[4947],{"type":51,"value":272},{"type":45,"tag":252,"props":4949,"children":4951},{"class":254,"line":4950},21,[4952],{"type":45,"tag":252,"props":4953,"children":4954},{"style":259},[4955],{"type":51,"value":4956},"Compile findings into report following template.\n",{"type":45,"tag":58,"props":4958,"children":4959},{},[4960],{"type":45,"tag":62,"props":4961,"children":4962},{},[4963],{"type":51,"value":1944},{"type":45,"tag":115,"props":4965,"children":4966},{},[4967,4972,4977,4982],{"type":45,"tag":119,"props":4968,"children":4969},{},[4970],{"type":51,"value":4971},"Complex multi-step workflows",{"type":45,"tag":119,"props":4973,"children":4974},{},[4975],{"type":51,"value":4976},"Leverage multiple plugin capabilities",{"type":45,"tag":119,"props":4978,"children":4979},{},[4980],{"type":51,"value":4981},"Require specialized analysis",{"type":45,"tag":119,"props":4983,"children":4984},{},[4985],{"type":51,"value":4986},"Need structured outputs",{"type":45,"tag":95,"props":4988,"children":4990},{"id":4989},"validation-patterns",[4991],{"type":51,"value":4992},"Validation Patterns",{"type":45,"tag":58,"props":4994,"children":4995},{},[4996],{"type":51,"value":4997},"Commands should validate inputs and resources before processing.",{"type":45,"tag":151,"props":4999,"children":5001},{"id":5000},"argument-validation",[5002],{"type":51,"value":5003},"Argument Validation",{"type":45,"tag":241,"props":5005,"children":5007},{"className":243,"code":5006,"language":245,"meta":246,"style":246},"---\ndescription: Deploy with validation\nargument-hint: [environment]\n---\n\nValidate environment: !`echo \"$1\" | grep -E \"^(dev|staging|prod)$\" || echo \"INVALID\"`\n\nIf $1 is valid environment:\nDeploy to $1\nOtherwise:\nExplain valid environments: dev, staging, prod\nShow usage: \u002Fdeploy [environment]\n",[5008],{"type":45,"tag":70,"props":5009,"children":5010},{"__ignoreMap":246},[5011,5018,5034,5057,5064,5071,5092,5099,5107,5115,5123,5131],{"type":45,"tag":252,"props":5012,"children":5013},{"class":254,"line":255},[5014],{"type":45,"tag":252,"props":5015,"children":5016},{"style":279},[5017],{"type":51,"value":643},{"type":45,"tag":252,"props":5019,"children":5020},{"class":254,"line":265},[5021,5025,5029],{"type":45,"tag":252,"props":5022,"children":5023},{"style":649},[5024],{"type":51,"value":652},{"type":45,"tag":252,"props":5026,"children":5027},{"style":279},[5028],{"type":51,"value":657},{"type":45,"tag":252,"props":5030,"children":5031},{"style":660},[5032],{"type":51,"value":5033}," Deploy with validation\n",{"type":45,"tag":252,"props":5035,"children":5036},{"class":254,"line":275},[5037,5041,5045,5049,5053],{"type":45,"tag":252,"props":5038,"children":5039},{"style":649},[5040],{"type":51,"value":1032},{"type":45,"tag":252,"props":5042,"children":5043},{"style":279},[5044],{"type":51,"value":657},{"type":45,"tag":252,"props":5046,"children":5047},{"style":279},[5048],{"type":51,"value":1084},{"type":45,"tag":252,"props":5050,"children":5051},{"style":660},[5052],{"type":51,"value":2511},{"type":45,"tag":252,"props":5054,"children":5055},{"style":279},[5056],{"type":51,"value":1121},{"type":45,"tag":252,"props":5058,"children":5059},{"class":254,"line":290},[5060],{"type":45,"tag":252,"props":5061,"children":5062},{"style":279},[5063],{"type":51,"value":643},{"type":45,"tag":252,"props":5065,"children":5066},{"class":254,"line":303},[5067],{"type":45,"tag":252,"props":5068,"children":5069},{"emptyLinePlaceholder":269},[5070],{"type":51,"value":272},{"type":45,"tag":252,"props":5072,"children":5073},{"class":254,"line":316},[5074,5079,5083,5088],{"type":45,"tag":252,"props":5075,"children":5076},{"style":259},[5077],{"type":51,"value":5078},"Validate environment: !",{"type":45,"tag":252,"props":5080,"children":5081},{"style":279},[5082],{"type":51,"value":2685},{"type":45,"tag":252,"props":5084,"children":5085},{"style":660},[5086],{"type":51,"value":5087},"echo \"$1\" | grep -E \"^(dev|staging|prod)$\" || echo \"INVALID\"",{"type":45,"tag":252,"props":5089,"children":5090},{"style":279},[5091],{"type":51,"value":2695},{"type":45,"tag":252,"props":5093,"children":5094},{"class":254,"line":324},[5095],{"type":45,"tag":252,"props":5096,"children":5097},{"emptyLinePlaceholder":269},[5098],{"type":51,"value":272},{"type":45,"tag":252,"props":5100,"children":5101},{"class":254,"line":1687},[5102],{"type":45,"tag":252,"props":5103,"children":5104},{"style":259},[5105],{"type":51,"value":5106},"If $1 is valid environment:\n",{"type":45,"tag":252,"props":5108,"children":5109},{"class":254,"line":1700},[5110],{"type":45,"tag":252,"props":5111,"children":5112},{"style":259},[5113],{"type":51,"value":5114},"Deploy to $1\n",{"type":45,"tag":252,"props":5116,"children":5117},{"class":254,"line":1713},[5118],{"type":45,"tag":252,"props":5119,"children":5120},{"style":259},[5121],{"type":51,"value":5122},"Otherwise:\n",{"type":45,"tag":252,"props":5124,"children":5125},{"class":254,"line":2586},[5126],{"type":45,"tag":252,"props":5127,"children":5128},{"style":259},[5129],{"type":51,"value":5130},"Explain valid environments: dev, staging, prod\n",{"type":45,"tag":252,"props":5132,"children":5133},{"class":254,"line":2594},[5134,5139,5143,5147],{"type":45,"tag":252,"props":5135,"children":5136},{"style":259},[5137],{"type":51,"value":5138},"Show usage: \u002Fdeploy ",{"type":45,"tag":252,"props":5140,"children":5141},{"style":279},[5142],{"type":51,"value":2286},{"type":45,"tag":252,"props":5144,"children":5145},{"style":660},[5146],{"type":51,"value":2511},{"type":45,"tag":252,"props":5148,"children":5149},{"style":279},[5150],{"type":51,"value":1121},{"type":45,"tag":151,"props":5152,"children":5154},{"id":5153},"file-existence-checks",[5155],{"type":51,"value":5156},"File Existence Checks",{"type":45,"tag":241,"props":5158,"children":5160},{"className":243,"code":5159,"language":245,"meta":246,"style":246},"---\ndescription: Process configuration\nargument-hint: [config-file]\n---\n\nCheck file exists: !`test -f $1 && echo \"EXISTS\" || echo \"MISSING\"`\n\nIf file exists:\nProcess configuration: @$1\nOtherwise:\nExplain where to place config file\nShow expected format\nProvide example configuration\n",[5161],{"type":45,"tag":70,"props":5162,"children":5163},{"__ignoreMap":246},[5164,5171,5187,5211,5218,5225,5246,5253,5261,5269,5276,5284,5292],{"type":45,"tag":252,"props":5165,"children":5166},{"class":254,"line":255},[5167],{"type":45,"tag":252,"props":5168,"children":5169},{"style":279},[5170],{"type":51,"value":643},{"type":45,"tag":252,"props":5172,"children":5173},{"class":254,"line":265},[5174,5178,5182],{"type":45,"tag":252,"props":5175,"children":5176},{"style":649},[5177],{"type":51,"value":652},{"type":45,"tag":252,"props":5179,"children":5180},{"style":279},[5181],{"type":51,"value":657},{"type":45,"tag":252,"props":5183,"children":5184},{"style":660},[5185],{"type":51,"value":5186}," Process configuration\n",{"type":45,"tag":252,"props":5188,"children":5189},{"class":254,"line":275},[5190,5194,5198,5202,5207],{"type":45,"tag":252,"props":5191,"children":5192},{"style":649},[5193],{"type":51,"value":1032},{"type":45,"tag":252,"props":5195,"children":5196},{"style":279},[5197],{"type":51,"value":657},{"type":45,"tag":252,"props":5199,"children":5200},{"style":279},[5201],{"type":51,"value":1084},{"type":45,"tag":252,"props":5203,"children":5204},{"style":660},[5205],{"type":51,"value":5206},"config-file",{"type":45,"tag":252,"props":5208,"children":5209},{"style":279},[5210],{"type":51,"value":1121},{"type":45,"tag":252,"props":5212,"children":5213},{"class":254,"line":290},[5214],{"type":45,"tag":252,"props":5215,"children":5216},{"style":279},[5217],{"type":51,"value":643},{"type":45,"tag":252,"props":5219,"children":5220},{"class":254,"line":303},[5221],{"type":45,"tag":252,"props":5222,"children":5223},{"emptyLinePlaceholder":269},[5224],{"type":51,"value":272},{"type":45,"tag":252,"props":5226,"children":5227},{"class":254,"line":316},[5228,5233,5237,5242],{"type":45,"tag":252,"props":5229,"children":5230},{"style":259},[5231],{"type":51,"value":5232},"Check file exists: !",{"type":45,"tag":252,"props":5234,"children":5235},{"style":279},[5236],{"type":51,"value":2685},{"type":45,"tag":252,"props":5238,"children":5239},{"style":660},[5240],{"type":51,"value":5241},"test -f $1 && echo \"EXISTS\" || echo \"MISSING\"",{"type":45,"tag":252,"props":5243,"children":5244},{"style":279},[5245],{"type":51,"value":2695},{"type":45,"tag":252,"props":5247,"children":5248},{"class":254,"line":324},[5249],{"type":45,"tag":252,"props":5250,"children":5251},{"emptyLinePlaceholder":269},[5252],{"type":51,"value":272},{"type":45,"tag":252,"props":5254,"children":5255},{"class":254,"line":1687},[5256],{"type":45,"tag":252,"props":5257,"children":5258},{"style":259},[5259],{"type":51,"value":5260},"If file exists:\n",{"type":45,"tag":252,"props":5262,"children":5263},{"class":254,"line":1700},[5264],{"type":45,"tag":252,"props":5265,"children":5266},{"style":259},[5267],{"type":51,"value":5268},"Process configuration: @$1\n",{"type":45,"tag":252,"props":5270,"children":5271},{"class":254,"line":1713},[5272],{"type":45,"tag":252,"props":5273,"children":5274},{"style":259},[5275],{"type":51,"value":5122},{"type":45,"tag":252,"props":5277,"children":5278},{"class":254,"line":2586},[5279],{"type":45,"tag":252,"props":5280,"children":5281},{"style":259},[5282],{"type":51,"value":5283},"Explain where to place config file\n",{"type":45,"tag":252,"props":5285,"children":5286},{"class":254,"line":2594},[5287],{"type":45,"tag":252,"props":5288,"children":5289},{"style":259},[5290],{"type":51,"value":5291},"Show expected format\n",{"type":45,"tag":252,"props":5293,"children":5294},{"class":254,"line":2759},[5295],{"type":45,"tag":252,"props":5296,"children":5297},{"style":259},[5298],{"type":51,"value":5299},"Provide example configuration\n",{"type":45,"tag":151,"props":5301,"children":5303},{"id":5302},"plugin-resource-validation",[5304],{"type":51,"value":5305},"Plugin Resource Validation",{"type":45,"tag":241,"props":5307,"children":5309},{"className":243,"code":5308,"language":245,"meta":246,"style":246},"---\ndescription: Run plugin analyzer\nallowed-tools: Bash(test:*)\n---\n\nValidate plugin setup:\n\n- Script: !`test -x ${CLAUDE_PLUGIN_ROOT}\u002Fbin\u002Fanalyze && echo \"✓\" || echo \"✗\"`\n- Config: !`test -f ${CLAUDE_PLUGIN_ROOT}\u002Fconfig.json && echo \"✓\" || echo \"✗\"`\n\nIf all checks pass, run analysis.\nOtherwise, report missing components.\n",[5310],{"type":45,"tag":70,"props":5311,"children":5312},{"__ignoreMap":246},[5313,5320,5336,5352,5359,5366,5374,5381,5406,5431,5438,5446],{"type":45,"tag":252,"props":5314,"children":5315},{"class":254,"line":255},[5316],{"type":45,"tag":252,"props":5317,"children":5318},{"style":279},[5319],{"type":51,"value":643},{"type":45,"tag":252,"props":5321,"children":5322},{"class":254,"line":265},[5323,5327,5331],{"type":45,"tag":252,"props":5324,"children":5325},{"style":649},[5326],{"type":51,"value":652},{"type":45,"tag":252,"props":5328,"children":5329},{"style":279},[5330],{"type":51,"value":657},{"type":45,"tag":252,"props":5332,"children":5333},{"style":660},[5334],{"type":51,"value":5335}," Run plugin analyzer\n",{"type":45,"tag":252,"props":5337,"children":5338},{"class":254,"line":275},[5339,5343,5347],{"type":45,"tag":252,"props":5340,"children":5341},{"style":649},[5342],{"type":51,"value":671},{"type":45,"tag":252,"props":5344,"children":5345},{"style":279},[5346],{"type":51,"value":657},{"type":45,"tag":252,"props":5348,"children":5349},{"style":660},[5350],{"type":51,"value":5351}," Bash(test:*)\n",{"type":45,"tag":252,"props":5353,"children":5354},{"class":254,"line":290},[5355],{"type":45,"tag":252,"props":5356,"children":5357},{"style":279},[5358],{"type":51,"value":643},{"type":45,"tag":252,"props":5360,"children":5361},{"class":254,"line":303},[5362],{"type":45,"tag":252,"props":5363,"children":5364},{"emptyLinePlaceholder":269},[5365],{"type":51,"value":272},{"type":45,"tag":252,"props":5367,"children":5368},{"class":254,"line":316},[5369],{"type":45,"tag":252,"props":5370,"children":5371},{"style":259},[5372],{"type":51,"value":5373},"Validate plugin setup:\n",{"type":45,"tag":252,"props":5375,"children":5376},{"class":254,"line":324},[5377],{"type":45,"tag":252,"props":5378,"children":5379},{"emptyLinePlaceholder":269},[5380],{"type":51,"value":272},{"type":45,"tag":252,"props":5382,"children":5383},{"class":254,"line":1687},[5384,5388,5393,5397,5402],{"type":45,"tag":252,"props":5385,"children":5386},{"style":279},[5387],{"type":51,"value":282},{"type":45,"tag":252,"props":5389,"children":5390},{"style":259},[5391],{"type":51,"value":5392}," Script: !",{"type":45,"tag":252,"props":5394,"children":5395},{"style":279},[5396],{"type":51,"value":2685},{"type":45,"tag":252,"props":5398,"children":5399},{"style":660},[5400],{"type":51,"value":5401},"test -x ${CLAUDE_PLUGIN_ROOT}\u002Fbin\u002Fanalyze && echo \"✓\" || echo \"✗\"",{"type":45,"tag":252,"props":5403,"children":5404},{"style":279},[5405],{"type":51,"value":2695},{"type":45,"tag":252,"props":5407,"children":5408},{"class":254,"line":1700},[5409,5413,5418,5422,5427],{"type":45,"tag":252,"props":5410,"children":5411},{"style":279},[5412],{"type":51,"value":282},{"type":45,"tag":252,"props":5414,"children":5415},{"style":259},[5416],{"type":51,"value":5417}," Config: !",{"type":45,"tag":252,"props":5419,"children":5420},{"style":279},[5421],{"type":51,"value":2685},{"type":45,"tag":252,"props":5423,"children":5424},{"style":660},[5425],{"type":51,"value":5426},"test -f ${CLAUDE_PLUGIN_ROOT}\u002Fconfig.json && echo \"✓\" || echo \"✗\"",{"type":45,"tag":252,"props":5428,"children":5429},{"style":279},[5430],{"type":51,"value":2695},{"type":45,"tag":252,"props":5432,"children":5433},{"class":254,"line":1713},[5434],{"type":45,"tag":252,"props":5435,"children":5436},{"emptyLinePlaceholder":269},[5437],{"type":51,"value":272},{"type":45,"tag":252,"props":5439,"children":5440},{"class":254,"line":2586},[5441],{"type":45,"tag":252,"props":5442,"children":5443},{"style":259},[5444],{"type":51,"value":5445},"If all checks pass, run analysis.\n",{"type":45,"tag":252,"props":5447,"children":5448},{"class":254,"line":2594},[5449],{"type":45,"tag":252,"props":5450,"children":5451},{"style":259},[5452],{"type":51,"value":5453},"Otherwise, report missing components.\n",{"type":45,"tag":151,"props":5455,"children":5457},{"id":5456},"error-handling",[5458],{"type":51,"value":5459},"Error Handling",{"type":45,"tag":241,"props":5461,"children":5463},{"className":243,"code":5462,"language":245,"meta":246,"style":246},"---\ndescription: Build with error handling\nallowed-tools: Bash(*)\n---\n\nExecute build: !`bash ${CLAUDE_PLUGIN_ROOT}\u002Fscripts\u002Fbuild.sh 2>&1 || echo \"BUILD_FAILED\"`\n\nIf build succeeded:\nReport success and output location\nIf build failed:\nAnalyze error output\nSuggest likely causes\nProvide troubleshooting steps\n",[5464],{"type":45,"tag":70,"props":5465,"children":5466},{"__ignoreMap":246},[5467,5474,5490,5505,5512,5519,5540,5547,5555,5563,5571,5579,5587],{"type":45,"tag":252,"props":5468,"children":5469},{"class":254,"line":255},[5470],{"type":45,"tag":252,"props":5471,"children":5472},{"style":279},[5473],{"type":51,"value":643},{"type":45,"tag":252,"props":5475,"children":5476},{"class":254,"line":265},[5477,5481,5485],{"type":45,"tag":252,"props":5478,"children":5479},{"style":649},[5480],{"type":51,"value":652},{"type":45,"tag":252,"props":5482,"children":5483},{"style":279},[5484],{"type":51,"value":657},{"type":45,"tag":252,"props":5486,"children":5487},{"style":660},[5488],{"type":51,"value":5489}," Build with error handling\n",{"type":45,"tag":252,"props":5491,"children":5492},{"class":254,"line":275},[5493,5497,5501],{"type":45,"tag":252,"props":5494,"children":5495},{"style":649},[5496],{"type":51,"value":671},{"type":45,"tag":252,"props":5498,"children":5499},{"style":279},[5500],{"type":51,"value":657},{"type":45,"tag":252,"props":5502,"children":5503},{"style":660},[5504],{"type":51,"value":4116},{"type":45,"tag":252,"props":5506,"children":5507},{"class":254,"line":290},[5508],{"type":45,"tag":252,"props":5509,"children":5510},{"style":279},[5511],{"type":51,"value":643},{"type":45,"tag":252,"props":5513,"children":5514},{"class":254,"line":303},[5515],{"type":45,"tag":252,"props":5516,"children":5517},{"emptyLinePlaceholder":269},[5518],{"type":51,"value":272},{"type":45,"tag":252,"props":5520,"children":5521},{"class":254,"line":316},[5522,5527,5531,5536],{"type":45,"tag":252,"props":5523,"children":5524},{"style":259},[5525],{"type":51,"value":5526},"Execute build: !",{"type":45,"tag":252,"props":5528,"children":5529},{"style":279},[5530],{"type":51,"value":2685},{"type":45,"tag":252,"props":5532,"children":5533},{"style":660},[5534],{"type":51,"value":5535},"bash ${CLAUDE_PLUGIN_ROOT}\u002Fscripts\u002Fbuild.sh 2>&1 || echo \"BUILD_FAILED\"",{"type":45,"tag":252,"props":5537,"children":5538},{"style":279},[5539],{"type":51,"value":2695},{"type":45,"tag":252,"props":5541,"children":5542},{"class":254,"line":324},[5543],{"type":45,"tag":252,"props":5544,"children":5545},{"emptyLinePlaceholder":269},[5546],{"type":51,"value":272},{"type":45,"tag":252,"props":5548,"children":5549},{"class":254,"line":1687},[5550],{"type":45,"tag":252,"props":5551,"children":5552},{"style":259},[5553],{"type":51,"value":5554},"If build succeeded:\n",{"type":45,"tag":252,"props":5556,"children":5557},{"class":254,"line":1700},[5558],{"type":45,"tag":252,"props":5559,"children":5560},{"style":259},[5561],{"type":51,"value":5562},"Report success and output location\n",{"type":45,"tag":252,"props":5564,"children":5565},{"class":254,"line":1713},[5566],{"type":45,"tag":252,"props":5567,"children":5568},{"style":259},[5569],{"type":51,"value":5570},"If build failed:\n",{"type":45,"tag":252,"props":5572,"children":5573},{"class":254,"line":2586},[5574],{"type":45,"tag":252,"props":5575,"children":5576},{"style":259},[5577],{"type":51,"value":5578},"Analyze error output\n",{"type":45,"tag":252,"props":5580,"children":5581},{"class":254,"line":2594},[5582],{"type":45,"tag":252,"props":5583,"children":5584},{"style":259},[5585],{"type":51,"value":5586},"Suggest likely causes\n",{"type":45,"tag":252,"props":5588,"children":5589},{"class":254,"line":2759},[5590],{"type":45,"tag":252,"props":5591,"children":5592},{"style":259},[5593],{"type":51,"value":5594},"Provide troubleshooting steps\n",{"type":45,"tag":58,"props":5596,"children":5597},{},[5598],{"type":45,"tag":62,"props":5599,"children":5600},{},[5601],{"type":51,"value":5602},"Best practices:",{"type":45,"tag":115,"props":5604,"children":5605},{},[5606,5611,5616,5621],{"type":45,"tag":119,"props":5607,"children":5608},{},[5609],{"type":51,"value":5610},"Validate early in command",{"type":45,"tag":119,"props":5612,"children":5613},{},[5614],{"type":51,"value":5615},"Provide helpful error messages",{"type":45,"tag":119,"props":5617,"children":5618},{},[5619],{"type":51,"value":5620},"Suggest corrective actions",{"type":45,"tag":119,"props":5622,"children":5623},{},[5624],{"type":51,"value":5625},"Handle edge cases gracefully",{"type":45,"tag":5627,"props":5628,"children":5629},"hr",{},[],{"type":45,"tag":58,"props":5631,"children":5632},{},[5633,5635,5641,5643,5648,5650,5656],{"type":51,"value":5634},"For detailed frontmatter field specifications, see ",{"type":45,"tag":70,"props":5636,"children":5638},{"className":5637},[],[5639],{"type":51,"value":5640},"references\u002Ffrontmatter-reference.md",{"type":51,"value":5642},".\nFor plugin-specific features and patterns, see ",{"type":45,"tag":70,"props":5644,"children":5646},{"className":5645},[],[5647],{"type":51,"value":1978},{"type":51,"value":5649},".\nFor command pattern examples, see ",{"type":45,"tag":70,"props":5651,"children":5653},{"className":5652},[],[5654],{"type":51,"value":5655},"examples\u002F",{"type":51,"value":5657}," directory.",{"type":45,"tag":5659,"props":5660,"children":5661},"style",{},[5662],{"type":51,"value":5663},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":5665,"total":5849},[5666,5687,5701,5713,5732,5743,5764,5784,5798,5812,5820,5833],{"slug":5667,"name":5667,"fn":5668,"description":5669,"org":5670,"tags":5671,"stars":5684,"repoUrl":5685,"updatedAt":5686},"algorithmic-art","create algorithmic art with p5.js","Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5672,5675,5678,5681],{"name":5673,"slug":5674,"type":14},"Creative","creative",{"name":5676,"slug":5677,"type":14},"Design","design",{"name":5679,"slug":5680,"type":14},"Generative Art","generative-art",{"name":5682,"slug":5683,"type":14},"JavaScript","javascript",161831,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fskills","2026-04-06T17:56:15.455818",{"slug":5688,"name":5688,"fn":5689,"description":5690,"org":5691,"tags":5692,"stars":5684,"repoUrl":5685,"updatedAt":5700},"brand-guidelines","apply Anthropic brand colors and typography","Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5693,5696,5697],{"name":5694,"slug":5695,"type":14},"Branding","branding",{"name":5676,"slug":5677,"type":14},{"name":5698,"slug":5699,"type":14},"Typography","typography","2026-04-06T17:56:05.042852",{"slug":5702,"name":5702,"fn":5703,"description":5704,"org":5705,"tags":5706,"stars":5684,"repoUrl":5685,"updatedAt":5712},"canvas-design","create posters and visual art as PNG or PDF","Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5707,5708,5709],{"name":5673,"slug":5674,"type":14},{"name":5676,"slug":5677,"type":14},{"name":5710,"slug":5711,"type":14},"PDF","pdf","2026-04-06T17:56:03.794732",{"slug":5714,"name":5714,"fn":5715,"description":5716,"org":5717,"tags":5718,"stars":5684,"repoUrl":5685,"updatedAt":5731},"claude-api","build apps with the Claude API","Reference for the Claude API \u002F Anthropic SDK — model ids, pricing, params, streaming, tool use, MCP, agents, caching, token counting, model migration.\nTRIGGER — read BEFORE opening the target file; don't skip because it \"looks like a one-liner\" — whenever: the prompt names Claude\u002FAnthropic in any form (Claude, Anthropic, Fable, Opus, Sonnet, Haiku, `anthropic`, `@anthropic-ai`, `claude-*`, `us.anthropic.*`, `[1m]`); the user asks about an LLM (pricing\u002Fmodel choice\u002Flimits\u002Fcaching) — never answer from memory; OR the task is LLM-shaped with provider unstated (agent\u002FMCP\u002Ftool-definition\u002Fmulti-agent\u002FRAG\u002FLLM-judge\u002Fcomputer-use; generate\u002Fsummarize\u002Fextract\u002Fclassify\u002Frewrite\u002Fconverse over NL; debugging refusals\u002Fcutoffs\u002Fstreaming\u002Ftool-calls\u002Ftokens).\nSKIP only when another provider is being worked on (overrides all triggers): OpenAI\u002FGPT\u002FGemini\u002FLlama\u002FMistral\u002FCohere\u002FOllama named in the query; OR `grep -rE 'openai|langchain_openai|google.generativeai|genai|mistralai|cohere|ollama'` over the project hits (run this grep FIRST if no provider named — don't Read the file).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5719,5722,5723,5726,5728],{"name":5720,"slug":5721,"type":14},"Agents","agents",{"name":9,"slug":8,"type":14},{"name":5724,"slug":5725,"type":14},"Anthropic SDK","anthropic-sdk",{"name":5727,"slug":5714,"type":14},"Claude API",{"name":5729,"slug":5730,"type":14},"LLM","llm","2026-07-28T05:36:08.213335",{"slug":5733,"name":5733,"fn":5734,"description":5735,"org":5736,"tags":5737,"stars":5684,"repoUrl":5685,"updatedAt":5742},"doc-coauthoring","co-author documentation and technical specs","Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This workflow helps users efficiently transfer context, refine content through iteration, and verify the doc works for readers. Trigger when user mentions writing docs, creating proposals, drafting specs, or similar documentation tasks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5738,5739],{"name":2418,"slug":2415,"type":14},{"name":5740,"slug":5741,"type":14},"Technical Writing","technical-writing","2026-04-06T17:56:14.18897",{"slug":5744,"name":5744,"fn":5745,"description":5746,"org":5747,"tags":5748,"stars":5684,"repoUrl":5685,"updatedAt":5763},"docx","create and edit Word documents","Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files) or Word templates (.dotx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', '.dotx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx or .dotx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a 'report', 'memo', 'letter', 'template', or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5749,5752,5754,5757,5760],{"name":5750,"slug":5751,"type":14},"Documents","documents",{"name":5753,"slug":5744,"type":14},"DOCX",{"name":5755,"slug":5756,"type":14},"Office","office",{"name":5758,"slug":5759,"type":14},"Templates","templates",{"name":5761,"slug":5762,"type":14},"Word","word","2026-07-18T05:16:23.136271",{"slug":5765,"name":5765,"fn":5766,"description":5767,"org":5768,"tags":5769,"stars":5684,"repoUrl":5685,"updatedAt":5783},"frontend-design","design production-grade frontend interfaces","Guidance for distinctive, intentional visual design when building new UI or reshaping an existing one. Helps with aesthetic direction, typography, and making choices that don't read as templated defaults.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5770,5771,5774,5777,5780],{"name":5676,"slug":5677,"type":14},{"name":5772,"slug":5773,"type":14},"Frontend","frontend",{"name":5775,"slug":5776,"type":14},"React","react",{"name":5778,"slug":5779,"type":14},"Tailwind CSS","tailwind-css",{"name":5781,"slug":5782,"type":14},"UI Components","ui-components","2026-04-06T17:56:16.723469",{"slug":5785,"name":5785,"fn":5786,"description":5787,"org":5788,"tags":5789,"stars":5684,"repoUrl":5685,"updatedAt":5797},"internal-comms","write internal company communications","A set of resources to help me write all kinds of internal communications, using the formats that my company likes to use. Claude should use this skill whenever asked to write some sort of internal communications (status reports, leadership updates, 3P updates, company newsletters, FAQs, incident reports, project updates, etc.).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5790,5793,5794],{"name":5791,"slug":5792,"type":14},"Communications","communications",{"name":5758,"slug":5759,"type":14},{"name":5795,"slug":5796,"type":14},"Writing","writing","2026-04-06T17:56:20.695522",{"slug":5799,"name":5799,"fn":5800,"description":5801,"org":5802,"tags":5803,"stars":5684,"repoUrl":5685,"updatedAt":5811},"mcp-builder","build MCP servers","Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node\u002FTypeScript (MCP SDK).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5804,5805,5808,5809],{"name":5720,"slug":5721,"type":14},{"name":5806,"slug":5807,"type":14},"API Development","api-development",{"name":5729,"slug":5730,"type":14},{"name":5810,"slug":31,"type":14},"MCP","2026-04-06T17:56:10.357665",{"slug":5711,"name":5711,"fn":5813,"description":5814,"org":5815,"tags":5816,"stars":5684,"repoUrl":5685,"updatedAt":5819},"read edit and manipulate PDF files","Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text\u002Ftables from PDFs, combining or merging multiple PDFs into one, splitting PDFs apart, rotating pages, adding watermarks, creating new PDFs, filling PDF forms, encrypting\u002Fdecrypting PDFs, extracting images, and OCR on scanned PDFs to make them searchable. If the user mentions a .pdf file or asks to produce one, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5817,5818],{"name":5750,"slug":5751,"type":14},{"name":5710,"slug":5711,"type":14},"2026-04-06T17:56:02.483316",{"slug":5821,"name":5821,"fn":5822,"description":5823,"org":5824,"tags":5825,"stars":5684,"repoUrl":5685,"updatedAt":5832},"pptx","create and edit PowerPoint presentations","Use this skill any time a .pptx or .potx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx or .potx file (even if the extracted content will be used elsewhere, like in an email or summary); editing, modifying, or updating existing presentations; combining or splitting slide files; working with templates (.potx), layouts, speaker notes, or comments. Trigger whenever the user mentions \"deck,\" \"slides,\" \"presentation,\" or references a .pptx or .potx filename, regardless of what they plan to do with the content afterward. If a .pptx or .potx file needs to be opened, created, or touched, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5826,5829],{"name":5827,"slug":5828,"type":14},"PowerPoint","powerpoint",{"name":5830,"slug":5831,"type":14},"Presentations","presentations","2026-07-18T05:16:24.1471",{"slug":5834,"name":5834,"fn":5835,"description":5836,"org":5837,"tags":5838,"stars":5684,"repoUrl":5685,"updatedAt":5848},"skill-creator","create and optimize agent skills","Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5839,5840,5841,5844,5847],{"name":5720,"slug":5721,"type":14},{"name":2418,"slug":2415,"type":14},{"name":5842,"slug":5843,"type":14},"Evals","evals",{"name":5845,"slug":5846,"type":14},"Performance","performance",{"name":5740,"slug":5741,"type":14},"2026-04-19T06:45:40.804",490,{"items":5851,"total":5945},[5852,5868,5879,5891,5901,5914,5933],{"slug":5853,"name":5853,"fn":5854,"description":5855,"org":5856,"tags":5857,"stars":24,"repoUrl":25,"updatedAt":5867},"access","manage iMessage channel access and permissions","Manage iMessage channel access — approve pairings, edit allowlists, set DM\u002Fgroup policy. Use when the user asks to pair, approve someone, check who's allowed, or change policy for the iMessage channel.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5858,5861,5864],{"name":5859,"slug":5860,"type":14},"Access Control","access-control",{"name":5862,"slug":5863,"type":14},"iMessage","imessage",{"name":5865,"slug":5866,"type":14},"Messaging","messaging","2026-04-12T04:54:55.917969",{"slug":5869,"name":5869,"fn":5870,"description":5871,"org":5872,"tags":5873,"stars":24,"repoUrl":25,"updatedAt":5878},"agent-development","develop and configure AI agents","This skill should be used when the user asks to \"create an agent\", \"add an agent\", \"write a subagent\", \"agent frontmatter\", \"when to use description\", \"agent examples\", \"agent tools\", \"agent colors\", \"autonomous agent\", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5874,5875,5876,5877],{"name":5720,"slug":5721,"type":14},{"name":9,"slug":8,"type":14},{"name":2418,"slug":2415,"type":14},{"name":19,"slug":20,"type":14},"2026-04-10T04:55:41.251084",{"slug":5880,"name":5880,"fn":5881,"description":5882,"org":5883,"tags":5884,"stars":24,"repoUrl":25,"updatedAt":5890},"build-mcp-app","build MCP apps with interactive UI","This skill should be used when the user wants to build an \"MCP app\", add \"interactive UI\" or \"widgets\" to an MCP server, \"render components in chat\", build \"MCP UI resources\", make a tool that shows a \"form\", \"picker\", \"dashboard\" or \"confirmation dialog\" inline in the conversation, or mentions \"apps SDK\" in the context of MCP. Use AFTER the build-mcp-server skill has settled the deployment model, or when the user already knows they want UI widgets.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5885,5886,5888,5889],{"name":5720,"slug":5721,"type":14},{"name":5887,"slug":30,"type":14},"Claude Code",{"name":5810,"slug":31,"type":14},{"name":5781,"slug":5782,"type":14},"2026-04-06T17:59:32.421865",{"slug":5892,"name":5892,"fn":5800,"description":5893,"org":5894,"tags":5895,"stars":24,"repoUrl":25,"updatedAt":5900},"build-mcp-server","This skill should be used when the user asks to \"build an MCP server\", \"create an MCP\", \"make an MCP integration\", \"wrap an API for Claude\", \"expose tools to Claude\", \"make an MCP app\", or discusses building something with the Model Context Protocol. It is the entry point for MCP server development — it interrogates the user about their use case, determines the right deployment model (remote HTTP, MCPB, local stdio), picks a tool-design pattern, and hands off to specialized skills.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5896,5897,5898,5899],{"name":5720,"slug":5721,"type":14},{"name":5806,"slug":5807,"type":14},{"name":5887,"slug":30,"type":14},{"name":5810,"slug":31,"type":14},"2026-04-06T17:59:33.744601",{"slug":5902,"name":5902,"fn":5903,"description":5904,"org":5905,"tags":5906,"stars":24,"repoUrl":25,"updatedAt":5913},"build-mcpb","package and distribute MCP servers","This skill should be used when the user wants to \"package an MCP server\", \"bundle an MCP\", \"make an MCPB\", \"ship a local MCP server\", \"distribute a local MCP\", discusses \".mcpb files\", mentions bundling a Node or Python runtime with their MCP server, or needs an MCP server that interacts with the local filesystem, desktop apps, or OS and must be installable without the user having Node\u002FPython set up.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5907,5908,5909,5910],{"name":5720,"slug":5721,"type":14},{"name":5887,"slug":30,"type":14},{"name":5810,"slug":31,"type":14},{"name":5911,"slug":5912,"type":14},"Packaging","packaging","2026-04-06T17:59:31.159961",{"slug":5915,"name":5915,"fn":5916,"description":5917,"org":5918,"tags":5919,"stars":24,"repoUrl":25,"updatedAt":5932},"cardputer-buddy","develop MicroPython apps for Cardputer","Iterate on the Cardputer-Adv MicroPython app bundle (Claude Buddy, Snake, Hello) after the device is already provisioned via m5-onboard. Use when the user wants to add a new app, push a single changed .py without re-flashing, watch device serial logs, or run a one-shot REPL command. Trigger on \"add an app\", \"push to the cardputer\", \"tail the device\", \"run on the device\", or follow-up work after \u002Fmaker-setup.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5920,5923,5926,5929],{"name":5921,"slug":5922,"type":14},"Hardware","hardware",{"name":5924,"slug":5925,"type":14},"M5Stack","m5stack",{"name":5927,"slug":5928,"type":14},"MicroPython","micropython",{"name":5930,"slug":5931,"type":14},"Python","python","2026-05-06T05:39:00.134385",{"slug":5934,"name":5934,"fn":5935,"description":5936,"org":5937,"tags":5938,"stars":24,"repoUrl":25,"updatedAt":5944},"claude-automation-recommender","recommend Claude Code automations","Analyze a codebase and recommend Claude Code automations (hooks, subagents, skills, plugins, MCP servers). Use when user asks for automation recommendations, wants to optimize their Claude Code setup, mentions improving Claude Code workflows, asks how to first set up Claude Code for a project, or wants to know what Claude Code features they should use.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[5939,5942,5943],{"name":5940,"slug":5941,"type":14},"Agent Context","agent-context",{"name":5887,"slug":30,"type":14},{"name":5810,"slug":31,"type":14},"2026-04-06T18:00:34.049624",25]