What is Blue Gardener?
Blue Gardener is a CLI tool that manages AI coding agents across multiple platforms. It helps you install, organize, and maintain specialized AI agents that enhance your development workflow.
Why Blue Gardener?
Multi-Platform Support
Different AI coding platforms use different formats for agents:
- Cursor uses
.cursor/agents/*.md - Claude Desktop uses
.claude/agents/*.md - Codex uses a single
AGENTS.mdfile - GitHub Copilot uses
.github/copilot-instructions.md - Windsurf uses
.windsurf/rules/*.md - OpenCode uses
.opencode/agents/*.md
Blue Gardener handles all these formats automatically, so you can focus on using agents rather than managing platform differences.
47 Specialized Agents
Blue Gardener includes a comprehensive collection of agents:
- Orchestrators (5) - Coordinate complex workflows
- Development (9) - Build features across stacks
- Quality (9) - Ensure code quality and standards
- Infrastructure (9) - Manage CI/CD and tooling
- Configuration (1) - Set up AI platforms
- Blockchain (11) - Smart contract development
Orchestration Patterns
Agents don't work in isolation - they collaborate following proven patterns:
- Feature Development - Specification → Architecture → Implementation → Review
- Quality Assurance - Review → Fix → Verify (iterative)
- Refactoring - Strategy → Phases → Verification
- Backend Development - Architecture → Database → Implementation → Review
How It Works
mermaid
flowchart LR
Install[Install Blue Gardener] --> Detect[Auto-Detect Platform]
Detect --> Browse[Browse Agent Catalog]
Browse --> Add[Add Agents]
Add --> Use[Use in Your IDE]
Use --> Sync[Auto-Sync Updates]
style Install fill:#e1f5ff
style Use fill:#d4edda- Install - Add Blue Gardener to your project
- Auto-Detect - Automatically detects your AI platform (Cursor, Claude, etc.)
- Browse - Explore agents by category
- Add - Select and install agents
- Use - Invoke agents in your IDE (e.g.,
@blue-react-developer) - Sync - Keep agents updated automatically
Key Features
Category-Based Selection
When you run blue-gardener add, you first select a category:
? Select a category:
> Orchestrators (5 agents)
Development (9 agents)
Quality (9 agents)
Infrastructure (9 agents)
Configuration (1 agent)
Blockchain (11 agents)Then browse agents within that category.
Smart Search
Find agents quickly:
bash
npx blue-gardener search react
npx blue-gardener search testingbash
pnpm blue-gardener search react
pnpm blue-gardener search testingbash
yarn blue-gardener search react
yarn blue-gardener search testingAuto-Sync
When you update Blue Gardener, installed agents automatically update to their latest versions:
bash
npm update blue-gardener
# Agents auto-sync on next usebash
pnpm update blue-gardener
# Agents auto-sync on next usebash
yarn upgrade blue-gardener
# Agents auto-sync on next use