A Claude Code custom skill that turns Claude into a Tech Lead — coordinating parallel Worker Agents through a full dev workflow: PRD alignment, architecture, coding, QA, and PR review.
# Add to your Claude Code skills
git clone https://github.com/hnaymyh123-henry/claude-dev-skillGuides for using ai agents skills like claude-dev-skill.
Last scanned: 5/30/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-05-30T16:34:16.430Z",
"npmAuditRan": true,
"pipAuditRan": true
}claude-dev-skill is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by hnaymyh123-henry. A Claude Code custom skill that turns Claude into a Tech Lead — coordinating parallel Worker Agents through a full dev workflow: PRD alignment, architecture, coding, QA, and PR review. It has 112 GitHub stars.
Yes. claude-dev-skill passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/hnaymyh123-henry/claude-dev-skill" and add it to your Claude Code skills directory (see the Installation section above).
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh claude-dev-skill against similar tools.
No comments yet. Be the first to share your thoughts!
A custom skill for Claude Code that turns Claude into a Tech Lead coordinating multiple AI Worker Agents through a complete software development workflow — from requirements alignment to PR merge.
Most AI coding tools give you a smart autocomplete. /dev gives you an engineering process.
| Without /dev | With /dev |
|---|---|
| Claude writes code directly in chat | Claude acts as Tech Lead — never writes code itself |
| No structure, easy to lose track | 6-phase SOP from PRD to merge |
| Single-threaded, one thing at a time | Multiple Worker Agents develop in parallel worktrees |
| You catch conflicts at merge time | Pre-coding conflict scan catches overlaps before they start |
| Security review is manual | bandit + pip-audit / npm audit run mandatorily before every Review |
You: /dev I want to build a Todo app with user auth and task management
Claude (Tech Lead)
│
├─ Phase 0 ── Classify request → New Project
├─ Phase 1 ── Align on PRD (2-round confirmation)
├─ Phase 2 ── Architecture decisions + GitHub Issues
│
├─ Phase 3 ── Spawn Worker Agents (parallel worktrees)
│ ├─ Worker A: Auth module
│ ├─ Worker B: Task CRUD API
│ └─ Worker C: Frontend components
│
├─ Phase 3.5 ── QA Agent static verification
├─ Phase 4 ── Code Review + merge (7-item checklist)
└─ Phase 5 ── Retro + next iteration loop
/dev is a multi-agent software development SOP covering:
bandit + pip-audit / npm audit run mandatorily before Review| Tool | Notes |
|---|---|
| Claude Code | Anthropic official CLI, login required |
GitHub CLI (gh) |
For Issues, PRs, repos — run gh auth login first |
| Git | Version control |
Option 1: Script (recommended)
# macOS / Linux — English version
bash install.sh --lang en
# macOS / Linux — Chinese version
bash install.sh --lang zh
# Windows PowerShell — English
.\install.ps1 -Lang en
# Windows PowerShell — Chinese
.\install.ps1 -Lang zh
Option 2: Manual
Copy all files from en/commands/ (or zh/commands/) into ~/.claude/commands/, keeping the directory structure:
~/.claude/commands/
dev.md
dev/
phase1.md
phase2.md
phase3.md
phase4.md
worker-new.md
worker-fix.md
qa-agent.md
PROJECT_CONTEXT_TEMPLATE.md
In Claude Code, type:
/dev [optional description]
Examples:
/dev I want to build a Todo app with user registration and task management
/dev
Claude will automatically classify the request type and enter the corresponding flow.
claude-dev-skill/
├── README.md # This file (English)
├── README.zh.md # Chinese version
├── LICENSE
├── install.sh # macOS/Linux installer
├── install.ps1 # Windows installer
├── en/ # English skill files
│ └── commands/
│ ├── dev.md
│ └── dev/
│ ├── phase1.md ~ phase5.md
│ ├── worker-new.md
│ ├── worker-fix.md
│ ├── qa-agent.md
│ └── PROJECT_CONTEXT_TEMPLATE.md
└── zh/ # Chinese skill files
└── commands/
└── dev/ ...
Best suited for:
Not suited for:
Issues and PRs are welcome. If you have ideas for new phases, agent roles, or language support, open an Issue first to discuss.
MIT — see LICENSE