AI Maestro Plugin

August 29, 2026 · View on GitHub

CI version license

The umbrella core plugin for the AI Maestro ecosystem — shared skills, AMP messaging, AID identity, governance, kanban, and the universal PRRD/TRDD/Kanban workflow that every role plugin inherits.

Skills: 29 | Commands: 14 | Scripts: 15 Python/shell

Last updated: 2026-06-16

See the main repo for the wider ecosystem.

Installation

Install from the Emasoft/ai-maestro-plugins marketplace inside Claude Code:

/plugin marketplace add Emasoft/ai-maestro-plugins
/plugin install ai-maestro-plugin

node must be on PATH. Every hook this plugin registers — session tracking, the directory-guard sandbox check, notifications, compaction handoff — runs scripts/ai-maestro-hook.cjs under Node. Hooks fail quietly (non-zero exit inside a short timeout), so without Node the whole hook surface is inert with no visible error: AI Maestro never sees the session, and the directory guard stops enforcing.

The PRRD/TRDD/Kanban pillar scripts need Python 3.10+ on PATH. The AMP/AID shell scripts need the curl, jq, openssl, base64 CLI tools. The optional memgrep note-recall engine is published by the ai-maestro-janitor (which CORE declares as a plugin dependency, so it is present wherever CORE is); recall degrades to plain grep without it. Most messaging features also require a running AI Maestro server on http://localhost:23000.

Usage

The plugin loads its skills automatically; invoke a workflow with its slash command or by describing the task:

/ama-prrd-get              # read a PRRD rule by number (every role)
/ama-trdd-write            # author a TRDD; /ama-trdd-transition moves columns
/ama-kanban-render         # render the design/spec board (read-only)
/team-governance           # team governance and COS management
/amp-inbox                 # check the inter-agent message inbox
/amp-send <to> <subj> <msg>  # send a message to another agent

Per-skill usage and examples live in each skill's SKILL.md; the AMP commands are documented in the table below.

Skills

SkillDescription
ai-maestro-agents-managementAgent lifecycle management
agent-identityAID agent identity (Ed25519)
agent-messagingAMP inter-agent messaging
agent-repo-workflowAgent repo/branch/PR + task done/blocked
debug-hooksHook debugging utilities
mcp-discoveryMCP server discovery
memory-searchWiki-memory recall via memgrep
network-securityNetwork security checks
planningTask planning (persistent files)
ama-prrd-getRead a PRRD rule by number (any role)
ama-prrd-findSearch PRRD rules by content / metadata
ama-prrd-editMutate a SILVER PRRD rule (MANAGER-gated)
ama-prrd-proposePropose a PRRD change (any role; non-binding)
ama-trdd-findFind TRDD task-design docs (read-only)
ama-trdd-writeAuthor a new TRDD (tier-aware zone)
ama-trdd-updateEdit an existing TRDD's body / evidence
ama-trdd-transitionMove a TRDD between columns (matrix-enforced)
ama-kanban-renderRender the design/spec board (read-only)
ama-proposal-approvalsBatch approve/refuse/archive (MANAGER-gated)
ama-trdd-serverTRDD dashboard: approve / search TRDDs
ama-panelPush HTML to the agent's side panel
ama-sessionQueue commands / answer pending prompts
ama-unblockMANAGER/COS resume of blocked sessions
ama-continuityOwn 5h/7d window health + self-resume
ama-portfolioR28 approval / mandate tokens (mint, verify)
ama-settingsGated settings.json editor
ama-statuslineFleet rate-limit windows at zero API cost
team-governanceTeam governance and COS management
team-kanbanTeam kanban boards and tasks

Memory: transcripts vs curated notes (two complementary systems)

Two memory surfaces answer different questions:

SystemSkill(s)CorpusQuestion it answers
Conversation memorymemory-search (this plugin)AI Maestro's indexed conversation transcripts"what did we SAY / discuss / decide?"
Wiki note memory/janitor-memory-{recall,write,update} (janitor global)curated, symptom-indexed wiki pages"what did we LEARN that must not be re-derived?"

The curated-note memory is now the janitor's GLOBAL wiki-memory system (/janitor-memory-recall, /janitor-memory-write, /janitor-memory-update, governed by ~/.claude/rules/markdown-memory-recall.md). This plugin's own note-memory skills were retired in favor of it; memory-search (transcript search) stays and names the global skills as its complement.

The memgrep engine that recall depends on is owned and published by the ai-maestro-janitor, which CORE declares as a plugin dependency — so it is installed wherever CORE is. Recall degrades to plain grep without it.

CORE used to vendor its own copy and ship rival binaries; ownership was ruled to the janitor in ai-maestro#106 and CORE's copy was removed. It was a strict subset — no validate, lint, new-page, add-atom, add-lesson — published under the same binary name and an identical version string (0.1.0 on both), so whichever build landed last silently decided whether the machine-wide memory protocol could run.

AMP Commands (Agent Messaging Protocol)

12 slash commands for inter-agent communication:

CommandDescription
/amp-initInitialize agent identity and messaging
/amp-identityQuick identity check for context recovery
/amp-statusShow messaging status and registrations
/amp-inboxCheck message inbox
/amp-readRead a specific message
/amp-sendSend a message to another agent
/amp-replyReply to a message
/amp-deleteDelete a message
/amp-registerRegister with an external AMP provider
/amp-fetchFetch messages from external providers
/amp-downloadDownload attachments from a message
/amp-statuslineInstall AMP status line for Claude Code

AMP Scripts

14 shell scripts installed to PATH for messaging operations:

  • amp-init.sh, amp-identity.sh, amp-status.sh
  • amp-inbox.sh, amp-read.sh, amp-send.sh
  • amp-reply.sh, amp-delete.sh, amp-register.sh
  • amp-fetch.sh, amp-download.sh, amp-statusline.sh
  • amp-helper.sh, amp-security.sh

AID Scripts (Agent Identity)

5 shell scripts for agent identity management:

ScriptDescription
aid-init.shInitialize Ed25519 agent identity
aid-register.shRegister identity with a provider
aid-status.shShow identity status
aid-token.shGenerate/exchange identity tokens
aid-helper.shShared helper functions for AID scripts

Versioning and removal policy

Other plugins cite this plugin's skills, commands, and scripts by name in prose, so a removal is a breaking change even when no code imports anything (ai-maestro#118: two removals shipped as MINOR bumps and dependents' citations dangled silently). The policy, enforced by tests/test_surface_removal_policy.py at publish time:

  • Removing or renaming any agent-facing surface (a skill, a command, an AMP/AID script, a CLI verb) is a MAJOR version bump. No exceptions for "nobody uses it".
  • Every removal ships a one-release TOMBSTONE first: the surface's file stays for at least one release as a stub whose body starts with TOMBSTONE and names the successor (or states there is none). The next MAJOR may then drop the stub.
  • The CHANGELOG entry for the MAJOR names every removed surface.

A tombstone only helps dependents who look; the complementary citation-resolver gate (each dependent verifying that skill names cited in its live surfaces still resolve against the provider's released tag) is a generic plugin-quality check that belongs fleet-wide — see the discussion in ai-maestro#118.

Requirements

External tools the plugin's shell scripts call:

  • curl(1) — HTTP requests to AMP providers and AI Maestro
  • jq — JSON parsing in shell scripts
  • openssl — Ed25519 keypair generation for AID
  • base64 — message attachment encoding

Storage

AMP/AID state is written under ~/.agent-messaging/:

~/.agent-messaging/
├── config.json          # local agent config
├── keys/                # Ed25519 keypair (private + public)
├── messages/
│   ├── inbox/           # received messages
│   └── sent/            # sent messages
├── registrations/       # external provider registrations
└── attachments/         # downloaded attachments

License

MIT