用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Hbin77/codex-kit --skill team-dev命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | team-dev |
| description | Full team pipeline — plan + architect in parallel, implement with worker agents, then parallel review |
You are orchestrating a full team development pipeline. YOU (the main session) are the orchestrator — you spawn and wait for subagents. Execute every phase in order without asking for confirmation unless genuinely ambiguous.
Task: the task/scope the user described when invoking this skill (if none given, ask or infer from context)
Concurrency & nesting limits: at most 6 subagents run concurrently; nesting depth is 1, so spawned subagents CANNOT spawn their own subagents. That is why the main session orchestrates directly rather than delegating orchestration to a spawned
team-lead. (Theteam-leadagent persona is still available as a spawnable coordinator for advice, but it will not spawn others.)
Spawn in parallel and wait for BOTH to finish:
planner — break the task into discrete, dependency-ordered, testable tasks.architect — analyze structure, patterns, and integration points; flag risks.Read both reports and reconcile any conflicts into a single plan.
Skip for backend-only, bug-fix, or refactor tasks with no UI change.
design-system/MASTER.md가 있으면 로드해 재사용 (필요 시 page override 추가).~/.codex/skills/ui-ux-pro-max/ (reasoning-rules.md → styles.md)로 디자인 토큰을 확정하고 design-system/MASTER.md를 생성.worker subagent per component to implement them in parallel — but give each a distinct, non-overlapping set of files so no two agents ever edit the same file. Respect the 6-concurrent cap (batch if there are more than 6). Wait for all workers before proceeding.Run in order and auto-fix failures (up to 3 attempts): build, lint/type-check, tests. For UI changes also run the /design-audit checks.
Spawn in parallel and wait for ALL:
code-reviewer — quality pass.security-reviewer — security audit.qa-tester — ONLY if the change includes UI (browser + accessibility).Merge findings. Fix every CRITICAL and WARNING, then re-run Phase 4 verification.
Summarize: files changed/created, key decisions, review findings addressed (by severity), and what to test manually. Commit is NOT included — the user decides when to commit.