Elite-tier orchestration framework for Claude Code CLI. Supercharges AI development through specialized agents, modular skills, intelligent hooks, and persistent memory systems. Author: xenitV1 • X/Twitter Philosophy: "Why over How.
> /plugin marketplace add xenitv1/claude-code-maestro> /plugin install maestro@maestro-marketplace
Repo: xenitv1/claude-code-maestro
What's inside
Elite-tier orchestration framework for Claude Code CLI. Supercharges AI development through specialized agents, modular skills, intelligent hooks, and persistent memory systems.
Version: 0.6.0
Author: xenitV1 • X/Twitter
Philosophy: "Why over How. Architecture precedes implementation."
One-line Install (Skills.sh):
npx skills add xenitV1/claude-code-maestro
Manual Plugin Install: Maestro is distributed as a Claude Code Plugin. To install it manually:
# 1. Add Maestro as a marketplace
/plugin marketplace add xenitV1/claude-code-maestro
# 2. Install the Maestro plugin
/plugin install maestro@xenitV1-claude-code-maestro
Since Maestro is a plugin, its commands are namespaced. Use the format /maestro:command.
# Basic orchestration
/maestro your task description
# With Ralph Wiggum (autonomous iterations)
/maestro fix bugs and improve code. ralph 5 iterations
# Design mode
/maestro design new authentication system
# Plan mode
/maestro plan implement user dashboard
# Use the Grandmaster agent directly
/agent:grandmaster
┌─────────────────────────────────────────────────────────────────────┐
│ MAESTRO SYSTEM │
├─────────────────────────────────────────────────────────────────────┤
│ ┌──────────┐ ┌──────────────┐ ┌─────────────────────────┐ │
│ │ /maestro │───▶│ grandmaster │───▶│ SKILLS │ │
│ │ command │ │ agent │ │ (frontend, backend, │ │
│ └──────────┘ └──────────────┘ │ tdd, debug, etc.) │ │
│ │ └─────────────────────────┘ │
│ ▼ │
│ ┌─────────────────────────────────────────────────────────────┐ │
│ │ HOOK SYSTEM │ │
│ │ SessionStart │ PostToolUse │ Stop │ PreCompact │ etc. │ │
│ └─────────────────────────────────────────────────────────────┘ │
│ │ │
│ ▼ │
│ ┌──────────────────────────────────────────────────────────────┐ │
│ │ LONG-TERM MEMORY (LTM) │ │
│ │ (brain.jsonl) │ │
│ └──────────────────────────────────────────────────────────────┘ │
└─────────────────────────────────────────────────────────────────────┘
maestro/
├── .claude-plugin/
│ └── plugin.json # Plugin manifest
├── agents/
│ └── grandmaster.md # Central orchestrator agent
├── commands/
│ └── maestro.md # /maestro slash command
├── hooks/
│ ├── hooks.json # Hook configuration
│ ├── lib/ # Shared JS utilities
│ │ ├── utils.js # Cross-platform utilities
│ │ ├── brain.js # LTM operations
│ │ └── ralph.js # Ralph state management
│ ├── session-start.js # Tech stack detection + LTM injection
│ ├── brain-sync.js # LTM sync (PostToolUse)
│ ├── stop.js # Ralph Wiggum iteration
│ ├── ralph.js # QA enforcement
│ ├── sentinel.js # Change detection
│ └── pre-maestro.js # Skill recommendation
├── skills/
│ ├── clean-code/ # Code quality standards
│ ├── frontend-design/ # Elite UI/UX
│ ├── backend-design/ # API & Database patterns
│ ├── tdd-mastery/ # Test-Driven Development
│ ├── debug-mastery/ # Systematic debugging
│ ├── verification-mastery/# Evidence-based completion
│ ├── brainstorming/ # Design-first methodology
│ ├── planning-mastery/ # Implementation planning
│ ├── git-worktrees/ # Isolated workspaces
│ ├── ralph-wiggum/ # Autonomous QA system
│ ├── browser-extension/ # Extension development
│ └── optimization-mastery/# Performance optimization
├── package.json # Node.js metadata
├── LICENSE # MIT License
└── README.md
Persistent project context across sessions:
Elite QA system with Four Pillars:
| Pillar | Purpose |
|---|---|
| Proactive Gate | Edge case identification BEFORE coding |
| Reflection Loop | Self-critique and refinement |
| Verification Matrix | Test coverage tracking (80% minimum) |
| Circuit Breaker | Stagnation detection and pivot strategies |
Activate with: ralph N iterations or "Ralph Wiggum mode"
| Skill | Description |
|---|---|
clean-code | 2025 standards, SOLID, security-first |
frontend-design | Atomic Design 2.0, Lovable/v0 standard |
backend-design | Zero-trust, API contracts |
tdd-mastery | Iron Law: Test before code |
debug-mastery | 4-phase systematic debugging |
verification-mastery | Evidence before completion |
brainstorming | Design-first methodology |
planning-mastery | Bite-sized task breakdown |
git-worktrees | Isolated feature development |
ralph-wiggum | Autonomous QA orchestration |
optimization-mastery | Performance, INP, partial hydration |
context7 | Auto library documentation from Upstash |
browser-extension | Manifest v3, service workers |
| Platform | Rating | Notes |
|---|---|---|
| Claude Code CLI | ⭐⭐⭐⭐⭐ | Native environment, full functionality |
| Windows | ⭐⭐⭐⭐⭐ | Full cross-platform support |
| macOS | ⭐⭐⭐⭐⭐ | Full cross-platform support |
| Linux | ⭐⭐⭐⭐⭐ | Full cross-platform support |
<think> before complex actionsSeveral skills were inspired by and adapted from obra/superpowers and have been heavily optimized for the Maestro orchestration environment:
| Feature | Source | Maestro Skill |
|---|---|---|
| TDD Iron Law | superpowers/tdd | tdd-mastery |
| Systematic Debugging | superpowers/debugging | debug-mastery |
| Verification Protocol | superpowers/verification | verification-mastery |
| Brainstorming Method | superpowers/brainstorming | brainstorming |
| Implementation Planning | superpowers/planning | planning-mastery |
| Git Worktrees | superpowers/worktrees | git-worktrees |
Created and maintained by xenitV1
MIT License - See LICENSE for details.
Orchestrating the future of autonomous development.
.claude-plugin/
marketplace.json
plugin.json
.gitignore
.mcp.json
agents/
grandmaster.md
CHANGELOG.md
commands/
maestro.md
hooks/
brain-sync.js
hooks.json
lib/
brain.js
ralph.js
utils.js
pre-compact.js
session-start.js
stop.js
LICENSE
package.json
README_tr.md
README.md
SKILL.md
skills/
backend-design/
security-protocols.md
SKILL.md
brainstorming/
SKILL.md
browser-extension/
scripts/
js/
asset-master.js
manifest-auditor.js
persistence-check.js
SKILL.md
clean-code/
SKILL.md
debug-mastery/
defense-in-depth.md
root-cause-tracing.md
SKILL.md
frontend-design/
animation_reference.md
css_art_reference.md
frontend_reference.md
scripts/
js/
ux-audit.js
security-protocols.md
SKILL.md
git-worktrees/
SKILL.md
optimization-mastery/
SKILL.md
planning-mastery/
SKILL.md
ralph-wiggum/
scripts/
js/
ralph-harness.js
ralph-qa-engine.js
reflection-loop.js
SKILL.md
tdd-mastery/
SKILL.md
testing-anti-patterns.md
verification-mastery/
SKILL.mdFAQ
maestro is a Claude Code plugin with 12 hand-picked skills for agent orchestration work, indexed on Flowy. Install it with the command on its page. It includes backend-design, brainstorming, browser-extension. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.