Loop Maker banner
EricTechPro EricTechPro

Loop Maker

Development community

Description

Interviews you, then scaffolds a self-running agent loop. Cross-harness (Claude Code / Codex / Hermes / OpenClaw).

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

loop-maker

A portable agent skill β€” works in Claude Code, Codex, Hermes, and OpenClaw β€” that interviews you and scaffolds a self-running autonomous loop, complete with verifier, state file, and human gate, so you don't build one wrong.

Why most loops go wrong

  • Forgot to write a separate verifier (the agent judged its own work)
  • Leaked changing state into the skill file (the loop lost memory between runs)
  • Shipped a loop with no stop condition (it ran forever and burned budget)

`loop-maker` catches all three before you write a line.

Here's what it'll ask you

πŸ›  To build a loop, it asks you 7 things β€” one at a time:
 1. Goal        β€” what checkable condition means "done for now"? (a true/false test, not a vibe)
 2. Trigger     β€” what starts each run: a schedule, an event, or run-until-done?
 3. Discovery   β€” how does it find the work to do each round?
 4. Action      β€” what's it allowed to do, and through which tools?
 5. Verificationβ€” who checks the result, and against what? (a separate judge)
 6. State       β€” where does "what's done / what's left" live, outside the chat?
 7. Human gate  β€” which actions are irreversible and must ask you first?

At a glance

What it does Runs a 7-question wizard; catches missing verifiers, state leaks, and runaway loops before scaffold
What you get A ready-to-run loop folder: SKILL.md + STATE.md + verifier script + stop condition wired in
How you start /loop-maker, or just describe an automate/schedule/monitor task β€” fires without the word "loop"
Install git clone … ~/.claude/skills/loop-maker β€” or see Install below

Wizard UX

Q3/7  β–“β–“β–“β–‘β–‘β–‘β–‘  43%
---
πŸŽ™ elicit  β†’  πŸ”Ž survey  β†’  🎯 select  β†’  πŸ— scaffold
(you are here: 🎯 select)
---
β”Œβ”€ LOOP BLUEPRINT ───────────────────────────────────┐
β”‚ GOAL      βœ“ verifiable                             β”‚
β”‚ TRIGGER   schedule Β· 08:00                         β”‚
β”‚ VERIFY    βœ“ separate script