Anthropic open-sources Knowledge Work Plugins to turn Claude into role-specific digital coworker
Anthropic has released Knowledge Work Plugins, an open-source framework that integrates Claude with role-specific business data sources. Developers can use this to build highly contextual, multi-step agent workflows.
Why it matters
These pre-built plugins let you connect Claude directly to Jira, GitHub, and Slack, bypassing months of custom tool-calling boilerplate.
TL;DR
- 01Clone the Knowledge Work Plugins repository to examine Anthropic's official multi-step agent patterns.
- 02Expose Slack, GitHub, and Jira endpoints as secure Model Context Protocol tools for Claude Code.
- 03Leverage prompt caching on the aggregated document payloads to keep continuous orchestration costs low.
Key facts
- Number of open-sourced plugins
- 11
- Plugin core components
- Manifest, Commands, Skills
Architecture Overview
Anthropic has released 11 open-source plugins designed to transform Claude into a specialized coworker. These plugins leverage a file-based architecture (.claude-plugin/plugin.json) containing manifests, slash commands for explicit actions (e.g., /sales:call-prep), and skills for automated domain knowledge. Connectors bridge the gap to enterprise tools like Slack, Notion, Jira, and Snowflake via MCP servers.
Deployment and Customization
Installation is streamlined via the command claude plugin marketplace add anthropics/knowledge-work-plugins. Because the architecture is strictly file-based—relying on markdown and JSON with no complex build steps—it is designed for immediate modification. Developers can customize behavior by editing .mcp.json to swap connectors or by injecting specific terminology and processes into the skills/ directory.
Practical Utility
Plugins are structured to minimize manual effort for specific roles like Finance, Product Management, or Legal. By pre-configuring dependencies, Claude can automatically manage calendars, reconcile financial statements, or synthesize user research. These plugins serve as generic starting points that become 'production-ready' once company-specific context is added.
Try it in 2 minutes
claude plugin marketplace add anthropics/knowledge-work-pluginsbash
✓ When to use
- When automating repetitive role-specific workflows
- When integrating disparate enterprise data sources
Sources