Install
$ agentstack add skill-reinamaccredy-maestro-maestro-card ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Maestro Card
Maestro uses three work levels: High = Card, Mid = CardKind / workflow kind, and Low = Task. Feature, Bug, Chore, Custom, Decision, Idea, and Progress are CardKinds, not separate high-level objects. Progress is a lightweight CardKind that stores many low Tasks in progress.yml; legacy type: task cards remain readable for compatibility. This skill covers the active-work cluster: the task work loop, card/feature lifecycle, proof, and QA gates. Design (maestro-design), audit (maestro-audit), and setup (maestro-setup) have their own skills.
Activate with a known session id: maestro hook record --event skill_activation --skill maestro-card --session
First step in a session: run maestro active (pull-only) to see what other live sessions are working on before you claim. If a peer is on a related card, connect yours with maestro link add ; maestro never auto-links. Once linked, coordinate through the channel: maestro msg send "" and maestro msg read. An [inbox] N new (...) -> maestro msg read line on STDERR before any command means a linked peer is waiting -- clear it with maestro msg read (see [reference/work.md](reference/work.md)). Inbox messages are advisory coordination only: they can suggest an ordering relationship, but they do not block work. Record an explicit Task blocker when execution order matters. Reply when the message poses a question or needs a decision; an FYI needs no reply. When any other session is live as you start implementing, follow the conflict-handoff protocol in HARNESS.md: worktree-isolate, link + maestro conflict on a file you will share, merge back then --clear. The full dance (including a conflicted merge-back) is maestro loop show conflict-handoff.
Route
Read the reference for the job at hand; they share the ground rules below.
- Pick up, progress, finish, or unblock executable Tasks:
[reference/work.md](reference/work.md). Its implement step is test-first (red-green-refactor) whenever the task's --check names observable behavior: [reference/tdd.md](reference/tdd.md).
- Track simple work with the low-ceremony Task surface (
task add-> `task
start -> task done, no separate todo namespace): this creates or reuses a Progress card and stores low Tasks in progress.yml`; see the "Simple Task Board" section of [reference/work.md](reference/work.md).
- Tidy a card's diff before proving it (quality cleanup, applied in place):
[reference/simplify.md](reference/simplify.md). On a test-first card this is the red-green-refactor step, not a second pass.
- Work the backlog unattended, including "use loop", "keep looping",
"I am going away", "I am going to sleep", "work while I am away", or broad user goals that must first compile into Maestro records while the user is away or asleep: [reference/loop.md](reference/loop.md)
- Finalize, accept, prepare, amend, close, or archive a feature card after design:
[reference/feature.md](reference/feature.md)
- Prove a claim, repair failed proof, or verify adversarially:
[reference/verify.md](reference/verify.md)
- Capture the behavior contract before
feature accept:
[reference/qa-baseline.md](reference/qa-baseline.md)
- Replay scenarios and record slice evidence before
feature close:
[reference/qa-slice.md](reference/qa-slice.md)
Shared Ground
- Prefer native Maestro MCP tools for lifecycle reads and writes when the host
exposes them. The host-loaded tool schema is authoritative. Use CLI commands when MCP is unavailable, for verbs not yet exposed as MCP tools, or when debugging unsupported behavior.
- Exact command signatures live in [reference/cli.md](reference/cli.md),
generated from the binary. A verb or flag not listed there does not exist; read it instead of probing --help. CLI remains the compatibility and human-facing contract; MCP is the agent ergonomic contract.
- Discover executable work with
maestro task list,maestro task next, and
maestro card list for card-container context. Progress-backed low Tasks appear in task views; the Progress card itself appears in card views. Take and annotate tasks with maestro task start/maestro task claim, maestro task update, and maestro task note.
- Ids are stable and opaque (
card-; features keep their creation
slug). The dotted alias show prints is display-only; never address a card with it.
- Never chain a guessed id: use only ids read from verb output (`task add
--id-only, task list, card list, card show`). When a lookup misses, re-list and read the real id; do not retry spelling variations.
- Do not hand-edit
card.yamlor the verb-guarded sidecars (qa.md,
state history). Use verbs so gates and audit trails stay intact.
- Terminal words are per type — feature
closed/cancelled, task
verified/rejected/abandoned/superseded, decision locked/superseded, and Bug/Chore/Custom card containers closed after owned tasks verify — and all of them read as coarse closed on the board. maestro card close fits only legacy task cards or task-owning Bug/Chore/Custom containers whose owned tasks are verified. When the user says "close" a feature, branch on its state: a live feature means feature close or feature cancel; a feature already terminal (closed/cancelled) means archive it — run maestro card archive directly, do not re-ask. maestro card archive moves a terminal feature's records to .maestro/archive/; the user's word "close" on a terminal card is the explicit intent to archive, but archive is never an automatic side effect of close/cancel, and a non-terminal feature is never archived.
- When the user or SPEC preauthorizes auto-archive at the archive phase, do not
ask again only after the delivered commit hash is known and required QA passed against the exact current HEAD. Use maestro feature auto-archive with a current target-scoped authority (--authority-ref, --authority-target, --authority-head, --authority-state current), exact QA evidence (--tested-head, --qa-result pass, repeat --qa-evidence), the owning run/worktree disposition (--run, --multi-agent, --worker-source), and the canonical owning store (--canonical-store ). Stop instead of archiving if the helper refuses, if relevant worktree state is dirty, if worker worktrees have not merged back, if the current store is not the canonical owner, if relevant Maestro conflicts are still asserted, or if terminal archive preflight fails.
- When the user corrects or steers active work, do not pause just because they
corrected you. If the correction is clear, record it with maestro event intervention --note "" [--topic ] and apply it. If it is unclear but low-risk, state the assumption, record it, and continue. Ask only when the ambiguity can change scope, contract, schema, lifecycle, release behavior, or other hard-to-reverse work. Full routing lives in [reference/work.md](reference/work.md).
External intake
When the user brings a spec, plan, or PRD authored elsewhere, route open forks through maestro-design first. This skill consumes the approved contract and drives the active lifecycle; there is no CLI parser for external documents.
- Use
maestro-designto create the feature, preserve the source text, decide
open forks, and author observable acceptance criteria.
- Return here after the contract is stable.
- Read
.maestro/cards//handoff.mdfirst. If it is missing or stale, run
maestro feature finalize .
- Run
qa-baseline,feature accept,feature prepare, work, verify,
qa-slice, and feature close.
request.md travels with the card through archive and unarchive.
Pipeline
maestro-design -> feature finalize -> [maestro-card: qa-baseline -> feature accept -> prepare -> work -> verify -> qa-slice -> feature close]
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: ReinaMacCredy
- Source: ReinaMacCredy/maestro
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.