$npx -y skills add anthropics/knowledge-work-plugins --skill cowork-plugin-customizerCustomize a Claude Code plugin for a specific organization's tools and workflows. Use when: customize plugin, set up plugin, configure plugin, tailor plugin, adjust plugin settings, customize plugin connectors, customize plugin skill, tweak plugin, modify plugin configuration.
| 1 | # Cowork Plugin Customization |
| 2 | |
| 3 | Customize a plugin for a specific organization — either by setting up a generic plugin template for the first time, or by tweaking and refining an already-configured plugin. |
| 4 | |
| 5 | > **Finding the plugin**: To find the plugin's source files, run `find mnt/.local-plugins mnt/.plugins -type d -name "*<plugin-name>*"` to locate the plugin directory, then read its files to understand its structure before making changes. If you cannot find the plugin directory, the user is likely running this conversation in a remote container. Abort and let them know: "Customizing plugins is currently only available in the desktop app's Cowork mode." |
| 6 | |
| 7 | ## Determining the Customization Mode |
| 8 | |
| 9 | After locating the plugin, check for `~~`-prefixed placeholders: `grep -rn '~~\w' /path/to/plugin --include='*.md' --include='*.json'` |
| 10 | |
| 11 | > **Default rule**: If `~~` placeholders exist, default to **Generic plugin setup** unless the user explicitly asks to customize a specific part of the plugin. |
| 12 | |
| 13 | **1. Generic plugin setup** — The plugin contains `~~`-prefixed placeholders. These are customization points in a template that need to be replaced with real values (e.g., `~~Jira` → `Asana`, `~~your-team-channel` → `#engineering`). |
| 14 | |
| 15 | **2. Scoped customization** — No `~~` placeholders exist, and the user asked to customize a specific part of the plugin (e.g., "customize the connectors", "update the standup skill", "change the ticket tool"). Read the plugin files to find the relevant section(s) and focus only on those. Do not scan the entire plugin or present unrelated customization items. |
| 16 | |
| 17 | > **Legacy `commands/` directories**: Some plugins include a `commands/` directory. The Cowork UI now presents these alongside skills as a single "Skills" concept, so treat `commands/*.md` files the same way you would `skills/*/SKILL.md` files when customizing. |
| 18 | |
| 19 | **3. General customization** — No `~~` placeholders exist, and the user wants to modify the plugin broadly. Read the plugin's files to understand its current configuration, then ask the user what they'd like to change. |
| 20 | |
| 21 | > **Important**: Never change the name of the plugin or skill being customized. Do not rename directories, files, or the plugin/skill name fields. |
| 22 | |
| 23 | > **Nontechnical output**: All user-facing output (todo list items, questions, summaries) must be written in plain, nontechnical language. Never mention `~~` prefixes, placeholders, or customization points to the user. Frame everything in terms of the plugin's capabilities and the organization's tools. |
| 24 | |
| 25 | ## Customization Workflow |
| 26 | |
| 27 | ### Phase 0: Gather User Intent (scoped and general customization only) |
| 28 | |
| 29 | For **scoped customization** and **general customization** (not generic plugin setup), check whether the user provided free-form context alongside their request (e.g., "customize the standup skill — we do async standups in #eng-updates every morning"). |
| 30 | |
| 31 | - **If the user provided context**: Record it and use it to pre-fill answers in Phase 3 — skip asking questions that the user already answered here. |
| 32 | - **If the user did not provide context**: Ask a single open-ended question using AskUserQuestion before proceeding. Tailor the question to what they asked to customize — e.g., "What changes do you have in mind for the brief skill?" or "What would you like to change about how this plugin works?" Keep it short and specific to their request. |
| 33 | |
| 34 | Use their response (if any) as additional context throughout the remaining phases. |
| 35 | |
| 36 | ### Phase 1: Gather Context from Knowledge MCPs |
| 37 | |
| 38 | Use company-internal knowledge MCPs to collect information relevant to the customization scope. See `references/search-strategies.md` for detailed query patterns by category. |
| 39 | |
| 40 | **What to gather** (scope to what's relevant): |
| 41 | |
| 42 | - Tool names and services the organization uses |
| 43 | - Organizational processes and workflows |
| 44 | - Team conventions (naming, statuses, estimation scales) |
| 45 | - Configuration values (workspace IDs, project names, team identifiers) |
| 46 | |
| 47 | **Sources to search:** |
| 48 | |
| 49 | 1. **Chat/Slack MCPs** — tool mentions, integrations, workflow discussions |
| 50 | 2. **Document MCPs** — onboarding docs, tool guides, setup instructions |
| 51 | 3. **Email MCPs** — license notifications, admin emails, setup invitations |
| 52 | |
| 53 | Record all findings for use in Phase 3. |
| 54 | |
| 55 | ### Phase 2: Create Todo List |
| 56 | |
| 57 | Build a todo list of changes to make, scoped appropriately: |
| 58 | |
| 59 | - **For scoped customization**: Only include items related to the specific section the user asked about. |
| 60 | - **For generic plugin setup**: Run `grep -rn '~~\w' /path/to/plugin --include='*.md' - |