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

loop-plan-evaluator

byibrahim-3d· 43 skills

Stars

369

Forks

38

Category

Debugging

View on GitHub

TL;DR

Evaluate-Loop Step 2: EVALUATE PLAN. Use this agent to verify an execution plan before any code is written. Checks scope alignment, overlap with completed work, DAG validity, dependency correctness, task clarity, and invokes Board of Directors for major tracks. Outputs PASS/FAIL verdict. Triggered by: 'evaluate plan', 'review plan', 'check plan before executing'. Always runs after loop-planner and before loop-executor.

How to install loop-plan-evaluator?

ibrahim-3d/orchestrator-supaconductor/loop-plan-evaluator
$npx -y skills add ibrahim-3d/orchestrator-supaconductor --skill loop-plan-evaluator

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/loop-plan-evaluator"` 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# 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

$ npx -y skills add ibrahim-3d/orchestrator-supaconductor --skill loop-plan-evaluator

▸ installing to .claude/skills…

✓ loop-plan-evaluator ready

Repoibrahim-3d/orchestrator-supaconductor
TypeSkills
CategoryDebugging
ForDeveloper
UpdatedApr 2026
License—
First seenJul 27, 2026

Tags

Skill

Related

6 picks
Type
  1. microsoft avatarazure-diagnosticsDebug Azure production issues on Azure using AppLens, Azure Monitor, resource health, and safe triage.SkillsJul 2026485k1.3k
  2. microsoft avatarappinsights-instrumentationGuidance for instrumenting webapps with Azure Application Insights. Provides telemetry patterns, SDK setup, and configuration references.SkillsJul 2026483k1.3k
  3. mattpocock avatardiagnosing-bugsDiagnosis loop for hard bugs and performance regressions. Use when the user says "diagnose"/"debug this", or reports something broken/throwing/failing/slow.SkillsJul 2026263k189k
  4. obra avatarsystematic-debuggingUse when encountering any bug, test failure, or unexpected behavior, before proposing fixesSkillsJul 2026205k261k
  5. lllllllama avatarsafe-debugRigor Debug / Rigor Audit skill for deep learning research work.SkillsJul 2026176k512
  6. samber avatargolang-error-handlingIdiomatic Golang error handling — creation, wrapping with %w, errors.Is/As, errors.Join, custom error types, sentinel errors, panic/recover, the single…SkillsJul 202636k2.7k