Linear
Catalyst integrates with Linear via the Linearis CLI, providing ticket management and automatic status progression as you move through the development workflow.
Automatic Status Updates
Section titled “Automatic Status Updates”When you run workflow commands, Catalyst automatically updates Linear ticket status:
| Command | Default State |
|---|---|
/research-codebase (with ticket) | In Progress |
/create-plan (with ticket) | In Progress |
/implement-plan (with ticket) | In Progress |
/describe-pr (with ticket) | In Review |
/merge-pr | Done |
Ticket Detection
Section titled “Ticket Detection”Commands detect tickets automatically from:
- Plan frontmatter:
ticket: PROJ-123 - Filenames:
2025-01-08-PROJ-123-feature.md - Handoff documents
- Worktree directory names
Configuration
Section titled “Configuration”Default Setup (No Configuration Needed)
Section titled “Default Setup (No Configuration Needed)”Standard Linear workspaces already have the states Catalyst needs:
- Backlog, Todo, In Progress, In Review, Done, Canceled
Custom State Mapping
Section titled “Custom State Mapping”For teams with custom Linear states, configure stateMap in .claude/config.json:
{ "catalyst": { "linear": { "stateMap": { "backlog": "Backlog", "todo": "Todo", "research": "Research in Progress", "planning": "Plan in Progress", "inProgress": "In Dev", "inReview": "In Review", "done": "Done", "canceled": "Canceled" } } }}Set any key to null to skip that transition.
Commands
Section titled “Commands”The /linear command provides direct ticket management:
/linear create "Add OAuth support"/linear move PROJ-123 "In Progress"/linear comment PROJ-123 "Started implementation"PM Plugin Integration
Section titled “PM Plugin Integration”The catalyst-pm plugin extends Linear integration with:
/pm:analyze-cycle— Cycle health analysis/pm:analyze-milestone— Milestone progress tracking/pm:groom-backlog— Backlog health and cleanup/pm:sync-prs— GitHub-Linear PR correlation
- Install Linearis:
npm install -g linearis - Get a Linear API token from linear.app/settings/api
- Add to secrets config:
~/.config/catalyst/config-{projectKey}.json
{ "linear": { "apiToken": "lin_api_...", "teamKey": "ACME" }}Why CLI Instead of MCP?
Section titled “Why CLI Instead of MCP?”Linearis CLI uses ~1K tokens vs Linear MCP’s ~13K tokens — a 13x reduction in context cost. For most ticket operations, the CLI provides everything needed at a fraction of the context overhead.