From linear-plugin
End-to-end workflow that reads a Linear issue, runs it through SpecKit (specify, plan, tasks), and syncs phases back as sub-issues. Use when someone asks to break down a Linear issue into sub-issues, create a spec from a Linear issue, or run the full Linear-to-SpecKit pipeline.
How this skill is triggered — by the user, by Claude, or both
Slash command
/linear-plugin:linear-speckit-workflowThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Automates the full pipeline from Linear issue to structured sub-issues via SpecKit.
Automates the full pipeline from Linear issue to structured sub-issues via SpecKit.
This skill orchestrates the complete workflow:
Run the Linear-SpecKit workflow for PDEV-156
/linear.read PDEV-156 # Step 1: Read issue from Linear
/speckit.specify # Step 2: Create spec.md from issue description
/speckit.plan # Step 3: Create plan.md (implementation design)
/speckit.tasks # Step 4: Create tasks.md (task breakdown)
/linear.sync PDEV-156 # Step 5: Push phases back to Linear as sub-issues
Linear Issue --> SpecKit Artifacts --> Linear Sub-issues
| | |
/linear.read /speckit.specify /linear.sync
/speckit.plan
/speckit.tasks
/mcp then authenticate with Linear workspace)uv tool install specify-cli --from git+https://github.com/github/spec-kit.git)specify init . --ai claude)Connect Linear via MCP:
claude mcp add --transport sse linear-server https://mcp.linear.app/sse
Then authenticate:
Run /mcp command to authenticate with Linear (must be in the correct workspace)
After running the workflow:
project/
├── .specify/
│ └── memory/
│ └── linear-context.json # Saved Linear issue context
└── specs/
└── <feature>/
├── spec.md # Feature specification
├── plan.md # Implementation plan
└── tasks.md # Task breakdown by phase
/linear.read - Read a Linear issue and save context/linear.sync - Create sub-issues from SpecKit phasesnpx claudepluginhub wvl-kairos/agentic-dev --plugin linear-pluginTransforms project descriptions, feature requests, or codebases into well-structured Linear issues with clear deliverables and acceptance criteria. Requires the official Linear MCP server.