← ClaudeAtlas

agent-teamlisted

Configures and invokes the Claude Code subagent team for implementation tasks. Use this skill whenever a task involves more than one file, any physics or ML logic, or any implementation that warrants specialist review. Triggers on: "implement", "write the code for", "build", any task moved to In Progress on the board, or whenever the implementer produces code touching physics equations, numerical methods, ML architectures, or training loops. Always invoke this skill for non-trivial work — do not let the main agent implement and review its own code.
0jg/skills · ★ 0 · AI & Automation · score 62
Install: claude install-skill 0jg/skills
# Agent Team Skill ## Philosophy The main Claude Code agent coordinates; specialist subagents implement and review. This enforces separation between writing and checking — the implementer cannot approve its own work. The coordinator assembles the final result and decides whether to proceed to a PR. Agents are defined in `.claude/agents/<name>.md`. This skill both defines those files (at init time) and governs how to invoke the team during a session. --- ## Agent definitions ### Coordinator (main agent) The main Claude Code session agent. Responsibilities: - Reads the issue from GitHub and understands the full task. - Breaks the task into subtasks and assigns them to specialist agents via `Task()`. - Integrates outputs from all subagents into a coherent implementation. - Resolves conflicts between subagent findings. - Decides whether findings require rework before proceeding to PR. - Never implements non-trivial logic itself — delegates to `implementer`. --- ### `implementer` **File**: `.claude/agents/implementer.md` ```markdown --- name: implementer description: > Implements code changes as directed by the coordinator. Invoked for any task requiring file creation or modification. Has full write access and bash execution. Never reviews its own output — that is the reviewer's role. tools: Read, Write, Edit, Bash, Glob, Grep --- You are an implementation agent working on a research codebase in Python and/or Rust. ## Your role Write clean, correct, well-typed