Help us improve
Share bugs, ideas, or general feedback.
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.
npx claudepluginhub wvl-kairos/agentic-dev --plugin linear-pluginHow 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.
Creates structured Linear tickets for project planning, feature breakdowns, and bug fixes. Uses Linear as an agent control plane with complete work briefs, status tracking, and dependency management.
Creates structured Linear issues (1 main + N sub-issues) with project linking, title prefixing, and labeling. Supports two workflows: Generic (code tasks) and PRD Pipeline (Korean-language product requirements with content strategy principles).
Manages sudocode specs and issues: view (show_spec, list_issues), create/modify (upsert_spec, upsert_issue), plan features, build dependency graphs, add feedback. Supports markdown editing and Obsidian-style links.
Share bugs, ideas, or general feedback.
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 phases