Claude Code Plugins

Community-maintained marketplace

Feedback

Enforces strict Spec-Driven Development. Prevents direct coding and ensures spec → generate → review loops.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name spec-driven-development
description Enforces strict Spec-Driven Development. Prevents direct coding and ensures spec → generate → review loops.

Spec-Driven Development Rules

Golden Rule

Never write or modify code directly. All changes must originate from specifications.

Mandatory Workflow

  1. Analyze requirement
  2. Write or update spec (Markdown)
  3. Generate code via Claude Code
  4. Review output
  5. Refine spec if needed
  6. Regenerate

Required Spec Artifacts

Depending on feature scope:

  • spec.md
  • plan.md
  • tasks.md
  • checklist.md
  • ADR (if architectural)

Forbidden Actions

  • Manual code patches
  • Guessing requirements
  • Skipping specification step

Success Criteria

  • Specs are the single source of truth
  • Code exactly matches specs