Linear-driven planning→QA flow: PRDs, issue breakdown, plan grilling, design mockups, test planning, QA execution, and post-incident reports. Bundles the to-prd, to-issues, grill-with-docs, plan-design, plan-qa, qa, and pir skills.
Grilling session that challenges your plan against the existing domain model, sharpens terminology, and updates documentation (CONTEXT.md, ADRs) inline as decisions crystallise. Use when user wants to stress-test a plan against their project's language and documented decisions.
Generate a post-incident report (PIR) from the current session and write it to docs/pir/. Use this skill whenever the user types "/pir", "write a PIR", "write up what happened", "document this incident", "post-incident report", "post-mortem", or "incident retrospective". Use it proactively whenever a debugging session, production outage, failed deployment, data migration incident, or any problem-solving session is winding down — even if the user doesn't explicitly say "PIR". The output is a structured markdown document capturing the timeline, root cause, impact, resolution, and lessons learned.
Design planning entry point — reads DESIGN.md, CONTEXT.md, and ADRs plus a Linear issue, identifies all UI surfaces that need design, lets you choose which to work through, then for each surface conducts an alignment interview, generates three layout-archetype mockups via OpenAI image generation, lets you pick one, produces an HTML/CSS implementation, and attaches it to the Linear issue. Use when starting design work on any feature, when you need visual options before committing to layout, or any time you want a Linear ticket to carry its own design artifacts.
Test-planning entry point — reads a Linear issue and its acceptance criteria (plus the repo's test conventions if available), then drafts a comprehensive, layer-aware test plan — per-AC scenarios (happy path, edge, negative) each tagged with a test layer and an expected result, the auth roles / fixtures / data setup needed, the visual states to verify, and the regression watch areas. Shows you the draft for approval, then attaches it to the ticket as <issue-id>-test-plan.md so the qa skill can execute against it later. Use this skill whenever you are refining or grooming a ticket, planning QA before implementation, or whenever someone says "/plan-qa", "plan the QA", "write a test plan", "what should we test for this ticket", "QA plan", "test strategy for this issue", or "how do we verify this" — even if they don't say the words "plan-qa".
Software QA skill — validates that current code changes satisfy the linked Linear issue. Fetches the issue, reads acceptance criteria, executes the ticket's attached test plan when one exists (produced by /plan-qa), runs every test layer it finds, and uses Playwright to visually verify the UI against any design attachments on the ticket. Use whenever the user wants to QA a feature, verify a fix, check that code matches a ticket's acceptance criteria, run a pre-merge review, or confirm the UI looks right against a design. Trigger on — "/qa", "run QA", "QA this", "verify the feature", "does this match the ticket", "check AC", "acceptance criteria check", "visual QA", "playwright verify", "does this pass QA".
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
A curated set of Claude Code plugins that add structured workflows to your AI sessions — from Linear planning and QA, to billable hour tracking, to prose rewriting. Each plugin bundles several related skills you install once and use across every project.
Requires Claude Code v1.0.33 or later.
Some plugins reach outside Claude Code itself. Check what you need before installing:
| Plugin | External dependencies |
|---|---|
delivery | Linear MCP (all skills); Playwright MCP (/qa visual verification); OPENAI_API_KEY env var (/plan-design image generation) |
meta | None — runs entirely inside Claude Code |
specialist | None — connects to your project's database at runtime |
track | jq, git (both must be on your PATH) |
writing | None |
If you already know which plugin you want:
/plugin install delivery@mvdmakesthings
/plugin install writing@mvdmakesthings
/plugin install track@mvdmakesthings
/plugin install meta@mvdmakesthings
/plugin install specialist@mvdmakesthings
Add the marketplace first, then explore from the Discover tab:
/plugin marketplace add mvdmakesthings/skills
Then open the plugin browser:
/plugin
Navigate to the Discover tab and install what you need.
| Plugin | What it does |
|---|---|
delivery | Linear-driven planning → QA flow: PRDs, issue slicing, plan grilling, design mockups, test planning, QA execution, and post-incident reports |
writing | Humanize AI-sounding prose; storytelling coach for pitches, talks, and memos |
track | Billable hours timer backed by a git-versioned plaintext ledger |
meta | Improve your own skills: capture session friction, then evolve SKILL.md files with your approval |
specialist | Domain-expert personas: a Postgres-first DBA for audits, schema design, index/bloat cleanup, slow-query diagnosis, and live incident investigation |
delivery/plugin install delivery@mvdmakesthings
A full planning-to-QA pipeline built around Linear. Skills chain together — /to-prd → /to-issues → /plan-design + /plan-qa → /qa — but each one works independently.
| Command | What it does | Requires |
|---|---|---|
/to-prd | Synthesizes the current conversation into a PRD and publishes it to Linear | Linear MCP |
/to-issues | Slices a plan, spec, or PRD into independently-grabbable Linear issues — each a thin vertical slice with its own acceptance criteria | Linear MCP |
/grill-with-docs | Challenges a plan against your CONTEXT.md and ADRs one question at a time, resolves terminology conflicts, and writes decisions back into those docs inline | CONTEXT.md / ADRs |
/plan-design <issue-id> | Reads a Linear issue, interviews you per UI surface, generates three layout mockups via OpenAI image generation, builds HTML/CSS for the one you pick, and attaches it to the ticket | Linear MCP, OPENAI_API_KEY |
/plan-qa <issue-id> | Drafts a layer-aware test plan from a ticket's acceptance criteria and attaches it as <issue-id>-test-plan.md for /qa to execute | Linear MCP |
/qa [issue-id] | Maps acceptance criteria to coverage, runs every test layer, executes the attached test plan, and screenshots the UI against design attachments | Linear MCP, Playwright MCP |
/pir | Guides a post-incident retrospective: surfaces what broke, why, and what changes prevent recurrence — produces a structured PIR document | None |
writing/plugin install writing@mvdmakesthings
| Command | What it does | Requires |
|---|---|---|
/writing:human [prompt] | Rewrites prose so it reads like a person wrote it — strips the vocabulary and sentence patterns that flag text as AI-generated | None |
storyteller-guidance | A storytelling coach for pitches, talks, and memos. Auto-triggers on pitch / talk / memo phrasing. Draws from a 54-card tactic deck | None |
track/plugin install track@mvdmakesthings
| Command | What it does |
|---|---|
/track:start <client> | Start a billable timer for a named client |
/track:stop [note] | Stop the active timer with an optional session note |
/track:pause | Pause the active timer |
/track:resume | Resume a paused timer |
/track:status | Show the active timer and today's totals per client |
/track:report | Print an invoice-ready rollup with hours and dollar totals |
Sessions are recorded to a git-versioned JSONL ledger under ~/.time-tracker/. Requires jq and git on your PATH.
meta/plugin install meta@mvdmakesthings
npx claudepluginhub mvdmakesthings/skills --plugin deliveryRefinement-time test planning: reads a Linear issue's acceptance criteria and the repo's test conventions, then drafts a layer-aware test plan — per-AC scenarios tagged with a test layer and an expected result, plus auth roles, fixtures, visual states, and regression watch areas — and after your approval attaches it to the ticket as <issue-id>-test-plan.md for the qa skill to execute against.
Domain-expert personas that drop into any project and work with its conventions: a Postgres-first DBA (/dba) for health audits, schema design, index/bloat cleanup, slow-query diagnosis, and live incident investigation.
Console-native billable hours tracker with git-versioned plaintext ledger.
Writing toolkit: humanize AI-sounding prose (/writing:human) and a storytelling coach for pitches, talks, and memos. Bundles the human-voice-writer and storyteller-guidance skills.
Skills that improve other skills — session reflection, friction logging, and HITL-gated SKILL.md evolution.
Comprehensive skill pack with 66 specialized skills for full-stack developers: 12 language experts (Python, TypeScript, Go, Rust, C++, Swift, Kotlin, C#, PHP, Java, SQL, JavaScript), 10 backend frameworks, 6 frontend/mobile, plus infrastructure, DevOps, security, and testing. Features progressive disclosure architecture for 50% faster loading.
Develop, test, build, and deploy Godot 4.x games with Claude Code. Includes GdUnit4 testing, web/desktop exports, CI/CD pipelines, and deployment to Vercel/GitHub Pages/itch.io.
Upstash Context7 MCP server for up-to-date documentation lookup. Pull version-specific documentation and code examples directly from source repositories into your LLM context.
A growing collection of Claude-compatible academic workflow bundles. Covers scientific figures, manuscript writing and polishing, reviewer assessment, citation retrieval, data availability, paper reading, literature search, response letters, paper-to-PPTX conversion, and evidence-grounded Chinese invention patent drafting. Rules are organized as reusable skill folders with explicit workflows and quality checks.
UI/UX design intelligence. 67 styles, 161 palettes, 57 font pairings, 25 charts, 15 stacks (React, Next.js, Vue, Svelte, Astro, SwiftUI, React Native, Flutter, Tailwind, shadcn/ui, Nuxt, Jetpack Compose). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient.
Comprehensive PR review agents specializing in comments, tests, error handling, type design, code quality, and code simplification