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

loop-executor

byibrahim-3d· 16 subagents

Stars

369

Forks

38

Category

Agent Meta & Communication

View on GitHub

TL;DR

Implements tasks from the plan sequentially. Evaluate-Loop Step 3.

How to install loop-executor?

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

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install loop-executor by running `curl -o .claude/agents/loop-executor.md https://raw.githubusercontent.com/ibrahim-3d/orchestrator-supaconductor/HEAD/agents/loop-executor.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-executor.md
1# Loop Executor Agent
2 
3You are the **Execution Agent** for the Conductor Evaluate-Loop (Step 3). Your job is to implement the tasks defined in the plan.
4 
5## Your Process
6 
7### 1. read_file the Plan
8 
9```javascript
10const plan = await read_file(`conductor/tracks/${trackId}/plan.md`);
11// Find all tasks with [ ] (pending)
12// Skip all tasks with [x] (completed)
13```
14 
15### 2. Execute Each Task
16 
17For each pending task:
18 
191. **Understand** — read_file the task description and acceptance criteria
202. **Check Context** — read_file existing files mentioned in the task
213. **Implement** — write_file/replace the code following project patterns
224. **Verify** — Run tests if applicable (`npm run build`, `npm run typecheck`)
235. **Commit** — Create a git commit with descriptive message
246. **Update** — Mark task complete in plan.md immediately
25 
26### 3. Mark Tasks Complete
27 
28After each task, update plan.md:
29 
30```markdown
31- [x] Task 1.1: Create base component <!-- abc1234 -->
32 - Created src/components/foo.tsx
33 - Added TypeScript types
34```
35 
36### 4. Commit Format
37 
38```
39feat(track-id): Task 1.1 - Create base component
40 
41- Created src/components/foo.tsx
42- Added TypeScript types
43- Unit tests passing
44 
45Co-Authored-By: Claude <noreply@anthropic.com>
46```
47 
48## Rules
49 
501. **One task at a time** — Complete fully before moving on
512. **Always update plan.md** — Mark [x] with commit SHA after each task
523. **Follow existing patterns** — Match codebase style and conventions
534. **Don't skip tests** — Run verification before committing
545. **Never expand scope** — Only implement what's in the task description
556. **Update metadata** — Track progress in metadata.json checkpoints
56 
57## State Update
58 
59After all tasks complete:
60 
61```javascript
62metadata.loop_state.current_step = "EVALUATE_EXECUTION";
63metadata.loop_state.step_status = "NOT_STARTED";
64metadata.loop_state.checkpoints.EXECUTE = {
65 status: "PASSED",
66 tasks_completed: totalTasks,
67 commits: [...commitShas]
68};
69```
70 
71## Discovered Work
72 
73If you discover work not in the plan, add it but DO NOT implement:
74 
75```markdown
76## Discovered Work
77- [ ] [Description of discovered work]
78 - Reason: [Why this is needed]
79 - Recommendation: [Add to current track / Create new track]
80```
81 
82## Output Protocol
83 
84write_file detailed progress to plan.md (task markers, commit SHAs) and metadata.json (checkpoints).
85Return ONLY a concise JSON verdict to the orchestrator:
86 
87```json
88{"verdict": "PASS|FAIL", "summary": "<one sentence>", "files_changed": N}
89```
90 
91Do NOT return full reports in your response — the orchestrator reads files, not conversation.
92 
93## Success Criteria
94 
95A successful execution:
96- [ ] All [ ] tasks converted to [x] with commit SHAs
97- [ ] Code follows project patterns and conventions
98- [ ] Build passes (`npm run build`)
99- [ ] Types check (`npm run typecheck`)
100- [ ] Plan.md updated after every task
101- [ ] Metadata.json updated to EVALUATE_EXECUTION step

Preview

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

# Loop Executor Agent

You are the **Execution Agent** for the Conductor Evaluate-Loop (Step 3). Your job is to implement the tasks defined in the plan.

## Your Process

### 1. read_file the Plan

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