By AaronLPS
Design and scaffold self-running agent loops that execute unattended workflows with scheduling, isolation, and self-verification, then capture and file feedback as GitHub issues under your own account.
Capture, review, and file a bug report or feedback as a GitHub issue under the user's OWN account. Use whenever the user wants to report a bug, give feedback, file an issue, or review collected feedback about loop-builder or a loop it generated. Sanitizes private content and requires explicit consent before any public issue is filed.
Design and scaffold an agent "loop" — an unattended, scheduled, self-verifying agent workflow. Use this whenever the user wants to automate a recurring task, schedule an agent, run an agent unattended or overnight, set up monitoring, triage, or alerting, poll something on a cadence, or turn a manual repeated workflow into a self-running one — even if they never say the word "loop." If a request implies "do this every day / on a schedule / until some condition holds, without me typing each time," reach for this skill. It walks the seven-question blueprint, picks the simplest loop pattern, and scaffolds the six building blocks (schedule, isolation, skill, connectors, verifier, state) with a human-gate list and a budget.
Turn a workflow you just performed into a pre-filled loop blueprint. Use when the user says "turn what I just did into a loop", "distill my recent work", "make a loop out of this session", or otherwise wants to automate a multi-step task they already did by hand. Reads the current session transcript, judges whether it fills the loop blueprint, drafts the seven answers from evidence (never fabricating), and hands off to loop-builder to run the interview and scaffold. It never scaffolds loops itself.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
A Claude Code plugin bundling two skills: loop-builder (interviews you and scaffolds a self-running loop) and feedback-to-issue (files your feedback as a GitHub issue under your own account).
An unattended, scheduled, self-verifying agent workflow for whatever you describe.
Automate a recurring task, schedule an agent, set up monitoring or triage, run an agent overnight, or turn a manual workflow into a self-running one — even if you never say the word "loop."
| What it does | Turns "automate / schedule / monitor / compare …" into a real, runnable loop folder |
| What you get | A skill, a separate verifier, a state file, human-gates, and a trigger stub |
| How you start | Just describe the task — it triggers without the word "loop" |
| What's built in | A separate checker, a human gate on irreversible actions, and a budget/stop |
| Install | /plugin install loop-builder@loop-builder (jump ↓) |
A loop is not one long prompt. It is a small self-running system in which an agent finds work, acts, gets graded against explicit criteria by a separate checker, and repeats — until the criteria pass or a budget runs out, without a human typing each turn.
The reason loops need engineering at all is one blunt fact:
The agent starts cold every run. It forgets everything between runs. So conventions, commands, and "what's already done" must live outside the context window, on disk. The agent forgets; the repo does not.
Designing that system by hand each time is error-prone — people forget the verifier, leak mutable state into the wrong place, or ship a loop with no stop condition. loop-builder turns the design into a repeatable interview + scaffold so every loop you build has the parts that keep it safe and trustworthy.
When it triggers, it runs in phases — elicit → survey reuse → select → scaffold — and never skips ahead, because a loop with a missing part is the failure mode, not a shortcut.
describe elicit survey select scaffold
the task → 7 decisions → reuse what's → simplest → 6 blocks as
one at a time installed pattern real files
flowchart TD
U["You: 'automate / schedule / monitor / compare ...'"] --> T{loop-builder triggers}
T --> P1["Phase 1 · ELICIT<br/>the 7 decisions, one at a time"]
P1 --> A
subgraph SV["Phase 1.5 · SURVEY REUSE"]
direction TB
A["1.5a · installed<br/>skills / MCPs / sub-agents already on the machine"] --> B
B["1.5b · skill-bank search sub-agent<br/>reads recommended.md (curated standouts)<br/>+ catalog/*.md — 5 sources, searched on demand"]
end
B --> P2["Phase 2 · SELECT<br/>simplest fitting pattern<br/>(load only that reference)"]
P2 --> P3["Phase 3 · EMIT<br/>the fill-in template, populated"]
P3 --> SC["SCAFFOLD the 6 building blocks<br/>as real files"]
SC --> OUT["A loop folder you can run"]
P1 -. enforces .-> R1{{"Goal must be a checkable<br/>predicate, not a vibe"}}
SV -. compose, don't rebuild .-> R4{{"Reuse needs a named fallback<br/>(skills are changing state)"}}
SC -. always emits .-> R2{{"Human-gate list<br/>+ budget / stop condition"}}
SC -. enforces .-> R3{{"Durable → skill<br/>Changing → state file"}}
Every loop, whatever its purpose, comes down to seven decisions. Each maps to a building block:
npx claudepluginhub aaronlps/loop-builder --plugin loop-builderMulti-agent workflow orchestration with natural language creation, parallel execution, conditional flows, and visual progress tracking
agent-flow — Claude Code plugin for automated bug-fix, feature, and scaffold workflows. Issue tracker to merged PR via a pipeline of specialized AI agents.
Build loop engineers: a file-based knowledge base your agents read/write (loops), plus a codebase harness (dev-local stack, e2e gate, an isolated cloud box per agent via crabbox, and verify-before-ship) so loops can run, test, and ship code autonomously.
Long-running agent harness with 5-layer memory architecture, GitHub integration via gh CLI, autonomous batch processing with a dedicated implementer subagent, Agent Teams with ATDD, quality-gate hooks, and 6 Agent Skills
Automated development loop and ad-hoc workflow generation for orchestrating AI coding agents
loophaus — Control plane for coding agents