A community-driven registry for Claude, Cursor, Windsurf, Cline & more. Not affiliated with Anthropic.
Are you the author? Sign in to claim
Battle-tested CLAUDE.md templates, agent definitions, and process docs for multi-agent Claude Code orchestration. Free a
Version 1.1.0 · See CHANGELOG.md for what's new.
New here? Start with the Agent Starter Kit Pro — the canonical free starter kit (lighter, faster to set up, same production DNA). This repo is its extended superset: deeper agent definitions, 11 process docs, heavier orchestration scripts (worker with heartbeats, queue health monitor), and launchd automation. Graduate here when the starter kit stops being enough.
A free kit for running multiple Claude Code agents on a single codebase. Agent definitions, memory systems, process docs, and orchestration scripts — extracted from a production system running 10 agents across 5,000+ autonomous tasks.
Running AI agents without structure breaks in predictable ways:
[YOUR_VALUE] placeholders for your stack. Annotated with # WHY comments explaining the reasoning behind each rule.agent-architect-kit/
├── core/ # Agent definitions + project config
│ ├── CLAUDE.md # Project instructions template
│ ├── agents/*.md # 6 role definitions
│ └── memory/ # Cross-session memory protocol
├── pro/ # Process documentation
│ └── processes/*.md # 11 workflow guides
└── full/ # Orchestration automation
├── scripts/ # CLI tools (task queue, worker, monitor)
└── automation/ # macOS daemon plists
1. Copy the core files into your project:
cp core/CLAUDE.md your-project/CLAUDE.md
mkdir -p your-project/.claude/agents
cp core/agents/*.md your-project/.claude/agents/
cp core/memory/memory-directive.md your-project/.claude/agents/
2. Replace placeholders in CLAUDE.md and each agent file — search for [YOUR_VALUE]:
| Placeholder | Example |
|---|---|
[YOUR_COMPANY] | Acme Corp |
[YOUR_FRAMEWORK] | Rails 8, Next.js, Django |
[YOUR_DEPLOY_TOOL] | Kamal, Capistrano, Vercel |
[YOUR_DB] | PostgreSQL, SQLite |
Delete sections that don't apply to your stack.
3. Create memory files — one per agent role, in agents/state/memory/:
mkdir -p your-project/agents/state/memory
Create a file for each role (coder.md, qa.md, etc.) with sections for Mistakes, Learnings, and Session Log. Agents will read and update these automatically.
4. Run your first agent:
cd your-project
claude --agent coder --print "List the files in this project and describe the architecture"
Pick what fits your needs. You don't have to use everything.
core/ — Start hereAgent definitions + memory. Enough to run specialized agents that learn across sessions. This alone is a major upgrade over a single unstructured agent.
pro/ — Add coordinationProcess docs for common workflows: task queues, deploy checklists, security audits, design approval, product launches. Copy the ones relevant to your team. Skip the rest.
full/ — Go autonomousThe orchestration daemon, task queue CLI, and health monitoring. For systems that run agents continuously without human intervention — spawning work, chaining tasks, detecting failures.
This kit was extracted from a Rails project, but the patterns are stack-agnostic:
pytest, jest, cargo test, go test)CLAUDE.md is the control plane. It governs agent behavior — deploy safety, testing requirements, quality gates. The template includes # WHY comments so you understand the reasoning and can decide what applies to your project.
Memory prevents repeated failures. Without it, agents start from zero every session. The memory directive ensures agents read past learnings before working and record new ones when done.
Operations is the meta-agent. It monitors all other agents and edits their instructions when patterns break. Agent keeps making the same mistake? Operations rewrites the rule. It's the feedback loop that makes the system self-improving.
Quality gates must be externally verified. Self-reported results are unreliable. The kit's patterns — exact test counts, post-commit verification, independent QA review — exist to make shortcuts detectable.
Part of the Ultrathink Agent Suite:
Built by an AI-run dev shop. Read how →
MIT
Production-tested CLAUDE.md and rules that make Claude Code write better code and more human text. Anti-AI-slop writing
Visual, example-driven guide with copy-paste CLAUDE.md templates for quick setup
Portable skills, agents, and templates that add Spec-Driven Development and TDD workflows to any Claude Code project. De
ATLAS: a senior-engineer layer for Claude Code. Explore with wireframes & prototypes, clarify the essentials, capture it