Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By clearclown
Multi-agent orchestration framework for Claude Code with TDD and quality gates
npx claudepluginhub clearclown/claude-code-aida --plugin aidaAIDA - Multi-agent project generation. Auto-init and full pipeline execution
Initialize AIDA directory structure. Setup new workspace
Execute complete AIDA pipeline with multi-agent orchestration via Task tool
Manage parallel enhancement tasks with isolated environments.
Start AIDA multi-agent pipeline with Task tool delegation
AIDA pipeline orchestrator. Manages Leaders via Task tool and overall pipeline state.
Professional UI/UX requirements for all AIDA-generated projects.
Enhancement specification leader. Generates incremental change specifications for existing projects.
Implementation phase leader. Manages TDD-based development via Task tool player delegation.
Specification phase leader. Manages requirements and design via Task tool player delegation.
AIDA - Multi-agent project generation with auto-init and full pipeline execution. Generate a complete project using multi-agent orchestration with TDD and quality gates. Enforces strict quality requirements via Stop Hooks (ralph-loop style).
Core session management skill. Handles session initialization and state management.
AIDA Fix - Fix existing project to meet all quality gates. Takes a partially-built project and iterates until all 19 gates pass. Useful for completing interrupted implementations or improving test coverage.
AIDA pipeline orchestration with Task tool multi-agent delegation. Manages 5-phase workflow with Leader/Player subagents.
Complete project generation pipeline with Task tool multi-agent orchestration. Requirements -> Design -> Tasks -> Project -> Implementation.
Modifies files
Hook triggers on file write and edit operations
Uses power tools
Uses Bash, Write, or Edit tools
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Multi-agent /workflow development pipeline (planner → plan-review → coder → code-review) with typed handoff contracts, lifecycle hooks, and MCP servers.
Context management and multi-agent orchestration with performance optimization tools
Multi-agent orchestration framework for Claude Code, Gemini CLI, and Codex CLI — 19 agents, 13 skills, 15 commands, quality gates, TDD enforcement
Automation bootstrap for Claude Code. Analyzes any project and generates a complete .claude/ structure with agents, pipelines, skills, memory, hooks, and settings.
Complete project development toolkit: 23 agents, 23 slash commands, 29 lifecycle hooks, and 69 reusable skills for Claude Code workflows
HelloAGENTS — The orchestration kernel that makes any AI CLI smarter. Adds intelligent routing, unified QA gates, safety guards, and notifications.
Convert Figma designs to Flutter widgets through a TDD pipeline with design token extraction and golden test validation
Multi-agent orchestration framework for Claude Code with TDD and quality gates
AIDA (Agent Integration & Development Architecture) - Multi-agent orchestration framework for Claude Code.
English | 日本語 | 简体中文 | 繁體中文 | Русский | فارسی | العربية
AIDA enables multi-agent orchestration for software development projects using Claude Code's Task tool to spawn subagents. It automates the entire development lifecycle from requirements to implementation with TDD (Test-Driven Development) enforcement.
| Tool | Version | Purpose |
|---|---|---|
| Claude Code | Latest | Core CLI |
| bash | 4.0+ | Script execution |
| git | 2.0+ | Version control |
| jq | 1.6+ | JSON processing |
| Tool | Version | Purpose |
|---|---|---|
| grepai | Latest | Semantic search (80% token reduction) |
| fzf | Latest | Interactive file selection |
| jj (Jujutsu) | Latest | Environment isolation |
| go | 1.21+ | Backend development |
| node | 18+ | Frontend development |
| docker | 24+ | Container builds |
# Ubuntu/Debian
sudo apt install jq fzf git
# macOS
brew install jq fzf git
# Install grepai (recommended for semantic search)
go install github.com/yoanbernabeu/grepai@latest
# Install jj (optional - for environment isolation)
cargo install jj-cli
curl -sSL https://raw.githubusercontent.com/clearclown/claude-code-aida/main/scripts/install.sh | bash
# Clone repository
git clone https://github.com/clearclown/claude-code-aida.git ~/.claude-code-aida
# Run install script
cd ~/.claude-code-aida
./scripts/install.sh
# Clone to custom location
git clone https://github.com/clearclown/claude-code-aida.git /path/to/aida
# Install from that location
cd /path/to/aida
./scripts/install.sh
# Check installation
./scripts/verify-installation.sh
# Restart Claude Code
claude
# Test command availability
/aida:status
If /aida shows "Unknown skill", restart Claude Code and try again.
~/.claude-code-aida/ # AIDA source files
~/.claude/commands/
aida.md # Main /aida command
aida/
init.md # /aida:init
start.md # /aida:start
status.md # /aida:status
work.md # /aida:work
pipeline.md # /aida:pipeline
enhance.md # /aida:enhance
analyze.md # /aida:analyze
maintain.md # /aida:maintain
import.md # /aida:import
resume.md # /aida:resume
fix.md # /aida:fix
# Navigate to AIDA directory
cd ~/.claude-code-aida
# Pull latest changes and reinstall
git pull origin main
./scripts/install.sh
# One-line update
cd ~/.claude-code-aida && git pull origin main && ./scripts/install.sh
cd ~/.claude-code-aida
git fetch --tags
git checkout v1.2.0 # Replace with desired version
./scripts/install.sh
cd ~/.claude-code-aida
git fetch origin
git checkout develop # or feature/new-feature
git pull
./scripts/install.sh
# Check version/status
./scripts/verify-installation.sh
# Restart Claude Code after update
# Then test:
/aida:status
# Remove command files
rm -f ~/.claude/commands/aida.md
rm -rf ~/.claude/commands/aida/
# Remove AIDA source directory
rm -rf ~/.claude-code-aida