Help us improve
Share bugs, ideas, or general feedback.
AIDA - Agent Integration & Development Architecture
npx claudepluginhub clearclown/claude-code-aidaMulti-agent orchestration framework for Claude Code with TDD and quality gates
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 84 marketplace plugins, 192 local specialized agents, and 156 local skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
Share bugs, ideas, or general feedback.
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