A Claude Code agent team with structured orchestration, review, and git management.
Find a file
2026-04-01 17:17:20 -04:00
agents feat: architect always writes plan file as master document, orchestrator reads from disk 2026-04-01 17:17:20 -04:00
skills feat: architect always writes plan file as master document, orchestrator reads from disk 2026-04-01 17:17:20 -04:00
.gitignore Add repo scaffolding: .gitignore, CLAUDE.md, settings.json 2026-04-01 15:09:29 -04:00
CLAUDE.md fix: remove contradictory Sonnet-only instruction, add cost awareness section 2026-04-01 16:56:46 -04:00
install.sh Update orchestrate skill, worker-protocol, install.sh, README for new pipeline architecture 2026-04-01 15:09:51 -04:00
README.md refactor: rename plan agent to architect 2026-04-01 17:01:44 -04:00
settings.json fix: add schema, Bash deny rules for secrets, fix git push -f glob 2026-04-01 16:56:54 -04:00

agent-team

A portable Claude Code agent team configuration. Clone it, run install.sh, and your Claude Code sessions get a full team of specialized subagents and shared skills — on any machine.

Quick install

git clone <repo-url> ~/Documents/Personal/projects/agent-team
cd ~/Documents/Personal/projects/agent-team
./install.sh

The script symlinks agents/, skills/, CLAUDE.md, and settings.json into ~/.claude/. Works on Linux, macOS, and Windows (Git Bash).

Maintenance

Symlink fragility: ~/.claude/CLAUDE.md and ~/.claude/settings.json are installed as symlinks by install.sh. Some tools (including Claude Code itself when writing settings) resolve symlinks to regular files on write, silently breaking the link. If edits to the repo are no longer reflected in ~/.claude/, re-run ./install.sh to restore the symlinks.

Agents

Agent Model Role
grunt haiku Trivial tasks — typos, renames, one-liners. No planning or review.
worker sonnet Default implementer for well-defined tasks.
senior-worker opus Escalation for architectural complexity or worker failures.
debugger sonnet Diagnoses and fixes bugs with minimal targeted changes.
docs-writer sonnet Writes and updates docs. Never modifies source code.
architect opus Research-first planning. Produces implementation plans for workers. Read-only.
code-reviewer sonnet Reviews diffs for quality, correctness, and coverage. Read-only.
security-auditor opus Audits security-sensitive changes for vulnerabilities. Read-only.
karen opus Independent fact-checker. Verifies worker output against source and web. Read-only, runs in background.

Skills

Skill Purpose
orchestrate Orchestration framework — load on demand to decompose and delegate complex tasks
conventions Core coding conventions and quality priorities shared by all agents
worker-protocol Output format, feedback handling, and operational procedures for worker agents
qa-checklist Self-validation checklist workers run before returning results
project Instructs agents to check for and ingest a project-specific skill file before starting work

How to use

In an interactive Claude Code session, load the orchestrate skill when a task is complex enough to warrant delegation:

/skill orchestrate

Once loaded, Claude acts as orchestrator — decomposing tasks, selecting agents, reviewing output, and managing the git flow. Agents are auto-delegated based on task type; you don't invoke them directly.

For simple tasks, agents can be invoked directly:

/agent worker Fix the broken pagination in the user list endpoint

Project-specific config

Each project repo can extend the team with local config in .claude/:

  • .claude/CLAUDE.md — project-specific instructions (architecture notes, domain conventions, stack details)
  • .claude/agents/ — project-local agent overrides or additions
  • .claude/skills/project.md — skill file that agents automatically ingest before starting work (see the project skill)

Commit .claude/ with the project so the team has context wherever it runs.

Agent memory

Agents with memory: project scope write persistent memory to .claude/agent-memory/ in the project directory. This memory is project-scoped and can be committed with the repo so future sessions pick up where prior ones left off.