maestro/skills/analysis/opc-architecture/SKILL.md
OPC Architecture Understanding
npx skillsauth add scooter-lacroix/maestro opc-architectureInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
OPC (Orchestrated Parallel Claude) extends Maestro - it does NOT replace it.
Maestro CLI is the execution engine. OPC adds orchestration via:
When you spawn an agent:
subprocess.Popen(["claude", "-p", "prompt"])$ claude ← Main Maestro (your terminal)
↓ Task tool triggers hook
↓ subprocess.Popen(["claude", "-p", "..."])
├── claude -p "research..." ← Child agent 1
├── claude -p "implement..." ← Child agent 2
└── claude -p "test..." ← Child agent 3
.maestro/hooks/.maestro/skills/.maestro/
├── hooks/ ← TypeScript hooks that Maestro runs
├── skills/ ← SKILL.md prompts that Maestro loads
├── settings.json ← Hook registration, Maestro reads this
└── cache/ ← State files, agent outputs
opc/
├── scripts/ ← Python scripts called by hooks
├── docker-compose.yml ← PostgreSQL, Redis, PgBouncer
└── init-db.sql ← Database schema
claude in terminal.maestro/settings.jsonclaude -p "research..." as subprocess.maestro/cache/agents/<id>/claude -p processtools
Wiring Verification
tools
Create and configure Maestro sub-agents with custom prompts, tools, and models
data-ai
Create and use Maestro slash commands - quick prompts, bash execution, file references
development
Upgrade any skill to v5 Hybrid format using decision theory + modal logic