Plugins
Catalyst is distributed as independent Claude Code plugins. Install only the ones you need to keep your context lean and focused.
Available Plugins
Section titled “Available Plugins”| Plugin | Description | Context Cost | Skills | Agents |
|---|---|---|---|---|
| catalyst-dev | Core development workflow — research, plan, implement, validate, ship | ~3.5K | 23 | 10 |
| catalyst-pm | Project management — cycle analysis, backlog grooming, PR sync | Minimal | 40+ | 6 |
| catalyst-meta | Workflow discovery, creation, and management | Minimal | 6 | — |
| catalyst-analytics | Product analytics via PostHog MCP | ~40K | 3 | — |
| catalyst-debugging | Error monitoring via Sentry MCP | ~20K | 3 | 1 |
See the Skills Reference for the complete list of skills per plugin, and Agents for agent details.
Installation
Section titled “Installation”# Add the marketplace/plugin marketplace add coalesce-labs/catalyst
# Install plugins/plugin install catalyst-dev # Required/plugin install catalyst-pm # Optional/plugin install catalyst-analytics # Optional/plugin install catalyst-debugging # Optional/plugin install catalyst-meta # OptionalContext Management
Section titled “Context Management”Plugins with heavy MCP integrations (analytics, debugging) should be enabled only when needed:
/plugin enable catalyst-analytics # +40K context# Do your analysis work.../plugin disable catalyst-analytics # -40K contextMost sessions start with just catalyst-dev (~3.5K tokens) and enable heavier plugins only when needed.
Architecture
Section titled “Architecture”Each plugin contains:
- agents/ — Specialized research agents
- skills/ — Workflow skills (invoked via
/skill-name) - scripts/ — Runtime utilities
- hooks/ — Automatic triggers (e.g., workflow context tracking)
- plugin.json — Manifest with metadata and dependencies
Hooks (catalyst-dev)
Section titled “Hooks (catalyst-dev)”The dev plugin includes three Claude Code hooks that run automatically:
- inject-plan-template — Injects Catalyst’s plan structure guidance when Claude Code is in plan mode.
- sync-plan-to-thoughts — Copies plans to
thoughts/shared/plans/with frontmatter when you exit plan mode. - update-workflow-context — Records document writes to
.catalyst/workflow-context.json, enabling skill chaining.
Updating
Section titled “Updating”claude plugin marketplace update catalyst# Restart Claude Code to load updatesRelease Strategy
Section titled “Release Strategy”Catalyst uses Release Please for automated per-plugin releases with conventional commit messages:
| Prefix | Effect | Example |
|---|---|---|
feat(dev): | Minor bump for catalyst-dev | feat(dev): add new skill |
fix(pm): | Patch bump for catalyst-pm | fix(pm): correct cycle calculation |
feat(dev)!: | Major bump (breaking change) | feat(dev)!: redesign plan format |
chore(meta): | No version bump | chore(meta): update docs |