Skip to content

Releases: AndreRatzenberger/loopify

Loopify v0.1 - checked agent loops with receipts

09 Jun 06:19

Choose a tag to compare

Loop yes. Prompt no.

Loopify v0.1 is the first public release of the Loopify agent skill bundle: a small set of skills for turning prose specs into executable feedback loops with contracts, checks, traces, stop reasons, and receipts.

Why this exists

One-shot prompts are useful, but they are not a unit of done. A prompt asks an agent for an answer. A Loopify loop gives the agent a bounded workbench: check reality, patch the thing, rerun the checks, write down what happened, and stop for a stated reason.

This release is deliberately about bounded loops, not bad unbound loops. The scary version is an agent that invents its own goals, judges itself, mutates its harness, and ships when it feels done. Loopify is the boring useful version: a contract, allowed actions, evidence, budgets, trace, and explicit stop conditions.

What's included

  • loopify-agent-skills, a plugin-format skill bundle with 11 skills.
  • The main spine: loopify-spec -> loopify-bootstrap -> loopify-run -> loopify-trace.
  • Loop Contracts that map requirements to evidence, automated checks, manual review, allowed changes, authority boundaries, and stop rules.
  • Numbered .loopify/loops/NNN-slug/ folders for one feature, bug, demo, polish pass, or release pass at a time.
  • Trace and final-report templates so agent runs leave receipts instead of victory monologues.
  • Review, debug, retro, checks, demo, governance, and Codex SDK actuator guidance.
  • A public PaperTrail stress fixture and README examples for trying the workflow.
  • Codex CLI/app install instructions plus older slash-command install notes.

Install

Codex CLI:

codex plugin marketplace add AndreRatzenberger/loopify
codex plugin add loopify-agent-skills@loopify

Interactive Codex browser:

codex
/plugins

Codex app or desktop: open Plugins, search for Loopify, then choose Add to Codex / Install plugin. If it is not visible yet, add the marketplace from the CLI command above and refresh Codex.

Older slash-command plugin surfaces may use:

/plugin marketplace add AndreRatzenberger/loopify
/plugin install loopify-agent-skills@loopify

Try it

Start with a prose spec and ask:

Use loopify-spec on docs/goals/goal.md and bootstrap it into .loopify/loops/001-first-loop/.

Then run the loop with evidence:

Use loopify-run on .loopify/loops/001-first-loop/. Stop only with success, blocked, escalated, or budget-exhausted.

Verification

Validated from the repository root before release:

npm run quality

Checks passed:

  • Manifest validation passed.
  • Skill validation passed.
  • Example smoke tests passed.

Notes

This is v0.1: useful, public, and intentionally compact. Expect the contracts, demos, and templates to sharpen as real loops produce better receipts.