🦞 4minAI.com
1 / 13
Day 8 of 14 Β· Claude Cowork Challenge

Introduction to Plugins

Welcome to Week 2 of the Claude Cowork Challenge. Over the first seven days, you learned how Cowork operates as a general-purpose AI agent β€” managing files, running sub-agents, and working alongside you in real time. Now it is time to unlock the feature that transforms Cowork from a capable assistant into a domain-specific powerhouse: plugins.

Plugins launched on January 30, 2026, and they represent a fundamental shift in how you interact with Cowork. Instead of crafting elaborate prompts every time you need specialized help, plugins give Cowork pre-built expertise in specific domains β€” from sales call preparation to legal contract review to financial modeling.

Think of plugins as professional skill packs. A fresh install of Cowork is like hiring a brilliant generalist. Installing plugins is like sending that generalist to specialized training programs.

Anatomy of a plugin β€” Skills, Slash Commands, Connectors, Sub-Agents
Each plugin bundles specialized skills, commands, connectors, and sub-agents into one installable package.
What Are Plugins?

The Four Building Blocks

Every plugin is a bundle that can contain up to four types of components:

1. Skills β€” Markdown files that give Cowork domain knowledge and step-by-step procedures. A skill might teach Cowork how to analyze a balance sheet or structure a marketing brief. Skills are written in plain Markdown, which means you can read, edit, and customize them without writing a single line of code.

2. Connectors β€” MCP (Model Context Protocol) integrations that let Cowork reach into external services. A connector might link Cowork to your CRM, your calendar, your document management system, or your analytics platform. Connectors are the bridges between Cowork and the rest of your tool stack.

3. Slash Commands β€” Shortcut triggers that launch specific workflows. Instead of explaining what you need in a paragraph, you type something like `/sales:call-prep` or `/data:write-query` and Cowork immediately knows what to do. Slash commands are fast, consistent, and easy to remember.

4. Sub-agents β€” Specialized background workers that Cowork can spin up for focused tasks. A sub-agent might handle deep research while you continue a separate conversation, or it might process a batch of documents in the background while you work on something else.

The key insight is that plugins are file-based. They are built from Markdown and JSON files β€” no traditional coding required. This means anyone on your team can inspect, modify, or create plugins, regardless of their technical background.

The Official Plugin Library

11 Plugins, One Ecosystem

Anthropic released 11 official open-source plugins at launch. Each one targets a specific professional domain:

| Plugin | Focus Area |

|--------|-----------|

| Productivity | Task management, calendars, personal workflows |

| Enterprise Search | Finding information across company tools |

| Marketing | Content drafting, campaign planning, launch management |

| Sales | Prospect research, deal preparation, CRM integration |

| Legal | Contract review, risk flagging, compliance tracking |

| Finance | Cash flow analysis, financial models, metrics tracking |

| Support | Customer support workflows, ticket management |

| Product | Product management, specs, roadmap planning |

| Data Analysis | SQL queries, data exploration, visualization |

| Research | Deep research with citations and source tracking |

| Plugin Create | Building your own custom plugins from scratch |

Because these plugins are open-source, you can study how they work, fork them, and adapt them for your specific needs. They serve as both practical tools and learning resources for building your own plugins later in this course.

πŸ€–
Claude Cowork
online
I just installed Cowork and I'm looking at the Plugins tab. There are so many options. Which plugins should I install first?
Great question! I'd recommend starting with two or three plugins that match your daily work, rather than installing all eleven at once. Here's my suggested approach: **Start with Productivity** β€” This one benefits everyone. It helps with task management, calendar awareness, and building personal workflows. Think of it as your foundation plugin. **Then pick one domain plugin** β€” If you're in sales, install Sales. If you work with contracts, install Legal. Choose the one that matches what you spend the most time on. **Consider Research** β€” The Research plugin is broadly useful across roles. It lets me do deep dives with proper citations, which is valuable whether you're preparing a report, writing a proposal, or investigating a market. To install any of them, go to the **Cowork tab**, click **Plugins**, browse the library, and click **Install** on the ones you want. Each plugin will add its skills and slash commands to my capabilities immediately. You can always add more later β€” there's no penalty for starting small and expanding as you get comfortable.
↻ Replay conversation
Installing and Customizing

Making Plugins Your Own

Installing a plugin is straightforward: open the Cowork tab, navigate to Plugins, browse the available options, and click Install. The plugin's skills, connectors, slash commands, and sub-agents become available immediately β€” no restart required.

But installation is just the beginning. Because plugins are file-based, you can customize them after installation:

- Edit skill files to add your company's specific terminology, processes, or preferences. For example, you might update the Sales plugin's call prep skill to include your company's unique value propositions.

- Adjust slash commands to match your team's naming conventions or add new triggers for workflows you use frequently.

- Configure connectors to point at your specific tool instances β€” your Salesforce org, your Jira project, your Google Workspace.

- Add new skills to existing plugins. If the Marketing plugin covers content drafting but not your specific social media workflow, you can add a skill file for that.

This customization model means plugins are starting points, not rigid tools. The official plugins give you a solid foundation, and you shape them to fit your exact needs.

πŸ€–
Claude Cowork
online
How do I customize a plugin after installing it? I want to tweak the Sales plugin to include our company's product details.
Since plugins are file-based, you can customize them directly. Here's how: 1. **Find the plugin files** β€” After installation, the Sales plugin's skill files live in your Cowork plugins directory. They're plain Markdown files you can open in any text editor. 2. **Edit the skill content** β€” Open the call-prep skill file and add your company's product details, key differentiators, pricing tiers, or competitive positioning. I'll use this information every time you run `/sales:call-prep`. 3. **Add new skills** β€” Create a new Markdown file in the plugin directory with your custom workflow. For example, you could add a `quarterly-review-prep.md` skill. 4. **Test your changes** β€” After saving, your changes take effect immediately. Try running the relevant slash command to make sure everything works as expected. No coding required β€” it's all Markdown and JSON.
↻ Replay conversation
Building From Scratch

Plugin Create β€” Your Custom Plugin Workshop

The eleventh official plugin, Plugin Create, is different from the others. It is not a domain plugin β€” it is a meta-plugin that helps you build entirely new plugins from scratch.

With Plugin Create, you describe the workflow you want to automate, and Cowork generates the plugin structure for you: the skill files, the slash commands, the connector configurations, and the directory layout. You can then refine and customize the generated plugin until it matches your exact needs.

We will dive deep into building custom plugins on Day 12. For now, know that Plugin Create exists and that it dramatically lowers the barrier to creating team-specific tooling. If your team has a workflow that none of the 11 official plugins cover, you are not stuck β€” you can build exactly what you need.

Knowledge Check
What are the four building blocks that can make up a Cowork plugin?
A
Templates, automations, triggers, and dashboards
B
APIs, webhooks, databases, and frontends
C
Models, prompts, chains, and tools
D
Skills, connectors, slash commands, and sub-agents
Every Cowork plugin is a bundle that can contain up to four component types: skills (Markdown-based domain knowledge), connectors (MCP integrations with external services), slash commands (shortcut triggers for workflows), and sub-agents (specialized background workers).
Knowledge Check
What file formats are Cowork plugins built from?
A
Python and YAML
B
HTML and CSS
C
JavaScript and TypeScript
D
Markdown and JSON
Cowork plugins are entirely file-based, built from Markdown and JSON files. This means no traditional coding is required to create, inspect, or customize plugins β€” anyone on your team can work with them.
Knowledge Check
How many official open-source plugins did Anthropic release at launch?
A
5
B
11
C
8
D
15
Anthropic released 11 official open-source plugins at launch on January 30, 2026: Productivity, Enterprise Search, Marketing, Sales, Legal, Finance, Support, Product, Data Analysis, Research, and Plugin Create.
Knowledge Check
What is the Plugin Create plugin used for?
A
Managing plugin permissions and access control
B
Updating existing plugins to newer versions
C
Creating visual dashboards for plugin analytics
D
Building entirely new custom plugins from scratch
Plugin Create is a meta-plugin that helps you build new plugins from scratch. You describe the workflow you want, and Cowork generates the plugin structure β€” skill files, slash commands, connector configurations, and directory layout β€” which you can then refine.
πŸ”Œ
Day 8 Complete
"Plugins transform Cowork from a smart generalist into a domain expert β€” and because they're just Markdown and JSON, you can customize or create them without writing code."
Tomorrow β€” Day 9
Productivity & Research Plugins
Explore the Productivity, Research, and Enterprise Search plugins to supercharge your daily work.
πŸ”₯1
1 day streak!