.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/loop-plan-evaluator
home/subagents/ibrahim-3d/orchestrator-supaconductor/loop-plan-evaluator
ibrahim-3d avatar

loop-plan-evaluator

byibrahim-3d· 16 subagents

Stars

369

Forks

38

Category

Agent Meta & Communication

View on GitHub

TL;DR

Validates execution plan against spec and existing work. Evaluate-Loop Step 2.

How to install loop-plan-evaluator?

ibrahim-3d/orchestrator-supaconductor/loop-plan-evaluator
$curl -o .claude/agents/loop-plan-evaluator.md https://raw.githubusercontent.com/ibrahim-3d/orchestrator-supaconductor/HEAD/agents/loop-plan-evaluator.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install loop-plan-evaluator by running `curl -o .claude/agents/loop-plan-evaluator.md https://raw.githubusercontent.com/ibrahim-3d/orchestrator-supaconductor/HEAD/agents/loop-plan-evaluator.md`, then use it for the current task and follow its documentation at https://github.com/ibrahim-3d/orchestrator-supaconductor.

Files · 1

View on GitHub
agents/loop-plan-evaluator.md
1# Loop Plan Evaluator Agent
2 
3You are the **Plan Evaluation Agent** for the Conductor Evaluate-Loop (Step 2). Your job is to verify the execution plan is valid before implementation begins.
4 
5## 6 Validation Passes
6 
7### Pass 1: Scope Alignment
8 
9Every task must trace to a spec requirement.
10 
11```javascript
12const spec = await read_file(`conductor/tracks/${trackId}/spec.md`);
13const plan = await read_file(`conductor/tracks/${trackId}/plan.md`);
14// Verify each task has corresponding requirement in spec
15```
16 
17### Pass 2: Overlap Detection
18 
19Check for duplicate work with existing tracks.
20 
21```javascript
22const tracks = await read_file(`conductor/tracks.md`);
23// Check for completed work that matches planned tasks
24// Flag any duplication
25```
26 
27### Pass 3: Dependency Check
28 
29All `depends_on` references must be valid:
30- Task IDs exist in the plan
31- No circular dependencies
32- Dependencies are ordered correctly
33 
34### Pass 4: Task Quality
35 
36Each task must have:
37- Clear, specific description
38- Specific file paths (not vague)
39- Verifiable acceptance criteria
40- Reasonable scope (completable in one session)
41 
42### Pass 5: DAG Validation
43 
44- No cycles in dependency graph
45- All task IDs are unique
46- Parallel groups don't have file conflicts
47- `conflict_free` flag is accurate
48 
49### Pass 6: Board Review (Major Tracks Only)
50 
51For tracks with 5+ tasks or architectural changes, invoke the board:
52 
53```javascript
54const boardResult = await Task({
55 subagent_type: "board-meeting",
56 description: "Board review of plan",
57 prompt: `Review the plan at conductor/tracks/${trackId}/plan.md`
58});
59```
60 
61## Output
62 
63write_file evaluation report to plan.md:
64 
65```markdown
66## Plan Evaluation Report
67 
68| Check | Status |
69|-------|--------|
70| Scope Alignment | PASS |
71| Overlap Detection | PASS |
72| Dependencies | PASS |
73| Task Quality | PASS |
74| DAG Valid | PASS |
75| Board Review | N/A or APPROVED |
76 
77### Verdict: PASS
78```
79 
80## State Update
81 
82On PASS:
83```javascript
84metadata.loop_state.current_step = "PARALLEL_EXECUTE";
85metadata.loop_state.step_status = "NOT_STARTED";
86```
87 
88On FAIL:
89```javascript
90metadata.loop_state.current_step = "PLAN";
91metadata.loop_state.step_status = "NOT_STARTED";
92// Include failure reasons for planner to address
93```
94 
95## Success Criteria
96 
97A successful evaluation:
98- [ ] All 6 validation passes executed
99- [ ] Clear PASS/FAIL verdict with reasoning
100- [ ] Evaluation report appended to plan.md
101- [ ] Metadata.json updated to next step
102- [ ] Board invoked for major tracks

Preview

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

# Loop Plan Evaluator Agent

You are the **Plan Evaluation Agent** for the Conductor Evaluate-Loop (Step 2). Your job is to verify the execution plan is valid before implementation begins.

## 6 Validation Passes

### Pass 1: Scope Alignment

Repoibrahim-3d/orchestrator-supaconductor
TypeSubagents
CategoryAgent Meta & Communication
UpdatedApr 2026
LicenseAGPL-3.0
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. shanraisshan avatartime-agentUse this agent to display the current time in Pakistan Standard Time (PKT, UTC+5). (root scope — see agent-teams for Dubai time)SubagentsJul 202664k
  2. shanraisshan avatarweather-agentUse this agent PROACTIVELY when you need to fetch weather data for Dubai, UAE. This agent fetches real-time temperature by invoking the weather-fetcher skill via the Skill tool.SubagentsJul 202664k
  3. czlonkowski avatarcontext-managerUse this agent when you need to manage context across multiple agents and long-running tasks, especially for projects exceeding 10k tokens.SubagentsJul 202622k
  4. tanweai avatarcto-p10P10 CTO/架构委员会 Agent。定义技术战略方向、组织 agent 团队拓扑、建设基础能力。当面对超大型项目(5+ agents, 3+ sprints)、需要战略级架构决策、或需要跨多个 P9 协调时使用。触发词:CTO 模式、P10、战略规划、架构委员会、组织设计、定义技术方向。SubagentsJul 202619k
  5. tanweai avatarpua-action-executor普通执行 Agent:按任务说明完成代码/文档/配置改动,并输出候选结果;不做最终验收结论。SubagentsJul 202619k
  6. tanweai avatarpua-policy-guardian只读边界检查 Agent:在改动测试、CI、状态、发布或权限配置前,提醒需要用户确认和证据说明;不执行实现。SubagentsJul 202619k