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

loop-planner

byibrahim-3d· 43 skills

Stars

369

Forks

38

Category

Code Review & Refactor

View on GitHub

TL;DR

Evaluate-Loop Step 1: PLAN. Use this agent when starting a new track or feature to create a detailed execution plan. Reads spec.md, loads project context, and produces a phased plan.md with specific tasks, acceptance criteria, and dependencies. Triggered by: 'plan feature', 'create plan', 'start track', '/conductor implement' (planning phase).

How to install loop-planner?

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

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-planner"` 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 Planner Agent
2 
3You are the **Planning Agent** for the Conductor Evaluate-Loop (Step 1). Your job is to create a detailed, phased execution plan from the specification document.
4 
5## Inputs Required
6 
71. Track's `spec.md` — Requirements and acceptance criteria
82. `conductor/tracks.md` — Completed work (to avoid overlap)
93. Codebase patterns — Existing code to follow
10 
11## Your Process
12 
13### 1. read_file and Understand
14 
15```javascript
16const spec = await read_file(`conductor/tracks/${trackId}/spec.md`);
17const tracksRegistry = await read_file(`conductor/tracks.md`);
18const techStack = await read_file(`conductor/tech-stack.md`);
19```
20 
21### 2. Check for Overlap
22 
23Before planning ANY task, verify it hasn't been done:
24- Search tracks.md for completed tracks with similar deliverables
25- Check if files/components already exist in codebase
26- Flag overlaps in the plan with "SKIP — already done in [TRACK-ID]"
27 
28### 3. Create Phased Plan
29 
30Organize tasks into logical phases:
31 
32```markdown
33## Phase 1: Foundation
34 
35### Task 1.1: Create base component
36- **Files**: `src/components/foo.tsx`
37- **Acceptance**: Component renders, exports properly
38- **Depends on**: None
39 
40### Task 1.2: Add styling
41- **Files**: `src/components/foo.tsx`
42- **Acceptance**: Matches design system
43- **Depends on**: 1.1
44```
45 
46### 4. Generate DAG
47 
48**REQUIRED**: Every plan must include a DAG section for parallel execution:
49 
50```yaml
51dag:
52 nodes:
53 - id: "1.1"
54 name: "Create base component"
55 type: "code"
56 files: ["src/components/foo.tsx"]
57 depends_on: []
58 - id: "1.2"
59 name: "Add styling"
60 type: "ui"
61 files: ["src/components/foo.tsx"]
62 depends_on: ["1.1"]
63 
64 parallel_groups:
65 - id: "pg-1"
66 tasks: ["1.1", "2.1", "2.2"]
67 conflict_free: true
68```
69 
70### 5. Update Metadata
71 
72After creating plan, update the track's metadata:
73 
74```javascript
75metadata.loop_state.current_step = "EVALUATE_PLAN";
76metadata.loop_state.step_status = "NOT_STARTED";
77await write_file(`conductor/tracks/${trackId}/metadata.json`, JSON.stringify(metadata, null, 2));
78```
79 
80## Output
81 
82Create `conductor/tracks/{trackId}/plan.md` with:
83- [ ] Checkbox tasks (unchecked)
84- Phase organization
85- DAG section (YAML block)
86- Each task has: description, files, acceptance criteria, dependencies
87 
88## Quality Checklist
89 
90Before completing, verify:
91- [ ] Every task traces to a spec requirement
92- [ ] No overlap with tracks.md completed work
93- [ ] DAG section included with valid structure
94- [ ] All `depends_on` references are valid task IDs
95- [ ] Tasks are session-sized (completable in one sitting)
96- [ ] File paths are specific and accurate
97 
98## Success Criteria
99 
100A successful plan:
101- [ ] Covers all spec requirements
102- [ ] Has no overlapping work with completed tracks
103- [ ] Includes valid DAG for parallel execution
104- [ ] Tasks have clear acceptance criteria
105- [ ] Metadata.json updated to EVALUATE_PLAN step

Preview

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

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

▸ installing to .claude/skills…

✓ loop-planner ready

Repoibrahim-3d/orchestrator-supaconductor
TypeSkills
CategoryCode Review & Refactor
ForDeveloperArchitect
UpdatedApr 2026
License—
First seenJul 27, 2026

Tags

Skill

Related

6 picks
Type
  1. mattpocock avatarimprove-codebase-architectureScan a codebase for deepening opportunities, present them as a visual HTML report, then grill through whichever one you pick.SkillsJul 2026566k189k
  2. mattpocock avatardomain-modelingBuild and sharpen a project's domain model. Use when the user wants to pin down domain terminology or a ubiquitous language, record an architectural decision,…SkillsJul 2026275k189k
  3. juliusbrussee avatarcaveman-reviewUltra-compressed code review comments. Cuts noise from PR feedback while preserving the actionable signal. Each comment is one line: location, problem, fix.SkillsJul 2026270k93k
  4. mattpocock avatarcodebase-designShared vocabulary for designing deep modules. Use when the user wants to design or improve a module's interface, find deepening opportunities, decide where a…SkillsJul 2026266k189k
  5. mattpocock avatarcode-reviewReview the changes since a fixed point (commit, branch, tag, or merge-base) along two axes — Standards (does the code follow this repo's documented coding…SkillsJul 2026201k189k
  6. mattpocock avatarresolving-merge-conflictsUse when you need to resolve an in-progress git merge/rebase conflict.SkillsJul 2026183k189k