[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-anthropic-create-cowork-plugin":3,"mdc-4x1yqt-key":31,"related-org-anthropic-create-cowork-plugin":2273,"related-repo-anthropic-create-cowork-plugin":2460},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":20,"repoUrl":21,"updatedAt":22,"license":23,"forks":24,"topics":25,"repo":26,"sourceUrl":29,"mdContent":30},"create-cowork-plugin","create Claude Code plugins","Guide users through creating a new plugin from scratch in a cowork session. Use when users want to create a plugin, build a plugin, make a new plugin, develop a plugin, scaffold a plugin, start a plugin from scratch, or design a plugin. This skill requires Cowork mode with access to the outputs directory for delivering the final .plugin file.\n",{"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,17],{"name":14,"slug":15,"type":16},"Claude Code","claude-code","tag",{"name":18,"slug":19,"type":16},"Plugin Development","plugin-development",22885,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fknowledge-work-plugins","2026-04-06T18:00:35.478752",null,2736,[],{"repoUrl":21,"stars":20,"forks":24,"topics":27,"description":28},[],"Open source repository of plugins primarily intended for knowledge workers to use in Claude Cowork","https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fknowledge-work-plugins\u002Ftree\u002FHEAD\u002Fcowork-plugin-management\u002Fskills\u002Fcreate-cowork-plugin","---\nname: create-cowork-plugin\ndescription: >\n  Guide users through creating a new plugin from scratch in a cowork session.\n  Use when users want to create a plugin, build a plugin, make a new plugin, develop a plugin, scaffold a plugin, start a plugin from scratch, or design a plugin.\n  This skill requires Cowork mode with access to the outputs directory for delivering the final .plugin file.\ncompatibility: Requires Cowork desktop app environment with access to the outputs directory for delivering .plugin files.\n---\n\n# Create Cowork Plugin\n\nBuild a new plugin from scratch through guided conversation. Walk the user through discovery, planning, design, implementation, and packaging — delivering a ready-to-install `.plugin` file at the end.\n\n## Overview\n\nA plugin is a self-contained directory that extends Claude's capabilities with skills, agents, hooks, and MCP server integrations. This skill encodes the full plugin architecture and a five-phase workflow for creating one conversationally.\n\nThe process:\n\n1. **Discovery** — understand what the user wants to build\n2. **Component Planning** — determine which component types are needed\n3. **Design & Clarifying Questions** — specify each component in detail\n4. **Implementation** — create all plugin files\n5. **Review & Package** — deliver the `.plugin` file\n\n> **Nontechnical output**: Keep all user-facing conversation in plain language. Do not expose implementation details like file paths, directory structures, or schema fields unless the user asks. Frame everything in terms of what the plugin will do.\n\n## Plugin Architecture\n\n### Directory Structure\n\nEvery plugin follows this layout:\n\n```\nplugin-name\u002F\n├── .claude-plugin\u002F\n│   └── plugin.json           # Required: plugin manifest\n├── skills\u002F                   # Skills (subdirectories with SKILL.md)\n│   └── skill-name\u002F\n│       ├── SKILL.md\n│       └── references\u002F\n├── agents\u002F                   # Subagent definitions (.md files)\n├── .mcp.json                 # MCP server definitions\n└── README.md                 # Plugin documentation\n```\n\n> **Legacy `commands\u002F` format**: Older plugins may include a `commands\u002F` directory with single-file `.md` slash commands. This format still works, but new plugins should use `skills\u002F*\u002FSKILL.md` instead — the Cowork UI presents both as a single \"Skills\" concept, and the skills format supports progressive disclosure via `references\u002F`.\n\n**Rules:**\n\n- `.claude-plugin\u002Fplugin.json` is always required\n- Component directories (`skills\u002F`, `agents\u002F`) go at the plugin root, not inside `.claude-plugin\u002F`\n- Only create directories for components the plugin actually uses\n- Use kebab-case for all directory and file names\n\n### plugin.json Manifest\n\nLocated at `.claude-plugin\u002Fplugin.json`. Minimal required field is `name`.\n\n```json\n{\n  \"name\": \"plugin-name\",\n  \"version\": \"0.1.0\",\n  \"description\": \"Brief explanation of plugin purpose\",\n  \"author\": {\n    \"name\": \"Author Name\"\n  }\n}\n```\n\n**Name rules:** kebab-case, lowercase with hyphens, no spaces or special characters.\n**Version:** semver format (MAJOR.MINOR.PATCH). Start at `0.1.0`.\n\nOptional fields: `homepage`, `repository`, `license`, `keywords`.\n\nCustom component paths can be specified (supplements, does not replace, auto-discovery):\n\n```json\n{\n  \"commands\": \".\u002Fcustom-commands\",\n  \"agents\": [\".\u002Fagents\", \".\u002Fspecialized-agents\"],\n  \"hooks\": \".\u002Fconfig\u002Fhooks.json\",\n  \"mcpServers\": \".\u002F.mcp.json\"\n}\n```\n\n### Component Schemas\n\nDetailed schemas for each component type are in `references\u002Fcomponent-schemas.md`. Summary:\n\n| Component                          | Location            | Format                      |\n| ---------------------------------- | ------------------- | --------------------------- |\n| Skills                             | `skills\u002F*\u002FSKILL.md` | Markdown + YAML frontmatter |\n| MCP Servers                        | `.mcp.json`         | JSON                        |\n| Agents (uncommonly used in Cowork) | `agents\u002F*.md`       | Markdown + YAML frontmatter |\n| Hooks (rarely used in Cowork)      | `hooks\u002Fhooks.json`  | JSON                        |\n| Commands (legacy)                  | `commands\u002F*.md`     | Markdown + YAML frontmatter |\n\nThis schema is shared with Claude Code's plugin system, but you're creating a plugin for Claude Cowork, a desktop app for doing knowledge work.\nCowork users will usually find skills the most useful. **Scaffold new plugins with `skills\u002F*\u002FSKILL.md` — do not create `commands\u002F` unless the user explicitly needs the legacy single-file format.**\n\n### Customizable plugins with `~~` placeholders\n\n> **Do not use or ask about this pattern by default.** Only introduce `~~` placeholders if the user explicitly says they want people outside their organization to use the plugin.\n> You can mention this is an option if it seems like the user wants to distribute the plugin externally, but do not proactively ask about this with AskUserQuestion.\n\nWhen a plugin is intended to be shared with others outside their company, it might have parts that need to be adapted to individual users.\nYou might need to reference external tools by category rather than specific product (e.g., \"project tracker\" instead of \"Jira\").\nWhen sharing is needed, use generic language and mark these as requiring customization with two tilde characters such as `create an issue in ~~project tracker`.\nIf used any tool categories, write a `CONNECTORS.md` file at the plugin root to explain:\n\n```markdown\n# Connectors\n\n## How tool references work\n\nPlugin files use `~~category` as a placeholder for whatever tool the user\nconnects in that category. Plugins are tool-agnostic — they describe\nworkflows in terms of categories rather than specific products.\n\n## Connectors for this plugin\n\n| Category        | Placeholder         | Options                         |\n| --------------- | ------------------- | ------------------------------- |\n| Chat            | `~~chat`            | Slack, Microsoft Teams, Discord |\n| Project tracker | `~~project tracker` | Linear, Asana, Jira             |\n```\n\n### ${CLAUDE_PLUGIN_ROOT} Variable\n\nUse `${CLAUDE_PLUGIN_ROOT}` for all intra-plugin path references in hooks and MCP configs. Never hardcode absolute paths.\n\n## Guided Workflow\n\nWhen you ask the user something, use AskUserQuestion. Don't assume \"industry standard\" defaults are correct. Note: AskUserQuestion always includes a Skip button and a free-text input box for custom answers, so do not include `None` or `Other` as options.\n\n### Phase 1: Discovery\n\n**Goal**: Understand what the user wants to build and why.\n\nAsk (only what is unclear — skip questions if the user's initial request already answers them):\n\n- What should this plugin do? What problem does it solve?\n- Who will use it and in what context?\n- Does it integrate with any external tools or services?\n- Is there a similar plugin or workflow to reference?\n\nSummarize understanding and confirm before proceeding.\n\n**Output**: Clear statement of plugin purpose and scope.\n\n### Phase 2: Component Planning\n\n**Goal**: Determine which component types the plugin needs.\n\nBased on the discovery answers, determine:\n\n- **Skills** — Does it need specialized knowledge that Claude should load on-demand, or user-initiated actions? (domain expertise, reference schemas, workflow guides, deploy\u002Fconfigure\u002Fanalyze\u002Freview actions)\n- **MCP Servers** — Does it need external service integration? (databases, APIs, SaaS tools)\n- **Agents (uncommon)** — Are there autonomous multi-step tasks? (validation, generation, analysis)\n- **Hooks (rare)** — Should something happen automatically on certain events? (enforce policies, load context, validate operations)\n\nPresent a component plan table, including component types you decided not to create:\n\n```\n| Component | Count | Purpose |\n|-----------|-------|---------|\n| Skills    | 3     | Domain knowledge for X, \u002Fdo-thing, \u002Fcheck-thing |\n| Agents    | 0     | Not needed |\n| Hooks     | 1     | Validate writes |\n| MCP       | 1     | Connect to service Y |\n```\n\nGet user confirmation or adjustments before proceeding.\n\n**Output**: Confirmed list of components to create.\n\n### Phase 3: Design & Clarifying Questions\n\n**Goal**: Specify each component in detail. Resolve all ambiguities before implementation.\n\nFor each component type in the plan, ask targeted design questions. Present questions grouped by component type. Wait for answers before proceeding.\n\n**Skills:**\n\n- What user queries should trigger this skill?\n- What knowledge domains does it cover?\n- Should it include reference files for detailed content?\n- If the skill represents a user-initiated action: what arguments does it accept, and what tools does it need? (Read, Write, Bash, Grep, etc.)\n\n**Agents:**\n\n- Should each agent trigger proactively or only when requested?\n- What tools does it need?\n- What should the output format be?\n\n**Hooks:**\n\n- Which events? (PreToolUse, PostToolUse, Stop, SessionStart, etc.)\n- What behavior — validate, block, modify, add context?\n- Prompt-based (LLM-driven) or command-based (deterministic script)?\n\n**MCP Servers:**\n\n- What server type? (stdio for local, SSE for hosted with OAuth, HTTP for REST APIs)\n- What authentication method?\n- What tools should be exposed?\n\nIf the user says \"whatever you think is best,\" provide specific recommendations and get explicit confirmation.\n\n**Output**: Detailed specification for every component.\n\n### Phase 4: Implementation\n\n**Goal**: Create all plugin files following best practices.\n\n**Order of operations:**\n\n1. Create the plugin directory structure\n2. Create `plugin.json` manifest\n3. Create each component (see `references\u002Fcomponent-schemas.md` for exact formats)\n4. Create `README.md` documenting the plugin\n\n**Implementation guidelines:**\n\n- **Skills** use progressive disclosure: lean SKILL.md body (under 3,000 words), detailed content in `references\u002F`. Frontmatter description must be third-person with specific trigger phrases. Skill bodies are instructions FOR Claude, not messages to the user — write them as directives about what to do.\n- **Agents** need a description with `\u003Cexample>` blocks showing triggering conditions, plus a system prompt in the markdown body.\n- **Hooks** config goes in `hooks\u002Fhooks.json`. Use `${CLAUDE_PLUGIN_ROOT}` for script paths. Prefer prompt-based hooks for complex logic.\n- **MCP configs** go in `.mcp.json` at plugin root. Use `${CLAUDE_PLUGIN_ROOT}` for local server paths. Document required env vars in README.\n\n### Phase 5: Review & Package\n\n**Goal**: Deliver the finished plugin.\n\n1. Summarize what was created — list each component and its purpose\n2. Ask if the user wants any adjustments\n3. Run `claude plugin validate \u003Cpath-to-plugin-json>` to check the plugin structure. If this command is unavailable (e.g., when running inside Cowork), verify the structure manually:\n   - `.claude-plugin\u002Fplugin.json` exists and contains valid JSON with at least a `name` field\n   - The `name` field is kebab-case (lowercase letters, numbers, and hyphens only)\n   - Any component directories referenced by the plugin (`commands\u002F`, `skills\u002F`, `agents\u002F`, `hooks\u002F`) actually exist and contain files in the expected formats — `.md` for commands\u002Fskills\u002Fagents, `.json` for hooks\n   - Each skill subdirectory contains a `SKILL.md`\n   - Report what passed and what didn't, the same way the CLI validator would\n\n   Fix any errors before proceeding.\n4. Package as a `.plugin` file:\n\n```bash\ncd \u002Fpath\u002Fto\u002Fplugin-dir && zip -r \u002Ftmp\u002Fplugin-name.plugin . -x \"*.DS_Store\" && cp \u002Ftmp\u002Fplugin-name.plugin \u002Fpath\u002Fto\u002Foutputs\u002Fplugin-name.plugin\n```\n\n> **Important**: Always create the zip in `\u002Ftmp\u002F` first, then copy to the outputs folder. Writing directly to the outputs folder may fail due to permissions.\n\n> **Naming**: Use the plugin name from `plugin.json` for the `.plugin` file (e.g., if name is `code-reviewer`, output `code-reviewer.plugin`).\n\nThe `.plugin` file will appear in the chat as a rich preview where the user can browse the files and accept the plugin by pressing a button.\n\n## Best Practices\n\n- **Start small**: Begin with the minimum viable set of components. A plugin with one well-crafted skill is more useful than one with five half-baked components.\n- **Progressive disclosure for skills**: Core knowledge in SKILL.md, detailed reference material in `references\u002F`, working examples in `examples\u002F`.\n- **Clear trigger phrases**: Skill descriptions should include specific phrases users would say. Agent descriptions should include `\u003Cexample>` blocks.\n- **Skills are for Claude**: Write skill body content as instructions for Claude to follow, not documentation for the user to read.\n- **Imperative writing style**: Use verb-first instructions in skills (\"Parse the config file,\" not \"You should parse the config file\").\n- **Portability**: Always use `${CLAUDE_PLUGIN_ROOT}` for intra-plugin paths, never hardcoded paths.\n- **Security**: Use environment variables for credentials, HTTPS for remote servers, least-privilege tool access.\n\n## Additional Resources\n\n- **`references\u002Fcomponent-schemas.md`** — Detailed format specifications for every component type (skills, agents, hooks, MCP, legacy commands, CONNECTORS.md)\n- **`references\u002Fexample-plugins.md`** — Three complete example plugin structures at different complexity levels\n",{"data":32,"body":34},{"name":4,"description":6,"compatibility":33},"Requires Cowork desktop app environment with access to the outputs directory for delivering .plugin files.",{"type":35,"children":36},"root",[37,45,60,67,72,77,140,154,160,167,172,184,236,244,296,302,321,542,565,598,603,792,798,811,950,974,988,1008,1029,1314,1320,1333,1339,1360,1366,1376,1381,1404,1409,1419,1425,1434,1439,1480,1485,1494,1499,1508,1514,1523,1528,1536,1559,1567,1585,1593,1611,1619,1637,1642,1651,1657,1666,1674,1719,1727,1812,1818,1827,1965,2049,2070,2113,2124,2130,2231,2237,2267],{"type":38,"tag":39,"props":40,"children":41},"element","h1",{"id":4},[42],{"type":43,"value":44},"text","Create Cowork Plugin",{"type":38,"tag":46,"props":47,"children":48},"p",{},[49,51,58],{"type":43,"value":50},"Build a new plugin from scratch through guided conversation. Walk the user through discovery, planning, design, implementation, and packaging — delivering a ready-to-install ",{"type":38,"tag":52,"props":53,"children":55},"code",{"className":54},[],[56],{"type":43,"value":57},".plugin",{"type":43,"value":59}," file at the end.",{"type":38,"tag":61,"props":62,"children":64},"h2",{"id":63},"overview",[65],{"type":43,"value":66},"Overview",{"type":38,"tag":46,"props":68,"children":69},{},[70],{"type":43,"value":71},"A plugin is a self-contained directory that extends Claude's capabilities with skills, agents, hooks, and MCP server integrations. This skill encodes the full plugin architecture and a five-phase workflow for creating one conversationally.",{"type":38,"tag":46,"props":73,"children":74},{},[75],{"type":43,"value":76},"The process:",{"type":38,"tag":78,"props":79,"children":80},"ol",{},[81,93,103,113,123],{"type":38,"tag":82,"props":83,"children":84},"li",{},[85,91],{"type":38,"tag":86,"props":87,"children":88},"strong",{},[89],{"type":43,"value":90},"Discovery",{"type":43,"value":92}," — understand what the user wants to build",{"type":38,"tag":82,"props":94,"children":95},{},[96,101],{"type":38,"tag":86,"props":97,"children":98},{},[99],{"type":43,"value":100},"Component Planning",{"type":43,"value":102}," — determine which component types are needed",{"type":38,"tag":82,"props":104,"children":105},{},[106,111],{"type":38,"tag":86,"props":107,"children":108},{},[109],{"type":43,"value":110},"Design & Clarifying Questions",{"type":43,"value":112}," — specify each component in detail",{"type":38,"tag":82,"props":114,"children":115},{},[116,121],{"type":38,"tag":86,"props":117,"children":118},{},[119],{"type":43,"value":120},"Implementation",{"type":43,"value":122}," — create all plugin files",{"type":38,"tag":82,"props":124,"children":125},{},[126,131,133,138],{"type":38,"tag":86,"props":127,"children":128},{},[129],{"type":43,"value":130},"Review & Package",{"type":43,"value":132}," — deliver the ",{"type":38,"tag":52,"props":134,"children":136},{"className":135},[],[137],{"type":43,"value":57},{"type":43,"value":139}," file",{"type":38,"tag":141,"props":142,"children":143},"blockquote",{},[144],{"type":38,"tag":46,"props":145,"children":146},{},[147,152],{"type":38,"tag":86,"props":148,"children":149},{},[150],{"type":43,"value":151},"Nontechnical output",{"type":43,"value":153},": Keep all user-facing conversation in plain language. Do not expose implementation details like file paths, directory structures, or schema fields unless the user asks. Frame everything in terms of what the plugin will do.",{"type":38,"tag":61,"props":155,"children":157},{"id":156},"plugin-architecture",[158],{"type":43,"value":159},"Plugin Architecture",{"type":38,"tag":161,"props":162,"children":164},"h3",{"id":163},"directory-structure",[165],{"type":43,"value":166},"Directory Structure",{"type":38,"tag":46,"props":168,"children":169},{},[170],{"type":43,"value":171},"Every plugin follows this layout:",{"type":38,"tag":173,"props":174,"children":178},"pre",{"className":175,"code":177,"language":43},[176],"language-text","plugin-name\u002F\n├── .claude-plugin\u002F\n│   └── plugin.json           # Required: plugin manifest\n├── skills\u002F                   # Skills (subdirectories with SKILL.md)\n│   └── skill-name\u002F\n│       ├── SKILL.md\n│       └── references\u002F\n├── agents\u002F                   # Subagent definitions (.md files)\n├── .mcp.json                 # MCP server definitions\n└── README.md                 # Plugin documentation\n",[179],{"type":38,"tag":52,"props":180,"children":182},{"__ignoreMap":181},"",[183],{"type":43,"value":177},{"type":38,"tag":141,"props":185,"children":186},{},[187],{"type":38,"tag":46,"props":188,"children":189},{},[190,203,205,210,212,218,220,226,228,234],{"type":38,"tag":86,"props":191,"children":192},{},[193,195,201],{"type":43,"value":194},"Legacy ",{"type":38,"tag":52,"props":196,"children":198},{"className":197},[],[199],{"type":43,"value":200},"commands\u002F",{"type":43,"value":202}," format",{"type":43,"value":204},": Older plugins may include a ",{"type":38,"tag":52,"props":206,"children":208},{"className":207},[],[209],{"type":43,"value":200},{"type":43,"value":211}," directory with single-file ",{"type":38,"tag":52,"props":213,"children":215},{"className":214},[],[216],{"type":43,"value":217},".md",{"type":43,"value":219}," slash commands. This format still works, but new plugins should use ",{"type":38,"tag":52,"props":221,"children":223},{"className":222},[],[224],{"type":43,"value":225},"skills\u002F*\u002FSKILL.md",{"type":43,"value":227}," instead — the Cowork UI presents both as a single \"Skills\" concept, and the skills format supports progressive disclosure via ",{"type":38,"tag":52,"props":229,"children":231},{"className":230},[],[232],{"type":43,"value":233},"references\u002F",{"type":43,"value":235},".",{"type":38,"tag":46,"props":237,"children":238},{},[239],{"type":38,"tag":86,"props":240,"children":241},{},[242],{"type":43,"value":243},"Rules:",{"type":38,"tag":245,"props":246,"children":247},"ul",{},[248,259,286,291],{"type":38,"tag":82,"props":249,"children":250},{},[251,257],{"type":38,"tag":52,"props":252,"children":254},{"className":253},[],[255],{"type":43,"value":256},".claude-plugin\u002Fplugin.json",{"type":43,"value":258}," is always required",{"type":38,"tag":82,"props":260,"children":261},{},[262,264,270,272,278,280],{"type":43,"value":263},"Component directories (",{"type":38,"tag":52,"props":265,"children":267},{"className":266},[],[268],{"type":43,"value":269},"skills\u002F",{"type":43,"value":271},", ",{"type":38,"tag":52,"props":273,"children":275},{"className":274},[],[276],{"type":43,"value":277},"agents\u002F",{"type":43,"value":279},") go at the plugin root, not inside ",{"type":38,"tag":52,"props":281,"children":283},{"className":282},[],[284],{"type":43,"value":285},".claude-plugin\u002F",{"type":38,"tag":82,"props":287,"children":288},{},[289],{"type":43,"value":290},"Only create directories for components the plugin actually uses",{"type":38,"tag":82,"props":292,"children":293},{},[294],{"type":43,"value":295},"Use kebab-case for all directory and file names",{"type":38,"tag":161,"props":297,"children":299},{"id":298},"pluginjson-manifest",[300],{"type":43,"value":301},"plugin.json Manifest",{"type":38,"tag":46,"props":303,"children":304},{},[305,307,312,314,320],{"type":43,"value":306},"Located at ",{"type":38,"tag":52,"props":308,"children":310},{"className":309},[],[311],{"type":43,"value":256},{"type":43,"value":313},". Minimal required field is ",{"type":38,"tag":52,"props":315,"children":317},{"className":316},[],[318],{"type":43,"value":319},"name",{"type":43,"value":235},{"type":38,"tag":173,"props":322,"children":326},{"className":323,"code":324,"language":325,"meta":181,"style":181},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"name\": \"plugin-name\",\n  \"version\": \"0.1.0\",\n  \"description\": \"Brief explanation of plugin purpose\",\n  \"author\": {\n    \"name\": \"Author Name\"\n  }\n}\n","json",[327],{"type":38,"tag":52,"props":328,"children":329},{"__ignoreMap":181},[330,342,386,424,462,488,524,533],{"type":38,"tag":331,"props":332,"children":335},"span",{"class":333,"line":334},"line",1,[336],{"type":38,"tag":331,"props":337,"children":339},{"style":338},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[340],{"type":43,"value":341},"{\n",{"type":38,"tag":331,"props":343,"children":345},{"class":333,"line":344},2,[346,351,356,361,366,371,377,381],{"type":38,"tag":331,"props":347,"children":348},{"style":338},[349],{"type":43,"value":350},"  \"",{"type":38,"tag":331,"props":352,"children":354},{"style":353},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[355],{"type":43,"value":319},{"type":38,"tag":331,"props":357,"children":358},{"style":338},[359],{"type":43,"value":360},"\"",{"type":38,"tag":331,"props":362,"children":363},{"style":338},[364],{"type":43,"value":365},":",{"type":38,"tag":331,"props":367,"children":368},{"style":338},[369],{"type":43,"value":370}," \"",{"type":38,"tag":331,"props":372,"children":374},{"style":373},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[375],{"type":43,"value":376},"plugin-name",{"type":38,"tag":331,"props":378,"children":379},{"style":338},[380],{"type":43,"value":360},{"type":38,"tag":331,"props":382,"children":383},{"style":338},[384],{"type":43,"value":385},",\n",{"type":38,"tag":331,"props":387,"children":389},{"class":333,"line":388},3,[390,394,399,403,407,411,416,420],{"type":38,"tag":331,"props":391,"children":392},{"style":338},[393],{"type":43,"value":350},{"type":38,"tag":331,"props":395,"children":396},{"style":353},[397],{"type":43,"value":398},"version",{"type":38,"tag":331,"props":400,"children":401},{"style":338},[402],{"type":43,"value":360},{"type":38,"tag":331,"props":404,"children":405},{"style":338},[406],{"type":43,"value":365},{"type":38,"tag":331,"props":408,"children":409},{"style":338},[410],{"type":43,"value":370},{"type":38,"tag":331,"props":412,"children":413},{"style":373},[414],{"type":43,"value":415},"0.1.0",{"type":38,"tag":331,"props":417,"children":418},{"style":338},[419],{"type":43,"value":360},{"type":38,"tag":331,"props":421,"children":422},{"style":338},[423],{"type":43,"value":385},{"type":38,"tag":331,"props":425,"children":427},{"class":333,"line":426},4,[428,432,437,441,445,449,454,458],{"type":38,"tag":331,"props":429,"children":430},{"style":338},[431],{"type":43,"value":350},{"type":38,"tag":331,"props":433,"children":434},{"style":353},[435],{"type":43,"value":436},"description",{"type":38,"tag":331,"props":438,"children":439},{"style":338},[440],{"type":43,"value":360},{"type":38,"tag":331,"props":442,"children":443},{"style":338},[444],{"type":43,"value":365},{"type":38,"tag":331,"props":446,"children":447},{"style":338},[448],{"type":43,"value":370},{"type":38,"tag":331,"props":450,"children":451},{"style":373},[452],{"type":43,"value":453},"Brief explanation of plugin purpose",{"type":38,"tag":331,"props":455,"children":456},{"style":338},[457],{"type":43,"value":360},{"type":38,"tag":331,"props":459,"children":460},{"style":338},[461],{"type":43,"value":385},{"type":38,"tag":331,"props":463,"children":465},{"class":333,"line":464},5,[466,470,475,479,483],{"type":38,"tag":331,"props":467,"children":468},{"style":338},[469],{"type":43,"value":350},{"type":38,"tag":331,"props":471,"children":472},{"style":353},[473],{"type":43,"value":474},"author",{"type":38,"tag":331,"props":476,"children":477},{"style":338},[478],{"type":43,"value":360},{"type":38,"tag":331,"props":480,"children":481},{"style":338},[482],{"type":43,"value":365},{"type":38,"tag":331,"props":484,"children":485},{"style":338},[486],{"type":43,"value":487}," {\n",{"type":38,"tag":331,"props":489,"children":491},{"class":333,"line":490},6,[492,497,502,506,510,514,519],{"type":38,"tag":331,"props":493,"children":494},{"style":338},[495],{"type":43,"value":496},"    \"",{"type":38,"tag":331,"props":498,"children":500},{"style":499},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[501],{"type":43,"value":319},{"type":38,"tag":331,"props":503,"children":504},{"style":338},[505],{"type":43,"value":360},{"type":38,"tag":331,"props":507,"children":508},{"style":338},[509],{"type":43,"value":365},{"type":38,"tag":331,"props":511,"children":512},{"style":338},[513],{"type":43,"value":370},{"type":38,"tag":331,"props":515,"children":516},{"style":373},[517],{"type":43,"value":518},"Author Name",{"type":38,"tag":331,"props":520,"children":521},{"style":338},[522],{"type":43,"value":523},"\"\n",{"type":38,"tag":331,"props":525,"children":527},{"class":333,"line":526},7,[528],{"type":38,"tag":331,"props":529,"children":530},{"style":338},[531],{"type":43,"value":532},"  }\n",{"type":38,"tag":331,"props":534,"children":536},{"class":333,"line":535},8,[537],{"type":38,"tag":331,"props":538,"children":539},{"style":338},[540],{"type":43,"value":541},"}\n",{"type":38,"tag":46,"props":543,"children":544},{},[545,550,552,557,559,564],{"type":38,"tag":86,"props":546,"children":547},{},[548],{"type":43,"value":549},"Name rules:",{"type":43,"value":551}," kebab-case, lowercase with hyphens, no spaces or special characters.\n",{"type":38,"tag":86,"props":553,"children":554},{},[555],{"type":43,"value":556},"Version:",{"type":43,"value":558}," semver format (MAJOR.MINOR.PATCH). Start at ",{"type":38,"tag":52,"props":560,"children":562},{"className":561},[],[563],{"type":43,"value":415},{"type":43,"value":235},{"type":38,"tag":46,"props":566,"children":567},{},[568,570,576,577,583,584,590,591,597],{"type":43,"value":569},"Optional fields: ",{"type":38,"tag":52,"props":571,"children":573},{"className":572},[],[574],{"type":43,"value":575},"homepage",{"type":43,"value":271},{"type":38,"tag":52,"props":578,"children":580},{"className":579},[],[581],{"type":43,"value":582},"repository",{"type":43,"value":271},{"type":38,"tag":52,"props":585,"children":587},{"className":586},[],[588],{"type":43,"value":589},"license",{"type":43,"value":271},{"type":38,"tag":52,"props":592,"children":594},{"className":593},[],[595],{"type":43,"value":596},"keywords",{"type":43,"value":235},{"type":38,"tag":46,"props":599,"children":600},{},[601],{"type":43,"value":602},"Custom component paths can be specified (supplements, does not replace, auto-discovery):",{"type":38,"tag":173,"props":604,"children":606},{"className":323,"code":605,"language":325,"meta":181,"style":181},"{\n  \"commands\": \".\u002Fcustom-commands\",\n  \"agents\": [\".\u002Fagents\", \".\u002Fspecialized-agents\"],\n  \"hooks\": \".\u002Fconfig\u002Fhooks.json\",\n  \"mcpServers\": \".\u002F.mcp.json\"\n}\n",[607],{"type":38,"tag":52,"props":608,"children":609},{"__ignoreMap":181},[610,617,654,715,752,785],{"type":38,"tag":331,"props":611,"children":612},{"class":333,"line":334},[613],{"type":38,"tag":331,"props":614,"children":615},{"style":338},[616],{"type":43,"value":341},{"type":38,"tag":331,"props":618,"children":619},{"class":333,"line":344},[620,624,629,633,637,641,646,650],{"type":38,"tag":331,"props":621,"children":622},{"style":338},[623],{"type":43,"value":350},{"type":38,"tag":331,"props":625,"children":626},{"style":353},[627],{"type":43,"value":628},"commands",{"type":38,"tag":331,"props":630,"children":631},{"style":338},[632],{"type":43,"value":360},{"type":38,"tag":331,"props":634,"children":635},{"style":338},[636],{"type":43,"value":365},{"type":38,"tag":331,"props":638,"children":639},{"style":338},[640],{"type":43,"value":370},{"type":38,"tag":331,"props":642,"children":643},{"style":373},[644],{"type":43,"value":645},".\u002Fcustom-commands",{"type":38,"tag":331,"props":647,"children":648},{"style":338},[649],{"type":43,"value":360},{"type":38,"tag":331,"props":651,"children":652},{"style":338},[653],{"type":43,"value":385},{"type":38,"tag":331,"props":655,"children":656},{"class":333,"line":388},[657,661,666,670,674,679,683,688,692,697,701,706,710],{"type":38,"tag":331,"props":658,"children":659},{"style":338},[660],{"type":43,"value":350},{"type":38,"tag":331,"props":662,"children":663},{"style":353},[664],{"type":43,"value":665},"agents",{"type":38,"tag":331,"props":667,"children":668},{"style":338},[669],{"type":43,"value":360},{"type":38,"tag":331,"props":671,"children":672},{"style":338},[673],{"type":43,"value":365},{"type":38,"tag":331,"props":675,"children":676},{"style":338},[677],{"type":43,"value":678}," [",{"type":38,"tag":331,"props":680,"children":681},{"style":338},[682],{"type":43,"value":360},{"type":38,"tag":331,"props":684,"children":685},{"style":373},[686],{"type":43,"value":687},".\u002Fagents",{"type":38,"tag":331,"props":689,"children":690},{"style":338},[691],{"type":43,"value":360},{"type":38,"tag":331,"props":693,"children":694},{"style":338},[695],{"type":43,"value":696},",",{"type":38,"tag":331,"props":698,"children":699},{"style":338},[700],{"type":43,"value":370},{"type":38,"tag":331,"props":702,"children":703},{"style":373},[704],{"type":43,"value":705},".\u002Fspecialized-agents",{"type":38,"tag":331,"props":707,"children":708},{"style":338},[709],{"type":43,"value":360},{"type":38,"tag":331,"props":711,"children":712},{"style":338},[713],{"type":43,"value":714},"],\n",{"type":38,"tag":331,"props":716,"children":717},{"class":333,"line":426},[718,722,727,731,735,739,744,748],{"type":38,"tag":331,"props":719,"children":720},{"style":338},[721],{"type":43,"value":350},{"type":38,"tag":331,"props":723,"children":724},{"style":353},[725],{"type":43,"value":726},"hooks",{"type":38,"tag":331,"props":728,"children":729},{"style":338},[730],{"type":43,"value":360},{"type":38,"tag":331,"props":732,"children":733},{"style":338},[734],{"type":43,"value":365},{"type":38,"tag":331,"props":736,"children":737},{"style":338},[738],{"type":43,"value":370},{"type":38,"tag":331,"props":740,"children":741},{"style":373},[742],{"type":43,"value":743},".\u002Fconfig\u002Fhooks.json",{"type":38,"tag":331,"props":745,"children":746},{"style":338},[747],{"type":43,"value":360},{"type":38,"tag":331,"props":749,"children":750},{"style":338},[751],{"type":43,"value":385},{"type":38,"tag":331,"props":753,"children":754},{"class":333,"line":464},[755,759,764,768,772,776,781],{"type":38,"tag":331,"props":756,"children":757},{"style":338},[758],{"type":43,"value":350},{"type":38,"tag":331,"props":760,"children":761},{"style":353},[762],{"type":43,"value":763},"mcpServers",{"type":38,"tag":331,"props":765,"children":766},{"style":338},[767],{"type":43,"value":360},{"type":38,"tag":331,"props":769,"children":770},{"style":338},[771],{"type":43,"value":365},{"type":38,"tag":331,"props":773,"children":774},{"style":338},[775],{"type":43,"value":370},{"type":38,"tag":331,"props":777,"children":778},{"style":373},[779],{"type":43,"value":780},".\u002F.mcp.json",{"type":38,"tag":331,"props":782,"children":783},{"style":338},[784],{"type":43,"value":523},{"type":38,"tag":331,"props":786,"children":787},{"class":333,"line":490},[788],{"type":38,"tag":331,"props":789,"children":790},{"style":338},[791],{"type":43,"value":541},{"type":38,"tag":161,"props":793,"children":795},{"id":794},"component-schemas",[796],{"type":43,"value":797},"Component Schemas",{"type":38,"tag":46,"props":799,"children":800},{},[801,803,809],{"type":43,"value":802},"Detailed schemas for each component type are in ",{"type":38,"tag":52,"props":804,"children":806},{"className":805},[],[807],{"type":43,"value":808},"references\u002Fcomponent-schemas.md",{"type":43,"value":810},". Summary:",{"type":38,"tag":812,"props":813,"children":814},"table",{},[815,839],{"type":38,"tag":816,"props":817,"children":818},"thead",{},[819],{"type":38,"tag":820,"props":821,"children":822},"tr",{},[823,829,834],{"type":38,"tag":824,"props":825,"children":826},"th",{},[827],{"type":43,"value":828},"Component",{"type":38,"tag":824,"props":830,"children":831},{},[832],{"type":43,"value":833},"Location",{"type":38,"tag":824,"props":835,"children":836},{},[837],{"type":43,"value":838},"Format",{"type":38,"tag":840,"props":841,"children":842},"tbody",{},[843,865,887,908,929],{"type":38,"tag":820,"props":844,"children":845},{},[846,852,860],{"type":38,"tag":847,"props":848,"children":849},"td",{},[850],{"type":43,"value":851},"Skills",{"type":38,"tag":847,"props":853,"children":854},{},[855],{"type":38,"tag":52,"props":856,"children":858},{"className":857},[],[859],{"type":43,"value":225},{"type":38,"tag":847,"props":861,"children":862},{},[863],{"type":43,"value":864},"Markdown + YAML frontmatter",{"type":38,"tag":820,"props":866,"children":867},{},[868,873,882],{"type":38,"tag":847,"props":869,"children":870},{},[871],{"type":43,"value":872},"MCP Servers",{"type":38,"tag":847,"props":874,"children":875},{},[876],{"type":38,"tag":52,"props":877,"children":879},{"className":878},[],[880],{"type":43,"value":881},".mcp.json",{"type":38,"tag":847,"props":883,"children":884},{},[885],{"type":43,"value":886},"JSON",{"type":38,"tag":820,"props":888,"children":889},{},[890,895,904],{"type":38,"tag":847,"props":891,"children":892},{},[893],{"type":43,"value":894},"Agents (uncommonly used in Cowork)",{"type":38,"tag":847,"props":896,"children":897},{},[898],{"type":38,"tag":52,"props":899,"children":901},{"className":900},[],[902],{"type":43,"value":903},"agents\u002F*.md",{"type":38,"tag":847,"props":905,"children":906},{},[907],{"type":43,"value":864},{"type":38,"tag":820,"props":909,"children":910},{},[911,916,925],{"type":38,"tag":847,"props":912,"children":913},{},[914],{"type":43,"value":915},"Hooks (rarely used in Cowork)",{"type":38,"tag":847,"props":917,"children":918},{},[919],{"type":38,"tag":52,"props":920,"children":922},{"className":921},[],[923],{"type":43,"value":924},"hooks\u002Fhooks.json",{"type":38,"tag":847,"props":926,"children":927},{},[928],{"type":43,"value":886},{"type":38,"tag":820,"props":930,"children":931},{},[932,937,946],{"type":38,"tag":847,"props":933,"children":934},{},[935],{"type":43,"value":936},"Commands (legacy)",{"type":38,"tag":847,"props":938,"children":939},{},[940],{"type":38,"tag":52,"props":941,"children":943},{"className":942},[],[944],{"type":43,"value":945},"commands\u002F*.md",{"type":38,"tag":847,"props":947,"children":948},{},[949],{"type":43,"value":864},{"type":38,"tag":46,"props":951,"children":952},{},[953,955],{"type":43,"value":954},"This schema is shared with Claude Code's plugin system, but you're creating a plugin for Claude Cowork, a desktop app for doing knowledge work.\nCowork users will usually find skills the most useful. ",{"type":38,"tag":86,"props":956,"children":957},{},[958,960,965,967,972],{"type":43,"value":959},"Scaffold new plugins with ",{"type":38,"tag":52,"props":961,"children":963},{"className":962},[],[964],{"type":43,"value":225},{"type":43,"value":966}," — do not create ",{"type":38,"tag":52,"props":968,"children":970},{"className":969},[],[971],{"type":43,"value":200},{"type":43,"value":973}," unless the user explicitly needs the legacy single-file format.",{"type":38,"tag":161,"props":975,"children":977},{"id":976},"customizable-plugins-with-placeholders",[978,980,986],{"type":43,"value":979},"Customizable plugins with ",{"type":38,"tag":52,"props":981,"children":983},{"className":982},[],[984],{"type":43,"value":985},"~~",{"type":43,"value":987}," placeholders",{"type":38,"tag":141,"props":989,"children":990},{},[991],{"type":38,"tag":46,"props":992,"children":993},{},[994,999,1001,1006],{"type":38,"tag":86,"props":995,"children":996},{},[997],{"type":43,"value":998},"Do not use or ask about this pattern by default.",{"type":43,"value":1000}," Only introduce ",{"type":38,"tag":52,"props":1002,"children":1004},{"className":1003},[],[1005],{"type":43,"value":985},{"type":43,"value":1007}," placeholders if the user explicitly says they want people outside their organization to use the plugin.\nYou can mention this is an option if it seems like the user wants to distribute the plugin externally, but do not proactively ask about this with AskUserQuestion.",{"type":38,"tag":46,"props":1009,"children":1010},{},[1011,1013,1019,1021,1027],{"type":43,"value":1012},"When a plugin is intended to be shared with others outside their company, it might have parts that need to be adapted to individual users.\nYou might need to reference external tools by category rather than specific product (e.g., \"project tracker\" instead of \"Jira\").\nWhen sharing is needed, use generic language and mark these as requiring customization with two tilde characters such as ",{"type":38,"tag":52,"props":1014,"children":1016},{"className":1015},[],[1017],{"type":43,"value":1018},"create an issue in ~~project tracker",{"type":43,"value":1020},".\nIf used any tool categories, write a ",{"type":38,"tag":52,"props":1022,"children":1024},{"className":1023},[],[1025],{"type":43,"value":1026},"CONNECTORS.md",{"type":43,"value":1028}," file at the plugin root to explain:",{"type":38,"tag":173,"props":1030,"children":1034},{"className":1031,"code":1032,"language":1033,"meta":181,"style":181},"language-markdown shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Connectors\n\n## How tool references work\n\nPlugin files use `~~category` as a placeholder for whatever tool the user\nconnects in that category. Plugins are tool-agnostic — they describe\nworkflows in terms of categories rather than specific products.\n\n## Connectors for this plugin\n\n| Category        | Placeholder         | Options                         |\n| --------------- | ------------------- | ------------------------------- |\n| Chat            | `~~chat`            | Slack, Microsoft Teams, Discord |\n| Project tracker | `~~project tracker` | Linear, Asana, Jira             |\n","markdown",[1035],{"type":38,"tag":52,"props":1036,"children":1037},{"__ignoreMap":181},[1038,1051,1060,1073,1080,1108,1116,1124,1131,1144,1152,1189,1226,1271],{"type":38,"tag":331,"props":1039,"children":1040},{"class":333,"line":334},[1041,1046],{"type":38,"tag":331,"props":1042,"children":1043},{"style":338},[1044],{"type":43,"value":1045},"# ",{"type":38,"tag":331,"props":1047,"children":1048},{"style":499},[1049],{"type":43,"value":1050},"Connectors\n",{"type":38,"tag":331,"props":1052,"children":1053},{"class":333,"line":344},[1054],{"type":38,"tag":331,"props":1055,"children":1057},{"emptyLinePlaceholder":1056},true,[1058],{"type":43,"value":1059},"\n",{"type":38,"tag":331,"props":1061,"children":1062},{"class":333,"line":388},[1063,1068],{"type":38,"tag":331,"props":1064,"children":1065},{"style":338},[1066],{"type":43,"value":1067},"## ",{"type":38,"tag":331,"props":1069,"children":1070},{"style":499},[1071],{"type":43,"value":1072},"How tool references work\n",{"type":38,"tag":331,"props":1074,"children":1075},{"class":333,"line":426},[1076],{"type":38,"tag":331,"props":1077,"children":1078},{"emptyLinePlaceholder":1056},[1079],{"type":43,"value":1059},{"type":38,"tag":331,"props":1081,"children":1082},{"class":333,"line":464},[1083,1089,1094,1099,1103],{"type":38,"tag":331,"props":1084,"children":1086},{"style":1085},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[1087],{"type":43,"value":1088},"Plugin files use ",{"type":38,"tag":331,"props":1090,"children":1091},{"style":338},[1092],{"type":43,"value":1093},"`",{"type":38,"tag":331,"props":1095,"children":1096},{"style":373},[1097],{"type":43,"value":1098},"~~category",{"type":38,"tag":331,"props":1100,"children":1101},{"style":338},[1102],{"type":43,"value":1093},{"type":38,"tag":331,"props":1104,"children":1105},{"style":1085},[1106],{"type":43,"value":1107}," as a placeholder for whatever tool the user\n",{"type":38,"tag":331,"props":1109,"children":1110},{"class":333,"line":490},[1111],{"type":38,"tag":331,"props":1112,"children":1113},{"style":1085},[1114],{"type":43,"value":1115},"connects in that category. Plugins are tool-agnostic — they describe\n",{"type":38,"tag":331,"props":1117,"children":1118},{"class":333,"line":526},[1119],{"type":38,"tag":331,"props":1120,"children":1121},{"style":1085},[1122],{"type":43,"value":1123},"workflows in terms of categories rather than specific products.\n",{"type":38,"tag":331,"props":1125,"children":1126},{"class":333,"line":535},[1127],{"type":38,"tag":331,"props":1128,"children":1129},{"emptyLinePlaceholder":1056},[1130],{"type":43,"value":1059},{"type":38,"tag":331,"props":1132,"children":1134},{"class":333,"line":1133},9,[1135,1139],{"type":38,"tag":331,"props":1136,"children":1137},{"style":338},[1138],{"type":43,"value":1067},{"type":38,"tag":331,"props":1140,"children":1141},{"style":499},[1142],{"type":43,"value":1143},"Connectors for this plugin\n",{"type":38,"tag":331,"props":1145,"children":1147},{"class":333,"line":1146},10,[1148],{"type":38,"tag":331,"props":1149,"children":1150},{"emptyLinePlaceholder":1056},[1151],{"type":43,"value":1059},{"type":38,"tag":331,"props":1153,"children":1155},{"class":333,"line":1154},11,[1156,1161,1166,1170,1175,1179,1184],{"type":38,"tag":331,"props":1157,"children":1158},{"style":338},[1159],{"type":43,"value":1160},"|",{"type":38,"tag":331,"props":1162,"children":1163},{"style":1085},[1164],{"type":43,"value":1165}," Category        ",{"type":38,"tag":331,"props":1167,"children":1168},{"style":338},[1169],{"type":43,"value":1160},{"type":38,"tag":331,"props":1171,"children":1172},{"style":1085},[1173],{"type":43,"value":1174}," Placeholder         ",{"type":38,"tag":331,"props":1176,"children":1177},{"style":338},[1178],{"type":43,"value":1160},{"type":38,"tag":331,"props":1180,"children":1181},{"style":1085},[1182],{"type":43,"value":1183}," Options                         ",{"type":38,"tag":331,"props":1185,"children":1186},{"style":338},[1187],{"type":43,"value":1188},"|\n",{"type":38,"tag":331,"props":1190,"children":1192},{"class":333,"line":1191},12,[1193,1197,1202,1207,1212,1216,1221],{"type":38,"tag":331,"props":1194,"children":1195},{"style":338},[1196],{"type":43,"value":1160},{"type":38,"tag":331,"props":1198,"children":1199},{"style":338},[1200],{"type":43,"value":1201}," ---------------",{"type":38,"tag":331,"props":1203,"children":1204},{"style":338},[1205],{"type":43,"value":1206}," |",{"type":38,"tag":331,"props":1208,"children":1209},{"style":338},[1210],{"type":43,"value":1211}," -------------------",{"type":38,"tag":331,"props":1213,"children":1214},{"style":338},[1215],{"type":43,"value":1206},{"type":38,"tag":331,"props":1217,"children":1218},{"style":338},[1219],{"type":43,"value":1220}," -------------------------------",{"type":38,"tag":331,"props":1222,"children":1223},{"style":338},[1224],{"type":43,"value":1225}," |\n",{"type":38,"tag":331,"props":1227,"children":1229},{"class":333,"line":1228},13,[1230,1234,1239,1243,1248,1253,1257,1262,1267],{"type":38,"tag":331,"props":1231,"children":1232},{"style":338},[1233],{"type":43,"value":1160},{"type":38,"tag":331,"props":1235,"children":1236},{"style":1085},[1237],{"type":43,"value":1238}," Chat            ",{"type":38,"tag":331,"props":1240,"children":1241},{"style":338},[1242],{"type":43,"value":1160},{"type":38,"tag":331,"props":1244,"children":1245},{"style":338},[1246],{"type":43,"value":1247}," `",{"type":38,"tag":331,"props":1249,"children":1250},{"style":373},[1251],{"type":43,"value":1252},"~~chat",{"type":38,"tag":331,"props":1254,"children":1255},{"style":338},[1256],{"type":43,"value":1093},{"type":38,"tag":331,"props":1258,"children":1259},{"style":338},[1260],{"type":43,"value":1261},"            |",{"type":38,"tag":331,"props":1263,"children":1264},{"style":1085},[1265],{"type":43,"value":1266}," Slack, Microsoft Teams, Discord ",{"type":38,"tag":331,"props":1268,"children":1269},{"style":338},[1270],{"type":43,"value":1188},{"type":38,"tag":331,"props":1272,"children":1274},{"class":333,"line":1273},14,[1275,1279,1284,1288,1292,1297,1301,1305,1310],{"type":38,"tag":331,"props":1276,"children":1277},{"style":338},[1278],{"type":43,"value":1160},{"type":38,"tag":331,"props":1280,"children":1281},{"style":1085},[1282],{"type":43,"value":1283}," Project tracker ",{"type":38,"tag":331,"props":1285,"children":1286},{"style":338},[1287],{"type":43,"value":1160},{"type":38,"tag":331,"props":1289,"children":1290},{"style":338},[1291],{"type":43,"value":1247},{"type":38,"tag":331,"props":1293,"children":1294},{"style":373},[1295],{"type":43,"value":1296},"~~project tracker",{"type":38,"tag":331,"props":1298,"children":1299},{"style":338},[1300],{"type":43,"value":1093},{"type":38,"tag":331,"props":1302,"children":1303},{"style":338},[1304],{"type":43,"value":1206},{"type":38,"tag":331,"props":1306,"children":1307},{"style":1085},[1308],{"type":43,"value":1309}," Linear, Asana, Jira             ",{"type":38,"tag":331,"props":1311,"children":1312},{"style":338},[1313],{"type":43,"value":1188},{"type":38,"tag":161,"props":1315,"children":1317},{"id":1316},"claude_plugin_root-variable",[1318],{"type":43,"value":1319},"${CLAUDE_PLUGIN_ROOT} Variable",{"type":38,"tag":46,"props":1321,"children":1322},{},[1323,1325,1331],{"type":43,"value":1324},"Use ",{"type":38,"tag":52,"props":1326,"children":1328},{"className":1327},[],[1329],{"type":43,"value":1330},"${CLAUDE_PLUGIN_ROOT}",{"type":43,"value":1332}," for all intra-plugin path references in hooks and MCP configs. Never hardcode absolute paths.",{"type":38,"tag":61,"props":1334,"children":1336},{"id":1335},"guided-workflow",[1337],{"type":43,"value":1338},"Guided Workflow",{"type":38,"tag":46,"props":1340,"children":1341},{},[1342,1344,1350,1352,1358],{"type":43,"value":1343},"When you ask the user something, use AskUserQuestion. Don't assume \"industry standard\" defaults are correct. Note: AskUserQuestion always includes a Skip button and a free-text input box for custom answers, so do not include ",{"type":38,"tag":52,"props":1345,"children":1347},{"className":1346},[],[1348],{"type":43,"value":1349},"None",{"type":43,"value":1351}," or ",{"type":38,"tag":52,"props":1353,"children":1355},{"className":1354},[],[1356],{"type":43,"value":1357},"Other",{"type":43,"value":1359}," as options.",{"type":38,"tag":161,"props":1361,"children":1363},{"id":1362},"phase-1-discovery",[1364],{"type":43,"value":1365},"Phase 1: Discovery",{"type":38,"tag":46,"props":1367,"children":1368},{},[1369,1374],{"type":38,"tag":86,"props":1370,"children":1371},{},[1372],{"type":43,"value":1373},"Goal",{"type":43,"value":1375},": Understand what the user wants to build and why.",{"type":38,"tag":46,"props":1377,"children":1378},{},[1379],{"type":43,"value":1380},"Ask (only what is unclear — skip questions if the user's initial request already answers them):",{"type":38,"tag":245,"props":1382,"children":1383},{},[1384,1389,1394,1399],{"type":38,"tag":82,"props":1385,"children":1386},{},[1387],{"type":43,"value":1388},"What should this plugin do? What problem does it solve?",{"type":38,"tag":82,"props":1390,"children":1391},{},[1392],{"type":43,"value":1393},"Who will use it and in what context?",{"type":38,"tag":82,"props":1395,"children":1396},{},[1397],{"type":43,"value":1398},"Does it integrate with any external tools or services?",{"type":38,"tag":82,"props":1400,"children":1401},{},[1402],{"type":43,"value":1403},"Is there a similar plugin or workflow to reference?",{"type":38,"tag":46,"props":1405,"children":1406},{},[1407],{"type":43,"value":1408},"Summarize understanding and confirm before proceeding.",{"type":38,"tag":46,"props":1410,"children":1411},{},[1412,1417],{"type":38,"tag":86,"props":1413,"children":1414},{},[1415],{"type":43,"value":1416},"Output",{"type":43,"value":1418},": Clear statement of plugin purpose and scope.",{"type":38,"tag":161,"props":1420,"children":1422},{"id":1421},"phase-2-component-planning",[1423],{"type":43,"value":1424},"Phase 2: Component Planning",{"type":38,"tag":46,"props":1426,"children":1427},{},[1428,1432],{"type":38,"tag":86,"props":1429,"children":1430},{},[1431],{"type":43,"value":1373},{"type":43,"value":1433},": Determine which component types the plugin needs.",{"type":38,"tag":46,"props":1435,"children":1436},{},[1437],{"type":43,"value":1438},"Based on the discovery answers, determine:",{"type":38,"tag":245,"props":1440,"children":1441},{},[1442,1451,1460,1470],{"type":38,"tag":82,"props":1443,"children":1444},{},[1445,1449],{"type":38,"tag":86,"props":1446,"children":1447},{},[1448],{"type":43,"value":851},{"type":43,"value":1450}," — Does it need specialized knowledge that Claude should load on-demand, or user-initiated actions? (domain expertise, reference schemas, workflow guides, deploy\u002Fconfigure\u002Fanalyze\u002Freview actions)",{"type":38,"tag":82,"props":1452,"children":1453},{},[1454,1458],{"type":38,"tag":86,"props":1455,"children":1456},{},[1457],{"type":43,"value":872},{"type":43,"value":1459}," — Does it need external service integration? (databases, APIs, SaaS tools)",{"type":38,"tag":82,"props":1461,"children":1462},{},[1463,1468],{"type":38,"tag":86,"props":1464,"children":1465},{},[1466],{"type":43,"value":1467},"Agents (uncommon)",{"type":43,"value":1469}," — Are there autonomous multi-step tasks? (validation, generation, analysis)",{"type":38,"tag":82,"props":1471,"children":1472},{},[1473,1478],{"type":38,"tag":86,"props":1474,"children":1475},{},[1476],{"type":43,"value":1477},"Hooks (rare)",{"type":43,"value":1479}," — Should something happen automatically on certain events? (enforce policies, load context, validate operations)",{"type":38,"tag":46,"props":1481,"children":1482},{},[1483],{"type":43,"value":1484},"Present a component plan table, including component types you decided not to create:",{"type":38,"tag":173,"props":1486,"children":1489},{"className":1487,"code":1488,"language":43},[176],"| Component | Count | Purpose |\n|-----------|-------|---------|\n| Skills    | 3     | Domain knowledge for X, \u002Fdo-thing, \u002Fcheck-thing |\n| Agents    | 0     | Not needed |\n| Hooks     | 1     | Validate writes |\n| MCP       | 1     | Connect to service Y |\n",[1490],{"type":38,"tag":52,"props":1491,"children":1492},{"__ignoreMap":181},[1493],{"type":43,"value":1488},{"type":38,"tag":46,"props":1495,"children":1496},{},[1497],{"type":43,"value":1498},"Get user confirmation or adjustments before proceeding.",{"type":38,"tag":46,"props":1500,"children":1501},{},[1502,1506],{"type":38,"tag":86,"props":1503,"children":1504},{},[1505],{"type":43,"value":1416},{"type":43,"value":1507},": Confirmed list of components to create.",{"type":38,"tag":161,"props":1509,"children":1511},{"id":1510},"phase-3-design-clarifying-questions",[1512],{"type":43,"value":1513},"Phase 3: Design & Clarifying Questions",{"type":38,"tag":46,"props":1515,"children":1516},{},[1517,1521],{"type":38,"tag":86,"props":1518,"children":1519},{},[1520],{"type":43,"value":1373},{"type":43,"value":1522},": Specify each component in detail. Resolve all ambiguities before implementation.",{"type":38,"tag":46,"props":1524,"children":1525},{},[1526],{"type":43,"value":1527},"For each component type in the plan, ask targeted design questions. Present questions grouped by component type. Wait for answers before proceeding.",{"type":38,"tag":46,"props":1529,"children":1530},{},[1531],{"type":38,"tag":86,"props":1532,"children":1533},{},[1534],{"type":43,"value":1535},"Skills:",{"type":38,"tag":245,"props":1537,"children":1538},{},[1539,1544,1549,1554],{"type":38,"tag":82,"props":1540,"children":1541},{},[1542],{"type":43,"value":1543},"What user queries should trigger this skill?",{"type":38,"tag":82,"props":1545,"children":1546},{},[1547],{"type":43,"value":1548},"What knowledge domains does it cover?",{"type":38,"tag":82,"props":1550,"children":1551},{},[1552],{"type":43,"value":1553},"Should it include reference files for detailed content?",{"type":38,"tag":82,"props":1555,"children":1556},{},[1557],{"type":43,"value":1558},"If the skill represents a user-initiated action: what arguments does it accept, and what tools does it need? (Read, Write, Bash, Grep, etc.)",{"type":38,"tag":46,"props":1560,"children":1561},{},[1562],{"type":38,"tag":86,"props":1563,"children":1564},{},[1565],{"type":43,"value":1566},"Agents:",{"type":38,"tag":245,"props":1568,"children":1569},{},[1570,1575,1580],{"type":38,"tag":82,"props":1571,"children":1572},{},[1573],{"type":43,"value":1574},"Should each agent trigger proactively or only when requested?",{"type":38,"tag":82,"props":1576,"children":1577},{},[1578],{"type":43,"value":1579},"What tools does it need?",{"type":38,"tag":82,"props":1581,"children":1582},{},[1583],{"type":43,"value":1584},"What should the output format be?",{"type":38,"tag":46,"props":1586,"children":1587},{},[1588],{"type":38,"tag":86,"props":1589,"children":1590},{},[1591],{"type":43,"value":1592},"Hooks:",{"type":38,"tag":245,"props":1594,"children":1595},{},[1596,1601,1606],{"type":38,"tag":82,"props":1597,"children":1598},{},[1599],{"type":43,"value":1600},"Which events? (PreToolUse, PostToolUse, Stop, SessionStart, etc.)",{"type":38,"tag":82,"props":1602,"children":1603},{},[1604],{"type":43,"value":1605},"What behavior — validate, block, modify, add context?",{"type":38,"tag":82,"props":1607,"children":1608},{},[1609],{"type":43,"value":1610},"Prompt-based (LLM-driven) or command-based (deterministic script)?",{"type":38,"tag":46,"props":1612,"children":1613},{},[1614],{"type":38,"tag":86,"props":1615,"children":1616},{},[1617],{"type":43,"value":1618},"MCP Servers:",{"type":38,"tag":245,"props":1620,"children":1621},{},[1622,1627,1632],{"type":38,"tag":82,"props":1623,"children":1624},{},[1625],{"type":43,"value":1626},"What server type? (stdio for local, SSE for hosted with OAuth, HTTP for REST APIs)",{"type":38,"tag":82,"props":1628,"children":1629},{},[1630],{"type":43,"value":1631},"What authentication method?",{"type":38,"tag":82,"props":1633,"children":1634},{},[1635],{"type":43,"value":1636},"What tools should be exposed?",{"type":38,"tag":46,"props":1638,"children":1639},{},[1640],{"type":43,"value":1641},"If the user says \"whatever you think is best,\" provide specific recommendations and get explicit confirmation.",{"type":38,"tag":46,"props":1643,"children":1644},{},[1645,1649],{"type":38,"tag":86,"props":1646,"children":1647},{},[1648],{"type":43,"value":1416},{"type":43,"value":1650},": Detailed specification for every component.",{"type":38,"tag":161,"props":1652,"children":1654},{"id":1653},"phase-4-implementation",[1655],{"type":43,"value":1656},"Phase 4: Implementation",{"type":38,"tag":46,"props":1658,"children":1659},{},[1660,1664],{"type":38,"tag":86,"props":1661,"children":1662},{},[1663],{"type":43,"value":1373},{"type":43,"value":1665},": Create all plugin files following best practices.",{"type":38,"tag":46,"props":1667,"children":1668},{},[1669],{"type":38,"tag":86,"props":1670,"children":1671},{},[1672],{"type":43,"value":1673},"Order of operations:",{"type":38,"tag":78,"props":1675,"children":1676},{},[1677,1682,1695,1707],{"type":38,"tag":82,"props":1678,"children":1679},{},[1680],{"type":43,"value":1681},"Create the plugin directory structure",{"type":38,"tag":82,"props":1683,"children":1684},{},[1685,1687,1693],{"type":43,"value":1686},"Create ",{"type":38,"tag":52,"props":1688,"children":1690},{"className":1689},[],[1691],{"type":43,"value":1692},"plugin.json",{"type":43,"value":1694}," manifest",{"type":38,"tag":82,"props":1696,"children":1697},{},[1698,1700,1705],{"type":43,"value":1699},"Create each component (see ",{"type":38,"tag":52,"props":1701,"children":1703},{"className":1702},[],[1704],{"type":43,"value":808},{"type":43,"value":1706}," for exact formats)",{"type":38,"tag":82,"props":1708,"children":1709},{},[1710,1711,1717],{"type":43,"value":1686},{"type":38,"tag":52,"props":1712,"children":1714},{"className":1713},[],[1715],{"type":43,"value":1716},"README.md",{"type":43,"value":1718}," documenting the plugin",{"type":38,"tag":46,"props":1720,"children":1721},{},[1722],{"type":38,"tag":86,"props":1723,"children":1724},{},[1725],{"type":43,"value":1726},"Implementation guidelines:",{"type":38,"tag":245,"props":1728,"children":1729},{},[1730,1746,1764,1788],{"type":38,"tag":82,"props":1731,"children":1732},{},[1733,1737,1739,1744],{"type":38,"tag":86,"props":1734,"children":1735},{},[1736],{"type":43,"value":851},{"type":43,"value":1738}," use progressive disclosure: lean SKILL.md body (under 3,000 words), detailed content in ",{"type":38,"tag":52,"props":1740,"children":1742},{"className":1741},[],[1743],{"type":43,"value":233},{"type":43,"value":1745},". Frontmatter description must be third-person with specific trigger phrases. Skill bodies are instructions FOR Claude, not messages to the user — write them as directives about what to do.",{"type":38,"tag":82,"props":1747,"children":1748},{},[1749,1754,1756,1762],{"type":38,"tag":86,"props":1750,"children":1751},{},[1752],{"type":43,"value":1753},"Agents",{"type":43,"value":1755}," need a description with ",{"type":38,"tag":52,"props":1757,"children":1759},{"className":1758},[],[1760],{"type":43,"value":1761},"\u003Cexample>",{"type":43,"value":1763}," blocks showing triggering conditions, plus a system prompt in the markdown body.",{"type":38,"tag":82,"props":1765,"children":1766},{},[1767,1772,1774,1779,1781,1786],{"type":38,"tag":86,"props":1768,"children":1769},{},[1770],{"type":43,"value":1771},"Hooks",{"type":43,"value":1773}," config goes in ",{"type":38,"tag":52,"props":1775,"children":1777},{"className":1776},[],[1778],{"type":43,"value":924},{"type":43,"value":1780},". Use ",{"type":38,"tag":52,"props":1782,"children":1784},{"className":1783},[],[1785],{"type":43,"value":1330},{"type":43,"value":1787}," for script paths. Prefer prompt-based hooks for complex logic.",{"type":38,"tag":82,"props":1789,"children":1790},{},[1791,1796,1798,1803,1805,1810],{"type":38,"tag":86,"props":1792,"children":1793},{},[1794],{"type":43,"value":1795},"MCP configs",{"type":43,"value":1797}," go in ",{"type":38,"tag":52,"props":1799,"children":1801},{"className":1800},[],[1802],{"type":43,"value":881},{"type":43,"value":1804}," at plugin root. Use ",{"type":38,"tag":52,"props":1806,"children":1808},{"className":1807},[],[1809],{"type":43,"value":1330},{"type":43,"value":1811}," for local server paths. Document required env vars in README.",{"type":38,"tag":161,"props":1813,"children":1815},{"id":1814},"phase-5-review-package",[1816],{"type":43,"value":1817},"Phase 5: Review & Package",{"type":38,"tag":46,"props":1819,"children":1820},{},[1821,1825],{"type":38,"tag":86,"props":1822,"children":1823},{},[1824],{"type":43,"value":1373},{"type":43,"value":1826},": Deliver the finished plugin.",{"type":38,"tag":78,"props":1828,"children":1829},{},[1830,1835,1840,1953],{"type":38,"tag":82,"props":1831,"children":1832},{},[1833],{"type":43,"value":1834},"Summarize what was created — list each component and its purpose",{"type":38,"tag":82,"props":1836,"children":1837},{},[1838],{"type":43,"value":1839},"Ask if the user wants any adjustments",{"type":38,"tag":82,"props":1841,"children":1842},{},[1843,1845,1851,1853,1947,1951],{"type":43,"value":1844},"Run ",{"type":38,"tag":52,"props":1846,"children":1848},{"className":1847},[],[1849],{"type":43,"value":1850},"claude plugin validate \u003Cpath-to-plugin-json>",{"type":43,"value":1852}," to check the plugin structure. If this command is unavailable (e.g., when running inside Cowork), verify the structure manually:",{"type":38,"tag":245,"props":1854,"children":1855},{},[1856,1873,1885,1931,1942],{"type":38,"tag":82,"props":1857,"children":1858},{},[1859,1864,1866,1871],{"type":38,"tag":52,"props":1860,"children":1862},{"className":1861},[],[1863],{"type":43,"value":256},{"type":43,"value":1865}," exists and contains valid JSON with at least a ",{"type":38,"tag":52,"props":1867,"children":1869},{"className":1868},[],[1870],{"type":43,"value":319},{"type":43,"value":1872}," field",{"type":38,"tag":82,"props":1874,"children":1875},{},[1876,1878,1883],{"type":43,"value":1877},"The ",{"type":38,"tag":52,"props":1879,"children":1881},{"className":1880},[],[1882],{"type":43,"value":319},{"type":43,"value":1884}," field is kebab-case (lowercase letters, numbers, and hyphens only)",{"type":38,"tag":82,"props":1886,"children":1887},{},[1888,1890,1895,1896,1901,1902,1907,1908,1914,1916,1921,1923,1929],{"type":43,"value":1889},"Any component directories referenced by the plugin (",{"type":38,"tag":52,"props":1891,"children":1893},{"className":1892},[],[1894],{"type":43,"value":200},{"type":43,"value":271},{"type":38,"tag":52,"props":1897,"children":1899},{"className":1898},[],[1900],{"type":43,"value":269},{"type":43,"value":271},{"type":38,"tag":52,"props":1903,"children":1905},{"className":1904},[],[1906],{"type":43,"value":277},{"type":43,"value":271},{"type":38,"tag":52,"props":1909,"children":1911},{"className":1910},[],[1912],{"type":43,"value":1913},"hooks\u002F",{"type":43,"value":1915},") actually exist and contain files in the expected formats — ",{"type":38,"tag":52,"props":1917,"children":1919},{"className":1918},[],[1920],{"type":43,"value":217},{"type":43,"value":1922}," for commands\u002Fskills\u002Fagents, ",{"type":38,"tag":52,"props":1924,"children":1926},{"className":1925},[],[1927],{"type":43,"value":1928},".json",{"type":43,"value":1930}," for hooks",{"type":38,"tag":82,"props":1932,"children":1933},{},[1934,1936],{"type":43,"value":1935},"Each skill subdirectory contains a ",{"type":38,"tag":52,"props":1937,"children":1939},{"className":1938},[],[1940],{"type":43,"value":1941},"SKILL.md",{"type":38,"tag":82,"props":1943,"children":1944},{},[1945],{"type":43,"value":1946},"Report what passed and what didn't, the same way the CLI validator would",{"type":38,"tag":1948,"props":1949,"children":1950},"br",{},[],{"type":43,"value":1952},"Fix any errors before proceeding.",{"type":38,"tag":82,"props":1954,"children":1955},{},[1956,1958,1963],{"type":43,"value":1957},"Package as a ",{"type":38,"tag":52,"props":1959,"children":1961},{"className":1960},[],[1962],{"type":43,"value":57},{"type":43,"value":1964}," file:",{"type":38,"tag":173,"props":1966,"children":1970},{"className":1967,"code":1968,"language":1969,"meta":181,"style":181},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","cd \u002Fpath\u002Fto\u002Fplugin-dir && zip -r \u002Ftmp\u002Fplugin-name.plugin . -x \"*.DS_Store\" && cp \u002Ftmp\u002Fplugin-name.plugin \u002Fpath\u002Fto\u002Foutputs\u002Fplugin-name.plugin\n","bash",[1971],{"type":38,"tag":52,"props":1972,"children":1973},{"__ignoreMap":181},[1974],{"type":38,"tag":331,"props":1975,"children":1976},{"class":333,"line":334},[1977,1983,1988,1993,1998,2003,2008,2013,2018,2022,2027,2031,2035,2040,2044],{"type":38,"tag":331,"props":1978,"children":1980},{"style":1979},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[1981],{"type":43,"value":1982},"cd",{"type":38,"tag":331,"props":1984,"children":1985},{"style":373},[1986],{"type":43,"value":1987}," \u002Fpath\u002Fto\u002Fplugin-dir",{"type":38,"tag":331,"props":1989,"children":1990},{"style":338},[1991],{"type":43,"value":1992}," &&",{"type":38,"tag":331,"props":1994,"children":1995},{"style":499},[1996],{"type":43,"value":1997}," zip",{"type":38,"tag":331,"props":1999,"children":2000},{"style":373},[2001],{"type":43,"value":2002}," -r",{"type":38,"tag":331,"props":2004,"children":2005},{"style":373},[2006],{"type":43,"value":2007}," \u002Ftmp\u002Fplugin-name.plugin",{"type":38,"tag":331,"props":2009,"children":2010},{"style":373},[2011],{"type":43,"value":2012}," .",{"type":38,"tag":331,"props":2014,"children":2015},{"style":373},[2016],{"type":43,"value":2017}," -x",{"type":38,"tag":331,"props":2019,"children":2020},{"style":338},[2021],{"type":43,"value":370},{"type":38,"tag":331,"props":2023,"children":2024},{"style":373},[2025],{"type":43,"value":2026},"*.DS_Store",{"type":38,"tag":331,"props":2028,"children":2029},{"style":338},[2030],{"type":43,"value":360},{"type":38,"tag":331,"props":2032,"children":2033},{"style":338},[2034],{"type":43,"value":1992},{"type":38,"tag":331,"props":2036,"children":2037},{"style":499},[2038],{"type":43,"value":2039}," cp",{"type":38,"tag":331,"props":2041,"children":2042},{"style":373},[2043],{"type":43,"value":2007},{"type":38,"tag":331,"props":2045,"children":2046},{"style":373},[2047],{"type":43,"value":2048}," \u002Fpath\u002Fto\u002Foutputs\u002Fplugin-name.plugin\n",{"type":38,"tag":141,"props":2050,"children":2051},{},[2052],{"type":38,"tag":46,"props":2053,"children":2054},{},[2055,2060,2062,2068],{"type":38,"tag":86,"props":2056,"children":2057},{},[2058],{"type":43,"value":2059},"Important",{"type":43,"value":2061},": Always create the zip in ",{"type":38,"tag":52,"props":2063,"children":2065},{"className":2064},[],[2066],{"type":43,"value":2067},"\u002Ftmp\u002F",{"type":43,"value":2069}," first, then copy to the outputs folder. Writing directly to the outputs folder may fail due to permissions.",{"type":38,"tag":141,"props":2071,"children":2072},{},[2073],{"type":38,"tag":46,"props":2074,"children":2075},{},[2076,2081,2083,2088,2090,2095,2097,2103,2105,2111],{"type":38,"tag":86,"props":2077,"children":2078},{},[2079],{"type":43,"value":2080},"Naming",{"type":43,"value":2082},": Use the plugin name from ",{"type":38,"tag":52,"props":2084,"children":2086},{"className":2085},[],[2087],{"type":43,"value":1692},{"type":43,"value":2089}," for the ",{"type":38,"tag":52,"props":2091,"children":2093},{"className":2092},[],[2094],{"type":43,"value":57},{"type":43,"value":2096}," file (e.g., if name is ",{"type":38,"tag":52,"props":2098,"children":2100},{"className":2099},[],[2101],{"type":43,"value":2102},"code-reviewer",{"type":43,"value":2104},", output ",{"type":38,"tag":52,"props":2106,"children":2108},{"className":2107},[],[2109],{"type":43,"value":2110},"code-reviewer.plugin",{"type":43,"value":2112},").",{"type":38,"tag":46,"props":2114,"children":2115},{},[2116,2117,2122],{"type":43,"value":1877},{"type":38,"tag":52,"props":2118,"children":2120},{"className":2119},[],[2121],{"type":43,"value":57},{"type":43,"value":2123}," file will appear in the chat as a rich preview where the user can browse the files and accept the plugin by pressing a button.",{"type":38,"tag":61,"props":2125,"children":2127},{"id":2126},"best-practices",[2128],{"type":43,"value":2129},"Best Practices",{"type":38,"tag":245,"props":2131,"children":2132},{},[2133,2143,2167,2184,2194,2204,2221],{"type":38,"tag":82,"props":2134,"children":2135},{},[2136,2141],{"type":38,"tag":86,"props":2137,"children":2138},{},[2139],{"type":43,"value":2140},"Start small",{"type":43,"value":2142},": Begin with the minimum viable set of components. A plugin with one well-crafted skill is more useful than one with five half-baked components.",{"type":38,"tag":82,"props":2144,"children":2145},{},[2146,2151,2153,2158,2160,2166],{"type":38,"tag":86,"props":2147,"children":2148},{},[2149],{"type":43,"value":2150},"Progressive disclosure for skills",{"type":43,"value":2152},": Core knowledge in SKILL.md, detailed reference material in ",{"type":38,"tag":52,"props":2154,"children":2156},{"className":2155},[],[2157],{"type":43,"value":233},{"type":43,"value":2159},", working examples in ",{"type":38,"tag":52,"props":2161,"children":2163},{"className":2162},[],[2164],{"type":43,"value":2165},"examples\u002F",{"type":43,"value":235},{"type":38,"tag":82,"props":2168,"children":2169},{},[2170,2175,2177,2182],{"type":38,"tag":86,"props":2171,"children":2172},{},[2173],{"type":43,"value":2174},"Clear trigger phrases",{"type":43,"value":2176},": Skill descriptions should include specific phrases users would say. Agent descriptions should include ",{"type":38,"tag":52,"props":2178,"children":2180},{"className":2179},[],[2181],{"type":43,"value":1761},{"type":43,"value":2183}," blocks.",{"type":38,"tag":82,"props":2185,"children":2186},{},[2187,2192],{"type":38,"tag":86,"props":2188,"children":2189},{},[2190],{"type":43,"value":2191},"Skills are for Claude",{"type":43,"value":2193},": Write skill body content as instructions for Claude to follow, not documentation for the user to read.",{"type":38,"tag":82,"props":2195,"children":2196},{},[2197,2202],{"type":38,"tag":86,"props":2198,"children":2199},{},[2200],{"type":43,"value":2201},"Imperative writing style",{"type":43,"value":2203},": Use verb-first instructions in skills (\"Parse the config file,\" not \"You should parse the config file\").",{"type":38,"tag":82,"props":2205,"children":2206},{},[2207,2212,2214,2219],{"type":38,"tag":86,"props":2208,"children":2209},{},[2210],{"type":43,"value":2211},"Portability",{"type":43,"value":2213},": Always use ",{"type":38,"tag":52,"props":2215,"children":2217},{"className":2216},[],[2218],{"type":43,"value":1330},{"type":43,"value":2220}," for intra-plugin paths, never hardcoded paths.",{"type":38,"tag":82,"props":2222,"children":2223},{},[2224,2229],{"type":38,"tag":86,"props":2225,"children":2226},{},[2227],{"type":43,"value":2228},"Security",{"type":43,"value":2230},": Use environment variables for credentials, HTTPS for remote servers, least-privilege tool access.",{"type":38,"tag":61,"props":2232,"children":2234},{"id":2233},"additional-resources",[2235],{"type":43,"value":2236},"Additional Resources",{"type":38,"tag":245,"props":2238,"children":2239},{},[2240,2253],{"type":38,"tag":82,"props":2241,"children":2242},{},[2243,2251],{"type":38,"tag":86,"props":2244,"children":2245},{},[2246],{"type":38,"tag":52,"props":2247,"children":2249},{"className":2248},[],[2250],{"type":43,"value":808},{"type":43,"value":2252}," — Detailed format specifications for every component type (skills, agents, hooks, MCP, legacy commands, CONNECTORS.md)",{"type":38,"tag":82,"props":2254,"children":2255},{},[2256,2265],{"type":38,"tag":86,"props":2257,"children":2258},{},[2259],{"type":38,"tag":52,"props":2260,"children":2262},{"className":2261},[],[2263],{"type":43,"value":2264},"references\u002Fexample-plugins.md",{"type":43,"value":2266}," — Three complete example plugin structures at different complexity levels",{"type":38,"tag":2268,"props":2269,"children":2270},"style",{},[2271],{"type":43,"value":2272},"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":2274,"total":2459},[2275,2296,2310,2322,2339,2352,2373,2393,2407,2422,2430,2443],{"slug":2276,"name":2276,"fn":2277,"description":2278,"org":2279,"tags":2280,"stars":2293,"repoUrl":2294,"updatedAt":2295},"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},[2281,2284,2287,2290],{"name":2282,"slug":2283,"type":16},"Creative","creative",{"name":2285,"slug":2286,"type":16},"Design","design",{"name":2288,"slug":2289,"type":16},"Generative Art","generative-art",{"name":2291,"slug":2292,"type":16},"JavaScript","javascript",161831,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fskills","2026-04-06T17:56:15.455818",{"slug":2297,"name":2297,"fn":2298,"description":2299,"org":2300,"tags":2301,"stars":2293,"repoUrl":2294,"updatedAt":2309},"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},[2302,2305,2306],{"name":2303,"slug":2304,"type":16},"Branding","branding",{"name":2285,"slug":2286,"type":16},{"name":2307,"slug":2308,"type":16},"Typography","typography","2026-04-06T17:56:05.042852",{"slug":2311,"name":2311,"fn":2312,"description":2313,"org":2314,"tags":2315,"stars":2293,"repoUrl":2294,"updatedAt":2321},"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},[2316,2317,2318],{"name":2282,"slug":2283,"type":16},{"name":2285,"slug":2286,"type":16},{"name":2319,"slug":2320,"type":16},"PDF","pdf","2026-04-06T17:56:03.794732",{"slug":2323,"name":2323,"fn":2324,"description":2325,"org":2326,"tags":2327,"stars":2293,"repoUrl":2294,"updatedAt":2338},"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},[2328,2329,2330,2333,2335],{"name":1753,"slug":665,"type":16},{"name":9,"slug":8,"type":16},{"name":2331,"slug":2332,"type":16},"Anthropic SDK","anthropic-sdk",{"name":2334,"slug":2323,"type":16},"Claude API",{"name":2336,"slug":2337,"type":16},"LLM","llm","2026-07-28T05:36:08.213335",{"slug":2340,"name":2340,"fn":2341,"description":2342,"org":2343,"tags":2344,"stars":2293,"repoUrl":2294,"updatedAt":2351},"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},[2345,2348],{"name":2346,"slug":2347,"type":16},"Documentation","documentation",{"name":2349,"slug":2350,"type":16},"Technical Writing","technical-writing","2026-04-06T17:56:14.18897",{"slug":2353,"name":2353,"fn":2354,"description":2355,"org":2356,"tags":2357,"stars":2293,"repoUrl":2294,"updatedAt":2372},"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},[2358,2361,2363,2366,2369],{"name":2359,"slug":2360,"type":16},"Documents","documents",{"name":2362,"slug":2353,"type":16},"DOCX",{"name":2364,"slug":2365,"type":16},"Office","office",{"name":2367,"slug":2368,"type":16},"Templates","templates",{"name":2370,"slug":2371,"type":16},"Word","word","2026-07-18T05:16:23.136271",{"slug":2374,"name":2374,"fn":2375,"description":2376,"org":2377,"tags":2378,"stars":2293,"repoUrl":2294,"updatedAt":2392},"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},[2379,2380,2383,2386,2389],{"name":2285,"slug":2286,"type":16},{"name":2381,"slug":2382,"type":16},"Frontend","frontend",{"name":2384,"slug":2385,"type":16},"React","react",{"name":2387,"slug":2388,"type":16},"Tailwind CSS","tailwind-css",{"name":2390,"slug":2391,"type":16},"UI Components","ui-components","2026-04-06T17:56:16.723469",{"slug":2394,"name":2394,"fn":2395,"description":2396,"org":2397,"tags":2398,"stars":2293,"repoUrl":2294,"updatedAt":2406},"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},[2399,2402,2403],{"name":2400,"slug":2401,"type":16},"Communications","communications",{"name":2367,"slug":2368,"type":16},{"name":2404,"slug":2405,"type":16},"Writing","writing","2026-04-06T17:56:20.695522",{"slug":2408,"name":2408,"fn":2409,"description":2410,"org":2411,"tags":2412,"stars":2293,"repoUrl":2294,"updatedAt":2421},"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},[2413,2414,2417,2418],{"name":1753,"slug":665,"type":16},{"name":2415,"slug":2416,"type":16},"API Development","api-development",{"name":2336,"slug":2337,"type":16},{"name":2419,"slug":2420,"type":16},"MCP","mcp","2026-04-06T17:56:10.357665",{"slug":2320,"name":2320,"fn":2423,"description":2424,"org":2425,"tags":2426,"stars":2293,"repoUrl":2294,"updatedAt":2429},"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},[2427,2428],{"name":2359,"slug":2360,"type":16},{"name":2319,"slug":2320,"type":16},"2026-04-06T17:56:02.483316",{"slug":2431,"name":2431,"fn":2432,"description":2433,"org":2434,"tags":2435,"stars":2293,"repoUrl":2294,"updatedAt":2442},"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},[2436,2439],{"name":2437,"slug":2438,"type":16},"PowerPoint","powerpoint",{"name":2440,"slug":2441,"type":16},"Presentations","presentations","2026-07-18T05:16:24.1471",{"slug":2444,"name":2444,"fn":2445,"description":2446,"org":2447,"tags":2448,"stars":2293,"repoUrl":2294,"updatedAt":2458},"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},[2449,2450,2451,2454,2457],{"name":1753,"slug":665,"type":16},{"name":2346,"slug":2347,"type":16},{"name":2452,"slug":2453,"type":16},"Evals","evals",{"name":2455,"slug":2456,"type":16},"Performance","performance",{"name":2349,"slug":2350,"type":16},"2026-04-19T06:45:40.804",490,{"items":2461,"total":2568},[2462,2476,2492,2508,2524,2543,2555],{"slug":2463,"name":2463,"fn":2464,"description":2465,"org":2466,"tags":2467,"stars":20,"repoUrl":21,"updatedAt":2475},"accessibility-review","run WCAG accessibility audits","Run a WCAG 2.1 AA accessibility audit on a design or page. Trigger with \"audit accessibility\", \"check a11y\", \"is this accessible?\", or when reviewing a design for color contrast, keyboard navigation, touch target size, or screen reader behavior before handoff.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2468,2471,2472],{"name":2469,"slug":2470,"type":16},"Accessibility","accessibility",{"name":2285,"slug":2286,"type":16},{"name":2473,"slug":2474,"type":16},"WCAG","wcag","2026-04-06T17:58:05.682394",{"slug":2477,"name":2477,"fn":2478,"description":2479,"org":2480,"tags":2481,"stars":20,"repoUrl":21,"updatedAt":2491},"account-research","research accounts for sales intel","Research a company or person and get actionable sales intel. Works standalone with web search, supercharged when you connect enrichment tools or your CRM. Trigger with \"research [company]\", \"look up [person]\", \"intel on [prospect]\", \"who is [name] at [company]\", or \"tell me about [company]\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2482,2485,2488],{"name":2483,"slug":2484,"type":16},"CRM","crm",{"name":2486,"slug":2487,"type":16},"Research","research",{"name":2489,"slug":2490,"type":16},"Sales","sales","2026-04-06T17:56:41.410418",{"slug":2493,"name":2493,"fn":2494,"description":2495,"org":2496,"tags":2497,"stars":20,"repoUrl":21,"updatedAt":2507},"analyze","answer data questions and run analyses","Answer data questions -- from quick lookups to full analyses. Use when looking up a single metric, investigating what's driving a trend or drop, comparing segments over time, or preparing a formal data report for stakeholders.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2498,2501,2504],{"name":2499,"slug":2500,"type":16},"Analytics","analytics",{"name":2502,"slug":2503,"type":16},"Data Analysis","data-analysis",{"name":2505,"slug":2506,"type":16},"SQL","sql","2026-04-06T17:57:21.593647",{"slug":2509,"name":2509,"fn":2510,"description":2511,"org":2512,"tags":2513,"stars":20,"repoUrl":21,"updatedAt":2523},"architecture","create and evaluate architecture decision records","Create or evaluate an architecture decision record (ADR). Use when choosing between technologies (e.g., Kafka vs SQS), documenting a design decision with trade-offs and consequences, reviewing a system design proposal, or designing a new component from requirements and constraints.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2514,2517,2519,2520],{"name":2515,"slug":2516,"type":16},"ADR","adr",{"name":2518,"slug":2509,"type":16},"Architecture",{"name":2346,"slug":2347,"type":16},{"name":2521,"slug":2522,"type":16},"Engineering","engineering","2026-04-06T17:57:49.26444",{"slug":2525,"name":2525,"fn":2526,"description":2527,"org":2528,"tags":2529,"stars":20,"repoUrl":21,"updatedAt":2542},"audit-support","support SOX 404 control testing","Support SOX 404 compliance with control testing methodology, sample selection, and documentation standards. Use when generating testing workpapers, selecting audit samples, classifying control deficiencies, or preparing for internal or external audits.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2530,2533,2536,2539],{"name":2531,"slug":2532,"type":16},"Audit","audit",{"name":2534,"slug":2535,"type":16},"Finance","finance",{"name":2537,"slug":2538,"type":16},"Regulatory Compliance","regulatory-compliance",{"name":2540,"slug":2541,"type":16},"SOX","sox","2026-04-06T17:57:36.714815",{"slug":2544,"name":2544,"fn":2545,"description":2546,"org":2547,"tags":2548,"stars":20,"repoUrl":21,"updatedAt":2554},"brand-review","review content against brand voice","Review content against your brand voice, style guide, and messaging pillars, flagging deviations by severity with specific before\u002Fafter fixes. Use when checking a draft before it ships, when auditing copy for voice consistency and terminology, or when screening for unsubstantiated claims, missing disclaimers, and other legal flags.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2549,2550,2553],{"name":2303,"slug":2304,"type":16},{"name":2551,"slug":2552,"type":16},"Marketing","marketing",{"name":2404,"slug":2405,"type":16},"2026-04-06T17:58:19.548331",{"slug":2556,"name":2556,"fn":2557,"description":2558,"org":2559,"tags":2560,"stars":20,"repoUrl":21,"updatedAt":2567},"brand-voice-enforcement","enforce brand voice in content","This skill applies brand guidelines to content creation. It should be used when the user asks to \"write an email\", \"draft a proposal\", \"create a pitch deck\", \"write a LinkedIn post\", \"draft a presentation\", \"write a Slack message\", \"draft sales content\", or any content creation request where brand voice should be applied. Also triggers on \"on-brand\", \"brand voice\", \"enforce voice\", \"apply brand guidelines\", \"brand-aligned content\", \"write in our voice\", \"use our brand tone\", \"make this sound like us\", \"rewrite this in our tone\", or \"this doesn't sound on-brand\". Not for generating guidelines from scratch (use guideline-generation) or discovering brand materials (use discover-brand).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2561,2562,2563,2566],{"name":2303,"slug":2304,"type":16},{"name":2400,"slug":2401,"type":16},{"name":2564,"slug":2565,"type":16},"Content Creation","content-creation",{"name":2404,"slug":2405,"type":16},"2026-04-06T18:00:23.528956",200]