Skip to main content

1-2-3 Quick Start: Enterprise Plugins

Get enterprise AI workflows working in 3 steps. CODITECT integrates Anthropic's 11 enterprise plugins with enhanced memory, multi-LLM routing, and MoE verification.

Step 1: Discover Available Plugins

# List all enterprise plugins
/plugin list

# Search for specific capability
/plugin search "sales outreach"
/plugin search "financial reconciliation"
/plugin search "ticket triage"

# Get details on a plugin
/plugin info anthropic/sales
/plugin info anthropic/finance

Available Plugins (11 Enterprise Workflows)

PluginDomainSkillsCommandsUse For
anthropic/salesSales63Outreach, call prep, pipeline review
anthropic/customer-supportSupport55Ticket triage, response drafting
anthropic/financeFinance6-Journal entries, reconciliation, audit
anthropic/product-managementProduct6-Specs, roadmaps, user research
anthropic/marketingMarketing5-Content, campaigns, brand voice
anthropic/legalLegal6-Contracts, compliance, NDA review
anthropic/dataData/Analytics7-SQL queries, dashboards, analysis
anthropic/enterprise-searchSearch32Cross-tool search, knowledge synthesis
anthropic/bio-researchLife Sciences6-Literature, genomics, protocols
anthropic/productivityPersonal2-Tasks, calendars, daily workflow
anthropic/cowork-plugin-managementMeta1-Create/customize plugins

Total: 53 skills, 10 commands


Step 2: Use Plugins (3 Ways)

Option A: Natural Language (Auto-Routing)

Just describe what you need - the enterprise-plugins skill auto-routes:

User: "Draft an outreach email to the VP of Engineering at Stripe"
→ Routes to: anthropic/sales/skills/draft-outreach
→ Executes: Research → Personalized draft

User: "Triage this support ticket and suggest a response"
→ Routes to: anthropic/customer-support/skills/ticket-triage
→ Executes: Categorize → Priority → Response draft

User: "Reconcile Q4 bank statements with the general ledger"
→ Routes to: anthropic/finance/skills/reconciliation
→ Executes: Match transactions → Flag discrepancies → Report

Option B: Explicit Plugin Commands

# Sales workflows
/plugin:sales call-prep "Meeting with Acme Corp CEO tomorrow"
/plugin:sales pipeline-review "Q1 enterprise segment"
/plugin:sales draft-outreach "VP Engineering at Stripe"

# Finance workflows
/plugin:finance reconciliation "Q4 bank statements vs GL"
/plugin:finance journal-entry "Prepare month-end accruals"

# Support workflows
/plugin:customer-support triage "Customer complaint about billing"
/plugin:customer-support draft-response "Refund request ticket #4521"

# Data workflows
/plugin:data write-query "Monthly revenue by product, last 12 months"
/plugin:data analyze "Customer churn patterns in Q4"

Option C: Direct Skill Invocation

# Invoke specific skill
/skill anthropic/sales/draft-outreach "Cold email to CTO at TechCorp"
/skill anthropic/finance/variance-analysis "Budget vs actual Q4"
/skill anthropic/legal/contract-review "Review attached NDA"

Step 3: Customize & Extend

Install Plugins Locally

# Install all enterprise plugins
/plugin install anthropic/sales
/plugin install anthropic/finance
/plugin install anthropic/customer-support

# Install to specific project
cd /path/to/project
/plugin install anthropic/sales --local

Connect Your Tools (MCP)

Plugins work standalone but get supercharged with MCP connectors:

# View available connectors
/plugin connectors anthropic/sales

# Configure CRM integration
/plugin configure anthropic/sales --connector hubspot
PluginKey Connectors
salesHubSpot, Salesforce, Clay, ZoomInfo
financeSnowflake, BigQuery, Databricks
supportIntercom, Zendesk, Jira
dataSnowflake, Databricks, BigQuery, Hex
enterprise-searchSlack, Notion, Confluence

Create Custom Plugins

# Fork existing plugin for customization
/plugin fork anthropic/sales my-sales
/plugin configure my-sales

# Create new plugin from scratch
/plugin new my-workflow "Custom enterprise workflow"

# Convert CODITECT workflow to plugin
/agent plugin-developer "Convert Track C devops workflows to plugin"

Command Reference

/plugin Command

# Discovery
/plugin list # List all plugins
/plugin search <query> # Search by capability
/plugin info <name> # Plugin details
/plugin marketplace # Browse marketplace

# Installation
/plugin install <name> # Install plugin
/plugin update <name> # Update to latest
/plugin uninstall <name> # Remove plugin

# Usage
/plugin:<name> <command> # Run plugin command
/plugin connectors <name> # View connectors
/plugin configure <name> # Configure plugin

# Development
/plugin new <name> <desc> # Create plugin
/plugin fork <name> <new> # Clone for customization
/plugin validate <path> # Validate structure
/plugin publish <path> # Publish to marketplace

Natural Language Triggers

These phrases auto-activate enterprise plugins:

PhraseRoutes To
"draft outreach", "cold email", "reach out to"sales/draft-outreach
"call prep", "prep for meeting", "prepare for call"sales/call-prep
"pipeline review", "deal analysis"sales/pipeline-review
"triage ticket", "categorize support"customer-support/ticket-triage
"draft response", "reply to customer"customer-support/response-drafting
"reconcile accounts", "bank reconciliation"finance/reconciliation
"journal entry", "prepare entries"finance/journal-entry-prep
"write SQL", "run query", "data query"data/sql-queries
"analyze data", "data exploration"data/data-exploration
"review contract", "NDA review"legal/contract-review
"compliance check", "regulatory"legal/compliance
"write spec", "feature spec"product-management/feature-spec
"roadmap", "update roadmap"product-management/roadmap-management
"search across", "find in tools"enterprise-search/search-strategy

Architecture Overview

┌─────────────────────────────────────────────────────────────────┐
│ CODITECT PLUGIN ARCHITECTURE │
├─────────────────────────────────────────────────────────────────┤
│ │
│ User Request → enterprise-plugins skill → Plugin Router │
│ │ │
│ ▼ │
│ ┌─────────────────────────────────────────────────────────────┐│
│ │ LAYER 1: ANTHROPIC FOUNDATION ││
│ │ external/anthropic-knowledge-work-plugins/ ││
│ │ • 11 plugins, 53 skills, 10 commands ││
│ │ • Reference implementations ││
│ └─────────────────────────────────────────────────────────────┘│
│ │ │
│ ▼ │
│ ┌─────────────────────────────────────────────────────────────┐│
│ │ LAYER 2: CODITECT ADAPTERS ││
│ │ plugins/adapters/ ││
│ │ • Memory integration (/cxq for context) ││
│ │ • Track alignment (PILOT integration) ││
│ │ • Multi-LLM routing ││
│ │ • MoE verification ││
│ └─────────────────────────────────────────────────────────────┘│
│ │ │
│ ▼ │
│ ┌─────────────────────────────────────────────────────────────┐│
│ │ LAYER 3: CODITECT STANDARD PLUGINS ││
│ │ plugins/enterprise/ ││
│ │ • 1000+ workflow conversions (planned) ││
│ │ • Track-specific plugins (devops, security, docs) ││
│ └─────────────────────────────────────────────────────────────┘│
│ │ │
│ ▼ │
│ ┌─────────────────────────────────────────────────────────────┐│
│ │ LAYER 4: CUSTOM PLUGINS ││
│ │ plugins/custom/ ││
│ │ • Organization-specific workflows ││
│ │ • Forked & customized plugins ││
│ └─────────────────────────────────────────────────────────────┘│
│ │
└─────────────────────────────────────────────────────────────────┘

Quick Examples

Sales: Prep for a Call

User: Prep me for my call with Sarah Chen, CTO at DataFlow Inc, tomorrow at 2pm

Claude:
# Call Prep: Sarah Chen @ DataFlow Inc
**Meeting:** Tomorrow 2pm | **Duration:** 30 min (estimated)

## Research Summary
- **Company:** DataFlow Inc - Series B data infrastructure startup ($45M raised)
- **Sarah Chen:** CTO, previously Staff Engineer at Stripe, MIT CS grad
- **Recent news:** Just launched real-time analytics product (TechCrunch, Jan 2026)

## Talking Points
1. **Their challenge:** Scaling data pipelines (mentioned in podcast interview)
2. **Our fit:** [Your product's data handling capabilities]
3. **Hook:** Their new analytics product needs reliable infrastructure

## Questions to Ask
- How are you handling the load from the new analytics launch?
- What's your biggest infrastructure pain point right now?

## Potential Objections & Responses
- "We build everything in-house" → [Response strategy]

Finance: Month-End Reconciliation

User: Reconcile January bank statement with GL

Claude:
# Bank Reconciliation: January 2026
**Period:** 2026-01-01 to 2026-01-31

## Summary
| Item | Bank | GL | Difference |
|------|------|-----|------------|
| Opening Balance | $142,500.00 | $142,500.00 | $0.00 |
| Deposits | $89,250.00 | $89,250.00 | $0.00 |
| Withdrawals | $67,825.00 | $68,125.00 | **($300.00)** |
| Closing Balance | $163,925.00 | $163,625.00 | **$300.00** |

## Discrepancies Found
1. **Check #4521** - $300.00 recorded in GL but not yet cleared
- Status: Outstanding check
- Action: No adjustment needed, will clear in February

## Reconciliation Complete
- [x] All deposits matched
- [x] Discrepancy explained (outstanding check)
- [x] Closing balance reconciled

DocumentPurpose
ADR-152Plugin architecture design
ADR-153Plugin development framework
/plugin commandFull command reference
enterprise-plugins skillAuto-routing skill
Anthropic READMEUpstream documentation

Troubleshooting

IssueSolution
Plugin not foundRun /plugin list to see installed plugins
Command not recognizedUse /plugin info <name> to see available commands
No connectors configuredPlugins work standalone; connectors enhance capabilities
Custom plugin not loadingRun /plugin validate <path> to check structure

Track: H (Framework Autonomy) Task ID: H.21.8

Version: 1.0.0 Created: 2026-02-03 Author: CODITECT Team