A Claude Code agent team with structured orchestration, review, and git management.
Find a file
Bryan Ramos d2fdcbc731 refactor: modularize CLAUDE.md into ~/.claude/rules/ with agent-team content separation
- Split monolithic CLAUDE.md into 7 focused rule files in rules/
- Remove agent-team specific content from global rules (subagent cost,
  model defaults, tier shortcuts) — already covered by orchestrate skill
- Add "prefer summaries over verbatim output" to orchestrate Step 8
- Update install.sh to symlink rules/ directory
- Trim CLAUDE.md to a minimal pointer since rules auto-load
2026-04-02 07:17:36 -04:00
.claude/memory chore(memory): clean MEMORY.md to pure index format 2026-04-02 07:09:41 -04:00
agents feat(worker): default to worktree isolation for safe parallel execution 2026-04-02 07:09:39 -04:00
rules refactor: modularize CLAUDE.md into ~/.claude/rules/ with agent-team content separation 2026-04-02 07:17:36 -04:00
skills refactor: modularize CLAUDE.md into ~/.claude/rules/ with agent-team content separation 2026-04-02 07:17:36 -04:00
.gitignore Add repo scaffolding: .gitignore, CLAUDE.md, settings.json 2026-04-01 15:09:29 -04:00
CLAUDE.md refactor: modularize CLAUDE.md into ~/.claude/rules/ with agent-team content separation 2026-04-02 07:17:36 -04:00
install.sh refactor: modularize CLAUDE.md into ~/.claude/rules/ with agent-team content separation 2026-04-02 07:17:36 -04:00
README.md refactor: modularize CLAUDE.md into ~/.claude/rules/ with agent-team content separation 2026-04-02 07:17:36 -04:00
settings.json chore(settings): remove redundant default values 2026-04-02 07:09:38 -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> ~/agent-team
cd ~/agent-team
./install.sh

The script symlinks agents/, skills/, rules/, 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
worker sonnet (haiku/opus by orchestrator) Universal implementer. Model scaled to task complexity.
debugger sonnet Diagnoses and fixes bugs with minimal targeted changes.
documenter sonnet Writes and updates docs. Never modifies source code.
architect opus Triage, research coordination, architecture design, wave decomposition. Read-only.
researcher sonnet Parallel fact-finding. One instance per research question. Read-only.
reviewer sonnet Code quality review + AC verification + claim checking. Read-only.
auditor sonnet Security analysis + runtime validation. 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

Rules

Global instructions are modularized in rules/ and auto-loaded by Claude Code from ~/.claude/rules/ on every session. Each file covers a focused topic (git workflow, Nix preferences, response style, etc.). Agent-team specific protocols live in skills, not rules.

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.