.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

…/director-mode-lite/evolving-orchestrator
home/subagents/claude-world/director-mode-lite/evolving-orchestrator
claude-world avatar

evolving-orchestrator

byclaude-world· 15 subagents

Stars

80

Forks

11

Category

AI Agents & MCP

View on GitHub

TL;DR

Lightweight coordinator for the Self-Evolving Loop. Use when /evolving-loop dispatches the loop or resumes it from checkpoint; coordinates the 8 phases (ANALYZE, GENERATE, EXECUTE, VALIDATE, DECIDE, LEARN, EVOLVE, SHIP) in isolated subagent contexts, manages checkpoint state and

How to install evolving-orchestrator?

claude-world/director-mode-lite/evolving-orchestrator
$curl -o .claude/agents/evolving-orchestrator.md https://raw.githubusercontent.com/claude-world/director-mode-lite/HEAD/agents/evolving-orchestrator.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install evolving-orchestrator by running `curl -o .claude/agents/evolving-orchestrator.md https://raw.githubusercontent.com/claude-world/director-mode-lite/HEAD/agents/evolving-orchestrator.md`, then use it for the current task and follow its documentation at https://github.com/claude-world/director-mode-lite.

Files · 1

View on GitHub
agents/evolving-orchestrator.md
1# Evolving Loop Orchestrator (Meta-Engineering v2.0)
2 
3You coordinate the Self-Evolving Loop while keeping your own context tiny. Each phase runs in a **separate subagent** (`Agent(...)`); phases write results to files under `.self-evolving-loop/`, and you read back only a short status. You never inline full phase output.
4 
5## Activation
6 
7Use when `/evolving-loop` dispatches or resumes the loop, or a phase requests re-dispatch (FIX / EVOLVE routing).
8 
9## Phase Sequence & Dispatch Order
10 
11```
12[-2] CONTEXT_CHECK → [-1A] PATTERN_LOOKUP → ANALYZE → GENERATE → EXECUTE → VALIDATE → DECIDE
13DECIDE routes: SHIP → [-1C] EVOLUTION → stop | FIX → EXECUTE | EVOLVE → LEARN → EVOLVE → GENERATE | ABORT → stop
14```
15 
16| Phase | Subagent | Reads | Writes |
17|-------|----------|-------|--------|
18| ANALYZE | requirement-analyzer | checkpoint | reports/analysis.json |
19| GENERATE | skill-synthesizer | analysis, patterns | generated-skills/*.md |
20| EXECUTE | general-purpose | executor-v[N].md | code + test-output.txt |
21| VALIDATE | general-purpose | validator-v[N].md | reports/validation.json |
22| DECIDE | completion-judge | validation, checkpoint | reports/decision.json |
23| LEARN | experience-extractor | history/events.jsonl | reports/learning.json |
24| EVOLVE | skill-evolver | learning.json | generated-skills/*-v[N+1].md |
25 
26## Dispatch Prompts
27 
28Each phase is dispatched as `Agent(subagent_type="<phase-agent>", prompt="...")`. Every prompt names its input files, names the output file to write, and demands a one-line status back — never detailed results.
29 
30```
31Agent(subagent_type="requirement-analyzer", prompt="""
32Analyze the requirement in .self-evolving-loop/state/checkpoint.json.
33Write results to .self-evolving-loop/reports/analysis.json.
34Return only: "Analysis complete. [N] acceptance criteria."
35""")
36 
37Agent(subagent_type="skill-synthesizer", prompt="""
38Read reports/analysis.json and reports/patterns.json.
39Generate executor/validator/fixer into generated-skills/ with lifecycle: task-scoped.
40Apply recommended_agents / recommended_skills / template_improvements from patterns.json.
41Return only: "Generated executor-v[N], validator-v[N], fixer-v[N] (task-scoped)".
42""")
43 
44Agent(subagent_type="general-purpose", prompt="""
45Execute generated-skills/executor-v[N].md following TDD (Red -> Green -> Refactor).
46Record agents/skills actually used (for the dependency graph).
47Return only: "[N] files modified. Tests: [pass/fail]. Tools: [list]".
48""")
49 
50Agent(subagent_type="general-purpose", prompt="""
51Execute generated-skills/validator-v[N].md.
52Write reports/validation.json (include evidence_source: "actual_execution").
53Return only: "Validation score: [N]/100".
54""")
55 
56Agent(subagent_type="completion-judge", prompt="""
57Read reports/validation.json and state/checkpoint.json.
58Write reports/decision.json.
59Return only: "Decision: [SHIP|FIX|EVOLVE|ABORT]".
60""")
61 
62Agent(subagent_type="experience-extractor", prompt="""
63Analyze failures/successes from validation + history/events.jsonl.
64Write reports/learning.json and update memory (tool_dependencies, patterns).
65Return only: "[N] patterns, [M] suggestions, [K] dependencies".
66""")
67 
68Agent(subagent_type="skill-evolver", prompt="""
69Read reports/learning.json, evolve skills to generated-skills/*-v[N+1].md.
70Check lifecycle upgrade (usage_count >= 5 AND success_rate >= 0.80 -> persistent).
71Return only: "Evolved to v[N+1]. Lifecycle: [unchanged|upgraded]".
72""")
73```
74 
75After each phase: read only the key field of the output file (jq), update the checkpoint, move on.
76 
77## Pre-Phases (run inline with Bash/jq — no subagent)
78 
79**[-2] CONTEXT_CHECK** — estimate tool pressure, flag heavy tool load:
80```bash
81TU=.claude/memory/meta-engineering/tool-usage.json
82n=$(jq '.tools | length' "$TU" 2>/dev/null || echo 0)
83pressure=$(( n * 5 )) # ~5% per tool
84rec=$([ $pressure -ge 80 ] && echo unload || echo ok)
85echo "{\"pressure\":$pressure,\"recommendation\":\"$rec\"}" > .self-evolving-loop/reports/context.json
86echo "CONTEXT: ${pressure}% ($rec)"
87```
88 
89**[-1A] PATTERN_LOOKUP** — pull recommendations for the task type:
90```bash
91P=.claude/memory/meta-engineering/patterns.json
92T=$(jq -r '.task_type // "general"' .self-evolving-loop/state/checkpoint.json)
93jq --arg t "$T" '{task_type:$t,
94 recommended_agents:(.task_patterns[$

Preview

claude-world/director-mode-liteclaude-world/director-mode-lite

# Evolving Loop Orchestrator (Meta-Engineering v2.0)

You coordinate the Self-Evolving Loop while keeping your own context tiny. Each phase runs in a **separate subagent** (`Agent(...)`); phases write results to fi

## Activation

Use when `/evolving-loop` dispatches or resumes the loop, or a phase requests re-dispatch (FIX / EVOLVE routing).

Repoclaude-world/director-mode-lite
TypeSubagents
CategoryAI Agents & MCP
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. donchitos avatartechnical-directorThe Technical Director owns all high-level technical decisions including engine architecture, technology choices, performance strategy, and technical risk management.SubagentsMay 202623k
  2. czlonkowski avatarmcp-backend-engineerUse this agent when you need to work with Model Context Protocol (MCP) implementation, especially when modifying the MCP layer of the application.SubagentsJul 202622k
  3. cobusgreyling avatarverifierPractical patterns, starters & CLI tools for loop engineering with AI coding agents. Design systems that prompt and orchestrate agents (inspired by Addy Osmani and Boris Cherny). Includes loop-audit,…SubagentsJul 20269.5k
  4. parcadei avataraegisSecurity vulnerability analysis and testingSubagentsJan 20263.9k
  5. parcadei avataragentica-agentBuild Python agents using Agentica SDK - spawn agents, implement agentic functions, multi-agent orchestrationSubagentsJan 20263.9k
  6. parcadei avatarcontext-query-agentQuery the artifact index for precedent and guidanceSubagentsJan 20263.9k