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-devThis skill uses the workspace's default tool permissions.
Automates the full pipeline from Linear issue to structured sub-issues via SpecKit.
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
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