First Steps
Get started with Blue Gardener by adding your first agents.
Run the Interactive Menu
The easiest way to use Blue Gardener is through the interactive menu:
npx blue-gardenerpnpm blue-gardeneryarn blue-gardenerThis opens a menu with options:
- Add agents
- Remove agents
- List installed agents
- Search agents
- Sync agents
- Repair manifest
Platform Selection (First Time Only)
If Blue Gardener can't auto-detect your platform, you'll see:
? Which platform are you using?
> Cursor
Claude Desktop
Codex
GitHub Copilot
Windsurf
OpenCodeSelect your platform using arrow keys and Enter. This choice is saved for future use.
Adding Your First Agents
Method 1: Interactive Selection (Recommended)
Run the add command:
npx blue-gardener addpnpm blue-gardener addyarn blue-gardener addStep 1: Select a category
? Select a category:
> Orchestrators (5 agents)
Development (9 agents)
Quality (9 agents)
Infrastructure (9 agents)
Configuration (1 agent)
Blockchain (11 agents)Step 2: Select agents
? Select agents to install:
◯ blue-feature-specification-analyst
◯ blue-architecture-designer
◯ blue-refactoring-strategy-planner
◯ blue-app-quality-gate-keeper
◯ blue-implementation-review-coordinatorUse Space to select, Enter to confirm.
Method 2: Direct Installation
Install specific agents by name:
npx blue-gardener add blue-react-developer blue-frontend-code-reviewerpnpm blue-gardener add blue-react-developer blue-frontend-code-revieweryarn blue-gardener add blue-react-developer blue-frontend-code-reviewerRecommended Starting Agents
For Frontend Projects
blue-react-developer
blue-state-management-expert
blue-ui-styling-specialist
blue-frontend-code-reviewer
blue-accessibility-specialistFor Backend Projects
blue-node-backend-implementation-specialist
blue-database-architecture-specialist
blue-node-backend-code-reviewer
blue-security-specialistFor Any Project
blue-feature-specification-analyst
blue-architecture-designer
blue-implementation-review-coordinatorVerify Installation
List installed agents:
npx blue-gardener listpnpm blue-gardener listyarn blue-gardener listOutput shows:
Installed agents (3):
blue-react-developer (development)
blue-frontend-code-reviewer (quality)
blue-accessibility-specialist (quality)
Available agents: 47Using Agents in Your IDE
Cursor
Invoke agents with @ symbol:
@blue-react-developer Please create a login form componentClaude Desktop
Similar to Cursor:
@blue-react-developer Please create a login form componentOther Platforms
Agents are installed as instructions/rules. Refer to your platform's documentation for invocation.
File Structure
After installing agents, your project structure looks like:
Multi-File Platforms (Cursor, Claude, OpenCode, Windsurf)
your-project/
├── .cursor/agents/ # Cursor
│ ├── .blue-generated-manifest.json
│ ├── blue-react-developer.md
│ └── blue-frontend-code-reviewer.mdSingle-File Platforms (Codex, Copilot)
your-project/
├── AGENTS.md # Codexor
your-project/
├── .github/
│ └── copilot-instructions.md # GitHub CopilotNext Steps
Adding Agents →
Learn more about finding and adding agents
Managing Agents →
Remove, search, sync, and repair agents
Agent Catalog →
Browse all 47 available agents
