Add dev-skills: language-agnostic development workflow suite
loading diff…
Development workflows in Claude Code lack structured discipline - developers jump between coding, testing, reviewing, and committing without a consistent process. This leads to missed tests, sloppy commits, and incomplete code reviews.
dev-skills provides 10 interconnected skills that enforce good practices (TDD, root-cause debugging, atomic commits, multi-perspective code review) while staying lightweight - no enterprise gates or mandatory pipelines.
| Skill | What it does |
|---|---|
dev-brainstorm | Validate ideas and design solutions before writing any code |
dev-plan | Write a detailed implementation plan saved to docs/plans/ |
dev-plan-issue | Read a GitHub issue and produce an implementation plan from it |
dev-do | Execute an approved plan task by task with test validation |
dev-tdd | Implement features using RED-GREEN-REFACTOR discipline |
dev-debug | Investigate bugs by finding root causes first |
dev-review | Run a 4-perspective code review in parallel |
dev-commit | Organize changes into clean, atomic Conventional Commits |
dev-pr | Create a GitHub pull request with auto-generated title and description |
dev-explore | Understand an unfamiliar codebase through parallel exploration |
/dev-brainstorm → /dev-plan → /dev-do → /dev-review → /dev-commit → /dev-pr
Tested on Claude Code across Go, Python, and TypeScript projects.