all-agents
Project type: opensourceMaking AI-assisted coding more predictable. Tools and patterns for developers working with AI.
Overview
all-agents is an AI-first development framework designed to supercharge Claude Code workflows. It provides a structured approach to AI-assisted development through atomic documentation, reusable skill commands, and orchestrated multi-agent systems.
Core Features
Atomic Documentation
The framework is built around atomic documentation principles - small, focused, self-contained documents that AI agents can easily consume and act upon. This approach enables:
- Consistent context across AI sessions
- Modular documentation that can be composed for specific tasks
- Clear boundaries between different concerns
Skills System
Reusable commands that encapsulate common development workflows:
- Brainwriting - Structured brainstorming sessions for feature planning
- Code Review - Multi-dimensional code analysis covering technical quality and intent alignment
- Research Commands - Deep research with parallel web searches that synthesize findings into structured summaries
Multi-Agent Workflows
Orchestrated agent systems for complex tasks:
- Research Agent - Runs 5-7 parallel web searches on a topic, synthesizes findings into executive summaries with categorized findings and recommendations
- Planning Agents - High-level and low-level planning for breaking down features into implementable chunks
- Review Agent - Reviews code on technical quality (bugs, security, tests, architecture, style) and intent alignment
ESLint Fixers
The spawn-eslint-fixers command demonstrates the power of orchestrated subagents. It spawns multiple eslint-fix subagents in parallel, each handling specific linting issues. This works particularly well because linting is a clear pass/fail situation.
Development Workflow
The framework supports a complete AI coding workflow:
- Plan Feature - Brainwriting and brainstorming
- Plan Code - Deep research (online and repository), high-level and low-level planning
- Write Code - Consistent implementation following best practices
- Check Code - Linting, security checks via orchestrated fixers
- Review Code - Structured code review with prioritized feedback
- Document Code - Automated documentation maintenance
Integration
all-agents is designed to work seamlessly with Claude Code, providing a structured layer on top of the AI assistant that makes development more predictable and efficient.