plugins marketplace
← All plugins

claude-dev-kit

v0.3.0

PRD-driven AI dev team control plane for Claude Code — agents, skills, and a GitHub-first sprint workflow.

Claude Code23 skills

by claude-dev-kit11updated 4 hours ago

Source

git clone https://github.com/pillip/claude-dev-kit

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

claude-dev-kit/
├── .claude-plugin/plugin.json
├── skills/bizanalysis/SKILL.md
├── skills/brainstorm/SKILL.md
├── skills/careful/SKILL.md
├── skills/desktop-uiux/SKILL.md
├── skills/devops/SKILL.md
├── skills/diagnose/SKILL.md
├── skills/figma2proto/SKILL.md
├── skills/freeze/SKILL.md
├── skills/guard/SKILL.md
├── skills/implement/SKILL.md
├── skills/issue/SKILL.md
├── skills/kickoff/SKILL.md
├── skills/migrate/SKILL.md
├── skills/mobile-uiux/SKILL.md
├── skills/prd/SKILL.md
├── skills/refactor/SKILL.md
├── skills/review/SKILL.md
├── skills/scan/SKILL.md
├── skills/ship/SKILL.md
├── skills/spec/SKILL.md
├── skills/sprint/SKILL.md
├── skills/testgen/SKILL.md
└── skills/uiux/SKILL.md

Skills23

bizanalysisskills/bizanalysis/SKILL.md

Analyzes and critiques business viability. Use after /brainstorm and before /prd.

brainstormskills/brainstorm/SKILL.md

Explores ideas and defines problems through free-form conversation. Use before /prd when direction is unclear.

carefulskills/careful/SKILL.md

Activates destructive command warnings for the current session. Use when working in sensitive environments.

desktop-uiuxskills/desktop-uiux/SKILL.md

Establishes a desktop design philosophy based on kickoff outputs, and generates a desktop design system/wireframes/Electron prototype. Recommended flow — /prd → /kickoff → /desktop-uiux

devopsskills/devops/SKILL.md

Set up or update CI/CD pipelines, Dockerfiles, and deployment configs, then create a GH Issue + PR.

diagnoseskills/diagnose/SKILL.md

Analyze a bug from error logs or reproduction steps, fix it, and create a GH Issue + PR.

figma2protoskills/figma2proto/SKILL.md

Fetch Figma design via API and generate a complete design deliverable — prototype HTML, design system, design philosophy, interactions, and copy guide. Supports web, mobile, and desktop platforms.

freezeskills/freeze/SKILL.md

Blocks file edits outside a specified directory boundary. Use to scope work to a specific module.

guardskills/guard/SKILL.md

Activates both careful mode (destructive command warnings) and freeze mode (edit boundary). Use for maximum safety.

implementskills/implement/SKILL.md

Implements a single issue, creates a GitHub Issue/PR, and links them with `Closes

issueskills/issue/SKILL.md

Creates issues from a natural language description — single or batch — and auto-updates related planning and design docs.

kickoffskills/kickoff/SKILL.md

Generates requirements/UX spec/architecture/data model/issues/test plan from a PRD. Runs 6 subagents in sequence.

migrateskills/migrate/SKILL.md

Plan and execute a migration, then create a GH Issue + PR.

mobile-uiuxskills/mobile-uiux/SKILL.md

Establishes a mobile design philosophy based on kickoff outputs, and generates a mobile design system/wireframes/React Native (Expo) prototype. Recommended flow — /prd → /kickoff → /mobile-uiux

prdskills/prd/SKILL.md

Collaboratively writes a PRD through free-form conversation.

refactorskills/refactor/SKILL.md

Improve code structure without changing behavior, then create a GH Issue + PR.

reviewskills/review/SKILL.md

Senior-level review against the PR. Per SPEC-019, delegates correctness + security passes to runtime /code-review and /security-review (primary path), or falls back to the kit's degraded reviewer agent (degraded path) when those runtime skills are not exposed. Layers kit-distinctive checks (over-engineering minimality axis, Figma 3.5-3.10, ui-reviewer, design-auditor, a11y-auditor, tech-debt ledger, native-memory review-lessons learning) on top.

scanskills/scan/SKILL.md

Analyze an existing codebase and generate context documents (architecture, requirements, test plan) for downstream skills.

shipskills/ship/SKILL.md

Finalizes tests/docs/changelog and merges the PR to make it deployment-ready.

specskills/spec/SKILL.md

Writes a tech spec / RFC (docs/specs/SPEC-NNN.md) for a feature flagged Spec-Required, capturing Problem / Options ≥2 / Trade-offs / Decision / Migration / Rollback before code is written.

sprintskills/sprint/SKILL.md

Autonomously implements, reviews, and ships all issues in issues.md, with dynamic issue management.

testgenskills/testgen/SKILL.md

Scan the codebase for missing or hollow tests, generate unit/integration/E2E tests, and create a PR.

uiuxskills/uiux/SKILL.md

Establishes a design philosophy based on kickoff outputs, and generates a design system/wireframes/HTML prototype. Recommended flow — /prd → /kickoff → /uiux

Manifests1

.claude-plugin/plugin.json
{
  "name": "claude-dev-kit",
  "version": "0.3.0",
  "description": "PRD-driven AI dev team control plane for Claude Code — agents, skills, and a GitHub-first sprint workflow.",
  "author": {
    "name": "claude-dev-kit"
  }
}