All tools
AgentCommunity268

Claude Dev Team (NYCU)

Updated Jul 5, 2026

12 Claude subagents representing distinct engineering roles (planner, fullstack-engineer, refactor-specialist, migration-engineer, frontend-designer, critic, vuln-verifier, debugger, db-expert, onboarder, tool-expert, web-researcher) plus 15 automation hooks and the P7/P9/P10 methodology that enforces closure, fact-driven reviews, and exhaustiveness.

View on GitHub

What it does

  • /plugin install devteam@my-claude-devteam

    Install all 12 agents and 15 hooks via the Claude Code plugin marketplace.

  • critic agent

    Finds 20–30 issues on mid-sized modules with file path and line number on every finding. No "looks good to me" verdicts.

  • vuln-verifier agent

    Writes actual PoC tests to prove security findings are real — attack input AND baseline control input required.

  • debugger agent

    Traces root cause through logs and code before any fix. Stops after 3 failed hypotheses rather than retrying the same approach.

  • commit-quality hook

    Pre-commit hook that blocks commits containing debugger statements or hardcoded secrets in JS/TS/Python files.

  • P7/P9/P10 methodology

    Three red lines enforced in every agent: closure discipline (clear Definition of Done), fact-driven (cite file + line), and exhaustiveness (no silent skips).

Files (1)

OVERVIEW.mdprimary · markdown · 2.4 KB
## What it does

12 Claude subagents representing distinct engineering roles, 15 automation hooks, and the P7/P9/P10 methodology — a discipline system borrowed from Chinese big-tech engineering culture that enforces closure, fact-driven reviews, and exhaustiveness.

**The 12 agents:**

| Role | Agent | What they do |
|------|-------|--------------|
| Tech Lead | planner | Breaks fuzzy requirements into parallelizable Task Prompts with a 6-element contract. Never writes code. |
| Senior Engineer | fullstack-engineer | Ships features via P7: read reality → design → impact analysis → implement → 3-question self-review → [P7-COMPLETION]. |
| Refactor Lead | refactor-specialist | Large-scale safe refactors across 10+ files with atomic commits and single-revert rollback. |
| Migration Lead | migration-engineer | Framework/library major-version upgrades with changelog-based incremental execution. |
| Designer | frontend-designer | Builds landing pages and dashboards that refuse generic AI-slop output. |
| Code Reviewer | critic | Finds bugs, security holes, and edge cases with file path + line number on every finding. |
| Pentester | vuln-verifier | Takes critic findings and writes actual PoC tests — proves the vulnerability is real, not theoretical. |
| Debug Engineer | debugger | Reads logs, constructs hypotheses, verifies, fixes. Never guesses. |
| DB Specialist | db-expert | Paranoid about data loss — reviews schemas, migrations, queries for locks and race conditions. |
| Onboarder | onboarder | First-time codebase exploration producing a structured mental model. |
| Tool Expert | tool-expert | Picks and chains MCP tools, troubleshoots tool failures. |
| Researcher | web-researcher | Fetches official docs and API specs to prevent hallucination. |

**15 hooks:** cost-tracker, commit-quality (blocks debugger statements and hardcoded secrets), mcp-health, config-protection, design-quality, check-console, audit-log, batch-format, suggest-compact, accumulator, log-error, test-runner, branch-protection (blocks force-push to main), large-file-warner, session-summary.

**P7/P9/P10 modes:** P7 (single feature, senior engineer), P9 (3+ files, tech lead decomposition — coding forbidden, output is Task Prompts), P10 (CTO, strategy docs only).

## Install

```
/plugin marketplace add NYCU-Chung/my-claude-devteam
/plugin install devteam@my-claude-devteam
```

Restart Claude Code — all 12 agents and 15 hooks register automatically.