← All articles
Tools & tutorials7 min read

Master Claude Plugins: The Ultimate Guide (RESOURCES INCLUDED)

Most people use Claude Cowork like a really smart chatbot. That's like buying a Ferrari and driving it in the slow lane.

Most people use Claude Cowork like a really smart chatbot. That's like buying a Ferrari and driving it in the slow lane.

Plugins are what turn Claude from a conversational tool into a specialized agent that orchestrates entire workflows, pulls live data, executes parallel tasks, and hands you back finished work. One command. No manual steps. No friction.

This is the guide I wish existed when I started building with Claude. It covers everything: what plugins actually are, what they unlock, which ones to steal, how to build your own, and the exact prompts to use.

PS: Every week I break down workflows like this inside the Build With AI newsletter. Agents, automations, and step-by-step setups you can run yourself or sell to clients.

Join (free) here.

----------------------------------

What Plugins Actually Are (And Why You're Probably Using Them Wrong)

A plugin is not a single thing. It's a bundle. Think of it like a job description that packages four things together:

1. Skills - Instructions that teach Claude how to do specific tasks (write in your voice, analyze data, research competitors)

2. Connectors - Live links to external tools (Google Drive, Gmail, Slack, Notion, Asana, Salesforce, etc.)

3. Slash Commands - Quick actions you trigger with /command that run entire workflows

4. Sub-agents - Parallel workers that handle pieces of a task simultaneously

Instead of setting up each piece individually (connect tool → load skill → remember which prompt to use → repeat), you install one plugin and immediately have a ready-to-go setup.

Think of it this way:

  • Skills are Lego blocks (individual capabilities)
  • Plugins are the fully assembled set (complete system)

One command runs the entire agentic process. You get finished work, not intermediate output.

Skills vs Plugins: Where Most People Get Confused

This is the biggest point of confusion I see.

Skills are single-purpose instructions. One skill teaches Claude to write in your voice. Another teaches it to format a proposal. You can use skills without a plugin. They work anywhere.

Plugins bundle multiple skills together with the connectors and commands needed to run a complete workflow.

Example:

  • Skill: "Write status update in my communication tone"
  • Plugin: Pull active projects from Notion → Write status update for each client using your communication skill → Drop drafts into Gmail as individual messages → Send

One slash command runs all of it.

The 11 Official Anthropic Plugins (Free, Open Source)

Anthropic shipped these on January 30, 2026. All are free. All are open source. You can customize or fork any of them.

1. Sales Plugin

  • Call prep with prospect research
  • Competitive intelligence and positioning strategy
  • Account planning and strategy
  • Objection handling framework
  • Commands: /sales:call-prep, /sales:account-plan, /sales:objection-handling

2. Marketing Plugin

  • SEO audit analysis for any URL
  • Multi-email sequence generation
  • Competitive intelligence briefs
  • Content brief creation
  • Commands: /marketing:seo-audit, /marketing:email-sequence, /marketing:competitive-brief

3. Legal Plugin

  • Contract review with risk flagging
  • Regulatory compliance checking
  • Clause analysis and recommendations
  • Commands: /legal:contract-review, /legal:compliance-check

4. Finance Plugin

  • Financial modeling and projections
  • Budget analysis and forecasting
  • Cash flow planning
  • Commands: /finance:model, /finance:forecast

5. Customer Support Plugin

  • Ticket response drafting
  • Escalation workflow automation
  • Knowledge base search
  • Commands: /support:draft-response, /support:escalate

6. Product Management Plugin

  • PRD (Product Requirement Document) generation
  • Roadmap planning and prioritization
  • User research synthesis
  • Commands: /product:write-prd, /product:prioritize-roadmap

7. Data Analysis Plugin

  • Dataset cleaning and standardization
  • Dashboard creation
  • Chart and visualization generation
  • Commands: /data:clean-dataset, /data:visualize

8. Enterprise Search Plugin

  • Cross-platform search across all company tools
  • Unified search index
  • Smart filtering and ranking
  • Commands: /search:company-wide

9. Biology Research Plugin

  • Literature review automation
  • Experiment design assistance
  • Research paper analysis
  • Commands: /research:literature-review

10. Productivity Plugin

  • Task management and organization
  • Meeting prep automation
  • Scheduling intelligence
  • Commands: /productivity:prepare-meeting

11. Plugin Create Plugin

  • Build your own plugins from scratch
  • Template generation
  • Command scaffolding
  • Commands: /plugin:create-new

Browse all of them: github.com/anthropics/knowledge-work-plugins

How to Install a Plugin (3 Steps)

  1. Open Claude Cowork
  2. Click Plugins in the sidebar
  3. Click "+" → Browse available plugins → Click "Add plugin"

Done. Plugins you add are saved locally to your machine.

To use a skill from your plugin, type "/" in the chat to see available commands, or click the "+" button and select from your installed plugins.

The Most Useful Slash Commands to Bookmark

Marketing Plugin Commands:

  • /marketing:seo-audit — Analyzes any URL for SEO issues (keyword gaps, technical issues, competitive positioning)
  • /marketing:email-sequence — Generates full multi-email campaigns (hooks, pain points, solution, CTA)
  • /marketing:competitive-brief — Researches competitors and outputs structured competitive analysis

Sales Plugin Commands:

  • /sales:call-prep — Researches a prospect and creates a call brief (background, company, recent news, talking points, objection handling)
  • /sales:account-plan — Builds a strategic account plan (stakeholders, budget, decision process, objections)
  • /sales:objection-handling — Generates responses to common objections

Legal Plugin Commands:

  • /legal:contract-review — Analyzes a contract for risks (liability, termination, payment terms, IP issues)
  • /legal:compliance-check — Checks agreements against regulatory requirements

Data Plugin Commands:

  • /data:clean-dataset — Standardizes messy data (removes duplicates, fixes formatting, handles nulls)
  • /data:visualize — Creates charts and dashboards from raw data

How Connectors Work (And Why They Matter)

Connectors link Claude to external tools. Without them, Claude can only work with what you paste in. With them, Claude can pull live data and act on it.

Available connectors include:

  • Google Drive, Gmail, Google Calendar
  • Slack, Notion, Asana
  • Salesforce, HubSpot, Pipedrive
  • DocuSign, Linear, Monday.com
  • And dozens more

To connect:

  1. Click SettingsConnectors
  2. Browse connectors → Search for your tool
  3. Click to connect (OAuth flow)

Once connected, Claude can search your Drive, read emails, check your calendar, and take actions based on live data.

Example: A plugin can now pull active projects from Notion, write status updates for each client, and drop drafts into Gmail—all without you copying/pasting anything.

How to Customize a Plugin (Make It Yours)

Default plugins are starting points. Click "Customize" on any installed plugin and Claude walks you through adjusting it:

You can customize:

  • Swap connectors to match your tool stack
  • Add your company's terminology and tone
  • Adjust workflows to how your team actually operates
  • Add custom skills specific to your process

Prompt to customize:

Customize this plugin to match how my team actually works.

We use: [list your tools]
Our process for [workflow type] is: [describe it]
Our tone/terminology: [examples]

Update all the skills and commands accordingly.

How to Build Your Own Plugin From Scratch

Use the Plugin Create plugin (meta, I know). Or build from scratch with this structure:

my-plugin/
├── plugin.json # Manifest file
├── commands/ # Slash commands
│ └── my-command.md
├── skills/ # Individual skills
│ └── my-skill/
│ └── SKILL.md
└── .mcp.json # Connector config

Starter prompt:

I want to build a plugin for [your workflow].

Walk me through creating the plugin structure, skills, and commands.

My workflow involves:
1. [Step 1]
2. [Step 2]
3. [Step 3]

The end result should be [what you want delivered].

Copy-Paste Prompts for Building Common Plugins

Build a Client Management Plugin

Build me a client management plugin that:
1. Pulls active projects from Notion (status, timeline, owner)
2. Writes weekly status updates using my communication style
3. Drafts them in Gmail as individual messages ready to send

Include a /send-updates command that runs all steps in parallel.

Build a Content Repurposing Plugin

Build a content repurposing plugin with skills for:
- Turning podcast transcripts into LinkedIn posts
- Creating Twitter threads from articles
- Extracting clip suggestions and timestamps from video scripts

Include commands: /repurpose:podcast, /repurpose:article, /repurpose:video

Build a Competitive Research Plugin

Build a competitive research plugin that:
1. Searches the web for competitor updates
2. Organizes findings into a structured brief (pricing, features, marketing, team)
3. Saves the brief to my Google Drive
4. Sends me a Slack summary

Include commands: /research:company and /market-analysis

Build a Sales Automation Plugin

Build a sales automation plugin that:
1. Pulls open deals from Salesforce
2. Writes personalized follow-up emails for each deal (based on deal stage and history)
3. Analyzes objections and generates response strategies
4. Saves drafts to Gmail

Include a /follow-up:all command.

Build a Proposal Generation Plugin

Build a proposal plugin that:
1. Takes project scope, client name, and timeline as input
2. Generates a professional proposal (executive summary, scope, timeline, pricing, terms)
3. Saves to Google Drive as a document
4. Sends a preview link to the client via email

Include /proposal:generate command.

What Plugins Actually Unlock

Here's the main benefit: Before plugins, you had to manage each piece manually.

  • Connect your tool
  • Load your skill
  • Remember which prompt to use
  • Execute manually
  • Repeat for every task

With plugins:

  • Set up once
  • Run forever
  • One command triggers an entire agentic workflow
  • Finished work delivered where you need it

Before plugins: You spend 30 minutes on manual steps. Claude does 5 minutes of actual work.

With plugins: You type one command. Claude handles everything. Finished work appears in your inbox.

The people who figure this out first will operate like they have a team of 10. The people who don't will wonder why everyone else is moving so fast.

Resources to Master Plugins

Official Docs:

  • Anthropic Plugin GitHub: github.com/anthropics/knowledge-work-plugins
  • Claude Cowork Setup Guide: https://claude.ai/cowork

Communities:

Skills to Learn:

  • MCP (Model Context Protocol) - How to build custom connectors
  • Slash commands - How to trigger workflows
  • Sub-agents - How to parallelize tasks
  • Data passing - How to chain skills together

Your Next Step

  1. Pick one official Anthropic plugin and install it
  2. Try three slash commands from that plugin
  3. Run one command that pulls live data from one of your connected tools
  4. Build your first custom plugin using one of the prompts above

The gap between who uses plugins and who doesn't will be massive by end of 2026.

Start now.

PS: Every week I break down workflows like this inside the Build With AI newsletter. Agents, automations, and step-by-step setups you can run yourself or sell to clients.

Join (free) here.

Corey Ganim / Field notesExplore more articles →
Corey’s Notes

One useful AI system.
Every week.

For operators who want practical ideas they can test in a real business.

Join 11,706+ operators. Free. Unsubscribe anytime.