π§ Context Engineering Research - Not just another agent collection, but using research and context engineering to function as a collective. Hub-and-spoke coordination through Claude Code.
AI Agentsagentsai-developmentautonomous-programmingclaudeclaude-code
Installation
# Add to your Claude Code skills
git clone https://github.com/vanzan01/claude-code-sub-agent-collective
README.md
Claude Code Sub-Agent Collective
Experimental NPX installer for TDD-focused AI agents
This installs a collection of AI agents designed for Test-Driven Development and rapid prototyping. It's experimental, opinionated, and I built it to speed up my own MVP development work.
What this installs
npx claude-code-collective init
You get 30+ specialized agents that enforce TDD methodology and try to be smarter about using real documentation instead of guessing.
Why this exists
I got tired of:
AI giving me code without tests
Having to manually look up library documentation
Inconsistent development approaches across projects
Breaking down complex features manually
So I built agents that:
Write tests first, always (RED β GREEN β REFACTOR)
Use Context7 to pull real documentation
Route work to specialists based on what needs doing
Break down complex requests intelligently
What you get after installation
Core Implementation Agents (TDD-enforced)
@component-implementation-agent - UI components with tests and modern patterns
@feature-implementation-agent - Business logic with comprehensive testing
@infrastructure-implementation-agent - Build systems with testing setup
The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.
151,568
context-engineering
multi-agent
playwright
sub-agents
task-master
taskmaster
yolo
@testing-implementation-agent - Test suites that actually test things
@polish-implementation-agent - Performance optimization with preserved tests
Quality & Validation
@quality-agent - Code review and standards checking
@devops-agent - Deployment and CI/CD setup
@functional-testing-agent - Browser testing with Playwright
@van-maintenance-agent - System maintenance and updates
Plus 20+ other specialized agents for specific development tasks.
Installation options
Quick install (recommended for trying it out)
npx claude-code-collective init
Other options if you want to be selective
# Just core agents for lightweight projects
npx claude-code-collective init --minimal
# Focus on testing framework only
npx claude-code-collective init --testing-only
# Just the behavioral system and hooks
npx claude-code-collective init --hooks-only
# Interactive setup with choices
npx claude-code-collective init --interactive
/van command routes to @task-orchestrator (the routing hub) which analyzes requests and delegates to specialists
Research phase - agents use Context7 for real documentation
Tests written first - before any implementation
Implementation - minimal code to make tests pass
Refactoring - clean up while keeping tests green
Delivery - you see what tests were added and results
The TDD contract every agent follows
## DELIVERY COMPLETE
β Tests written first (RED phase)
β Implementation passes tests (GREEN phase)
β Code refactored for quality (REFACTOR phase)
π Test Results: X/X passing
Management commands
# Check what's installed and working
npx claude-code-collective status
# Validate installation integrity
npx claude-code-collective validate
# Fix broken installations
npx claude-code-collective repair
# Remove everything
npx claude-code-collective clean
# Get help
npx claude-code-collective --help
Current state (honest assessment)
What works well
TDD enforcement prevents a lot of bugs
Context7 integration is much better than agents guessing
Routing usually picks the right agent for the job
Breaking down complex tasks is genuinely helpful
What's experimental/rough
Some agents are still being refined
Research phase can be slow sometimes
Hook system requires restart (Claude Code limitation)
Documentation is scattered across files
Known limitations
Requires Node.js >= 16
Need to restart Claude Code after installation
Opinionated about TDD (if you don't like tests, skip this)
Some agents might be too thorough/slow for simple tasks
Testing your installation
After installing:
# 1. Validate everything installed correctly
npx claude-code-collective validate
# 2. Check status
npx claude-code-collective status
# 3. Restart Claude Code (required for hooks)
# 4. Try it out
# In Claude Code: "Build a simple todo app with React"
# Expected: routes to research β breaks down task β writes tests β implements