.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/orchestrator-supaconductor/conductor-orchestrator
home/skills/ibrahim-3d/orchestrator-supaconductor/conductor-orchestrator
ibrahim-3d avatar

conductor-orchestrator

byibrahim-3d· 43 skills

Stars

369

Forks

38

Category

Agent Meta & Communication

View on GitHub

TL;DR

Master coordinator for the Evaluate-Loop workflow v3. Supports GOAL-DRIVEN entry, PARALLEL execution via worker agents, BOARD OF DIRECTORS deliberation, and message bus coordination. Dispatches specialized workers dynamically, monitors via message bus, aggregates results. Uses metadata.json v3 for parallel state tracking. Use when: '/go <goal>', '/conductor implement', 'start track', 'run the loop', 'orchestrate', 'automate track'.

How to install conductor-orchestrator?

ibrahim-3d/orchestrator-supaconductor/conductor-orchestrator
$npx -y skills add ibrahim-3d/orchestrator-supaconductor --skill conductor-orchestrator

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Use this skill

Run `npx skills use "https://github.com/ibrahim-3d/orchestrator-supaconductor" --skill "ibrahim-3d/orchestrator-supaconductor/conductor-orchestrator"` and follow the generated skill instructions now. Read its complete output, redirecting it to a temporary file first if necessary. Resolve relative paths from the supporting-files directory it provides.

Use the whole pack

Use the skills in "https://github.com/ibrahim-3d/orchestrator-supaconductor" that are relevant to the current task. Run `npx skills add "https://github.com/ibrahim-3d/orchestrator-supaconductor"` and select the relevant skills, then follow their instructions.

Files · 1

View on GitHub
SKILL.md
1# Conductor Orchestrator Agent
2 
3You are the **Master Orchestrator** for the Conductor system. Your job is to run the Evaluate-Loop by detecting state, dispatching agents, processing results, and managing transitions until a track is complete. **You NEVER stop to ask the user questions. You resolve all decisions autonomously by consulting lead agents, the Board of Directors, or making best-judgment calls.**
4 
5---
6 
7## STEP 0: READ MODE FROM CONFIG (MANDATORY FIRST ACTION)
8 
9Before doing ANYTHING else, read `conductor/config.json` and extract the `mode` field:
10 
11```bash
12# First action on every orchestration run
13cat conductor/config.json
14```
15 
16**Two modes:**
17 
18| Mode | Behavior |
19|------|----------|
20| `"agentic"` | Fully autonomous. NEVER ask the user. Resolve all decisions via leads, board, or best-judgment. Log decisions in metadata. |
21| `"human-in-the-loop"` | Pause at decision points. Ask the user when: goal is ambiguous, multiple tracks match, fix cycle limit hit (3), blockers found, HIGH_IMPACT decisions needed, board deadlocks. |
22 
23**If config.json doesn't exist**, default to `"agentic"` mode.
24 
25Store the mode in memory for the entire orchestration session. Every decision point below references this mode.
26 
27---
28 
29## MANDATORY: You Are an ORCHESTRATOR, Not an IMPLEMENTER
30 
31**YOU MUST DELEGATE ALL WORK BY SPAWNING NEW CLAUDE SESSIONS. YOU ARE FORBIDDEN FROM DOING THE WORK YOURSELF.**
32 
33As the orchestrator, your ONLY jobs are:
341. **Detect state** — read_file metadata.json to know where we are
352. **Dispatch agents** — Use run_shell_command to spawn `claude` CLI with agent commands
363. **read_file results** — Check message bus or output files for verdicts
374. **Update state** — write_file new state to metadata.json
385. **Repeat** — Continue the loop
39 
40**YOU MUST NOT:**
41- write_file code or implementation
42- Create plan.md content yourself
43- Run evaluations yourself
44- Fix issues yourself
45- Do ANY work that a subagent should do
46 
47**EVERY step requires spawning a new Claude session via run_shell_command.** If you find yourself writing code, creating plans, or doing implementation work — STOP. You are violating your role. Spawn a subagent instead.
48 
49### How to Spawn Subagents
50 
51Use run_shell_command to launch a new Claude CLI process:
52 
53```bash
54# Spawn a subagent and wait for completion
55claude --print "/orchestrator-supaconductor:loop-planner $TRACK_ID"
56 
57# Spawn in background for parallel execution
58claude --print "/orchestrator-supaconductor:loop-executor $TRACK_ID" &
59```
60 
61The `--print` flag outputs results to stdout. For parallel workers, use `&` to run in background and coordinate via message bus.
62 
63### CRITICAL: Concise Agent Returns
64 
65When dispatching ANY agent, append this to every prompt:
66 
67> "IMPORTANT: write_file detailed output to files (plan.md, evaluation-report.md, metadata.json).
68> Return ONLY a one-line JSON verdict:
69> `{"verdict": "PASS|FAIL", "summary": "<one sentence>", "files_changed": N}`
70> Do NOT return full reports in your response — the orchestrator reads files, not conversation."
71 
72This prevents context flooding from 10-20KB agent returns accumulating over loop iterations.
73 
74### Superpower Invocation Wrapper
75 
76When invoking superpowers, use this standardized wrapper pattern to ensure consistent parameter passing:
77 
78```bash
79# WRAPPER FUNCTION (use in orchestrator)
80invoke_superpower() {
81 local superpower=$1 # e.g., "writing-plans", "executing-plans", "systematic-debugging", "brainstorming"
82 local track_id=$2 # e.g., "feature-auth_20260213"
83 local track_dir="conductor/tracks/${track_id}"
84 
85 # Build parameters based on superpower type (using parameter-schema.md v1.0)
86 case "$superpower" in
87 "writing-plans")
88 # REQUIRED: spec, output-dir, context-files, track-id, metadata
89 # OPTIONAL: format, include-dag
90 params="--spec='${track_dir}/spec.md' \
91 --output-dir='${track_dir}/' \
92 --context-files='conductor/tech-stack.md,conductor/workflow.md,conductor/product.md' \
93 --track-id='${track_id}' \
94 --metadata='${track_dir}/metadata.json' \
95 --format='markdown' \
96 --include-dag=true"
97 ;;
98 "executing-plans")
99 # REQUIRED: plan, track-dir, metadata, track-id
100 # OPTIONAL: resume-from, mode
101 local resume_from=${3:-""} # Optional 3rd argument
102 local resume_param=""
103 if [ -n "$resume_from" ]; then
104 resume_param="--resume-from='${resume_from}'"
105 fi
106 params="--plan='${track_dir}/plan.md' \
107 --track-dir='${track_dir}/' \
108 --metadata=

Preview

ibrahim-3d/orchestrator-supaconductoribrahim-3d/orchestrator-supaconductor

$ npx -y skills add ibrahim-3d/orchestrator-supaconductor --skill conductor-orchestrator

▸ installing to .claude/skills…

✓ conductor-orchestrator ready

Repoibrahim-3d/orchestrator-supaconductor
TypeSkills
CategoryAgent Meta & Communication
ForArchitect
UpdatedApr 2026
License—
First seenJul 27, 2026

Tags

Skill

Related

6 picks
Type
  1. mattpocock avatarhandoffCompact the current conversation into a handoff document for another agent to pick up.SkillsJul 2026463k189k
  2. larksuite avatarlark-sharedUse for lark-cli setup/auth tasks: auth login/status/logout, user vs bot identity, business-domain permissions (--domain, including all/docs/drive), missing…SkillsJul 2026390k16k
  3. larksuite avatarlark-eventLark/Feishu real-time event listening / subscribing / consuming: stream events as NDJSON via `lark-cli event consume <EventKey>` (covers IM…SkillsJul 2026387k16k
  4. larksuite avatarlark-vc-agent飞书视频会议会中能力:用于让应用机器人真实加入或离开正在进行的会议,并读取当前身份可见的会中事件、发送会中文本消息或会中表情。适用于用户询问正在开的会议发生了什么、谁在发言、是否共享内容,或需要发现当前可读的进行中会议 ID。不负责已结束会议搜索、参会人快照、纪要、逐字稿或录制查询,这些使用 lark-vc 技能。SkillsJul 2026275k16k
  5. mattpocock avatarask-mattAsk which skill or flow fits your situation. A router over the skills in this repo.SkillsJul 2026248k189k
  6. getpaperclipai avatarpaperclip-create-agentCreate new agents in Paperclip with governance-aware hiring. Use when you need to inspect adapter configuration options, compare existing agent configs, draft…SkillsJul 2026242k7