🎯

sharing-skills

🎯Skill

from reinamaccredy/maestro

VibeIndex|
What it does

Enables Claude Code skill authors to contribute and upstream their custom skills to the Maestro project repository.

πŸ“¦

Part of

reinamaccredy/maestro(5 items)

sharing-skills

Installation

Install PluginInstall plugin from marketplace
/plugin install https://github.com/ReinaMacCredy/maestro
git cloneClone repository
git clone https://github.com/ReinaMacCredy/maestro ~/.codex/plugins/maestro
git cloneClone repository
git clone https://github.com/ReinaMacCredy/maestro ~/.cursor/plugins/maestro
git cloneClone repository
git clone https://github.com/ReinaMacCredy/maestro ~/.gemini/plugins/maestro
πŸ“– Extracted from docs: reinamaccredy/maestro
22Installs
22
-
Last UpdatedJan 28, 2026

Skill Details

SKILL.md

Overview

# Maestro

> Context-driven development for AI coding agents. Plan first, code once.

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)

Install

Claude Code:

```bash

/plugin install https://github.com/ReinaMacCredy/maestro

```

Amp:

```bash

amp skill add https://github.com/ReinaMacCredy/maestro --global

```

Other agents (Codex, Cursor, Gemini CLI)

Codex CLI:

```bash

# Add to .codex/AGENTS.md

git clone https://github.com/ReinaMacCredy/maestro ~/.codex/plugins/maestro

```

Cursor:

```bash

# Copy skills to .cursor/skills/

git clone https://github.com/ReinaMacCredy/maestro ~/.cursor/plugins/maestro

```

Gemini CLI:

```bash

# Add to GEMINI.md

git clone https://github.com/ReinaMacCredy/maestro ~/.gemini/plugins/maestro

```

Quick Start

```mermaid

graph LR

A[ds] --> B[/conductor-newtrack]

B --> C[/conductor-implement]

C --> D[/conductor-finish]

```

  1. ds β€” Start a design session (Double Diamond methodology)
  2. /conductor-newtrack β€” Generate spec, plan, and beads from design
  3. /conductor-implement β€” Execute with TDD checkpoints
  4. /conductor-finish β€” Archive track and extract learnings

Skills

| Skill | Trigger | Purpose |

|-------|---------|---------|

| conductor | /conductor-* | Implementation execution, TDD |

| designing | ds | Double Diamond design sessions |

| tracking | fb, rb, bd | Persistent issue tracking |

| orchestrator | /conductor-orchestrate | Multi-agent parallel execution |

| handoff | /conductor-handoff | Session context preservation |

| maestro-core | (auto) | Routing and fallback policies |

| creating-skills | β€” | Skill authoring guide |

| sharing-skills | β€” | Contribute skills upstream |

| using-git-worktrees | /worktree | Isolated dev environments |

Key Rules

  • Design before code β€” Run ds to explore before implementing
  • TDD by default β€” Never write production code without a failing test
  • Beads track work β€” Use bd CLI for persistent task management
  • Handoffs preserve context β€” Session state survives across restarts
  • One question at a time β€” Design sessions ask focused questions

Documentation

| Topic | Path |

|-------|------|

| Tutorial | [TUTORIAL.md](TUTORIAL.md) |

| Setup Guide | [SETUP_GUIDE.md](SETUP_GUIDE.md) |

| Reference | [REFERENCE.md](REFERENCE.md) |

| Changelog | [CHANGELOG.md](CHANGELOG.md) |

| Workflow Chain | [skills/maestro-core/references/workflow-chain.md](.claude/skills/maestro-core/references/workflow-chain.md) |

| Routing Table | [skills/maestro-core/references/routing-table.md](.claude/skills/maestro-core/references/routing-table.md) |

Credits

Maestro builds on the shoulders of giants:

  • [BMAD-METHOD](https://github.com/bmadcode/BMAD-METHOD) β€” Multi-agent design methodology
  • [conductor](https://github.com/cyanheads/conductor) β€” Context-driven development patterns
  • [beads](https://github.com/beads-org/beads) β€” Issue tracking for AI agents
  • [Agent Mail](https://github.com/agent-mail/agent-mail) β€” Multi-agent coordination

License

[MIT](LICENSE)