From orchestrated-loop
Run a 4-role iterative loop (Orchestrator/Researcher/Builder/Judge) in the current project. Reads .loop/config.toml, writes state to .loop/<run-id>/. Use when the user wants to iterate on a coding or research task with explicit per-iteration plans, quality gates, and persisted state files. Trigger phrases: "loop run", "iterative loop", "orchestrated loop", "run a loop", "iterate on this task", "build and judge loop", "loop ausführen", "iterativ verbessern".
How this skill is triggered — by the user, by Claude, or both
Slash command
/orchestrated-loop:orchestrated-loopThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill when the user wants iterative, persisted, multi-role execution on a task. Each iteration:
Use this skill when the user wants iterative, persisted, multi-role execution on a task. Each iteration:
Stops when score >= target or after max_iterations.
agent-orchestrator.agentic-os:self-improve.multi-model-orchestrator./loop or /schedule.When invoked via /loop-run [task] or matching trigger phrases:
.loop/config.toml in CWD. If missing, offer to generate a default one (from references/state-format.md snippet).YYYY-MM-DD-HHMMSS-<slug> where <slug> is a 6-char hash of task text.mkdir -p .loop/<run-id>.$env:PYTHONPATH = "${env:CLAUDE_PLUGIN_ROOT}/engine/src"
python -m orchestrated_loop run `
--config .loop/config.toml `
--run-dir .loop/<run-id> `
--project-root $PWD `
--task "<task text>"
Unix:
PYTHONPATH="$CLAUDE_PLUGIN_ROOT/engine/src" python -m orchestrated_loop run \
--config .loop/config.toml \
--run-dir .loop/<run-id> \
--project-root "$PWD" \
--task "<task text>"
.loop/latest. Write the run-id (or full path) into .loop/latest as a single line..loop/<run-id>/RESULTS.json and present to the user:
references/adapter-catalog.md — which adapters exist and what they needreferences/state-format.md — schema of PLAN/TODO/LOG/DECISIONS/RESULTS plus default config TOMLreferences/role-prompts/ — prompts for openai_chat adapternotebooklm_cli adapter needs the notebooklm CLI on PATH and a valid login.codex_rescue adapter needs the codex CLI on PATH.openai_chat adapter needs OPENAI_API_KEY and httpx (optional dep).npx claudepluginhub dynamic-dome/orchestrated-loop --plugin orchestrated-loopCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.