Back to Discover

Animus_Sprint_Loops

skill

crussella0129

A lightweight, platform agnostic protocol for autonomous development and objective handling (repo acts as a Claude Code Plugin Marketplace, Codex Skill, Antigravity Skill, as well as a drop-in skill for custom, local setups like OpenClaw, Hermes, and Animus_Ferric)

View on GitHub
10 starsMITSynced Aug 2, 2026

Install to Claude Code

/plugin marketplace add crussella0129/Animus_Sprint_Loops

README

Animus Sprint Loops

Animus Project's lightweight protocol for autonomous software development — for Claude Code, Codex CLI, and open harnesses like Animus_Ferric, OpenClaw and OpenCode.

Sprint Loops decomposes long-horizon coding work into numbered sprints, each a five-phase sequence — Research → Plan → Build → Test → Loop — with persistent state on disk and a clean separation between working memory and the rolling backlog. The filesystem IS the state machine. Trust the disk.

Three install paths

This repo ships the same protocol three ways. Pick the directory that matches your agent runtime — each is self-contained and ready to use:

DirectoryTargetWhat it is
open-harnesses/OpenClaw, OpenCode, local LLMs, custom runners, GECKThe canonical, runtime-agnostic spec: the core protocol, prompt particles, artifact schemas, and reference shell scripts.
claude-code/Anthropic Claude CodeThe complete, install-ready sprint-loop skill, which is the /sprint-loop slash command (no separate command file). Installable as a plugin — this repo is a Claude Code marketplace (/plugin marketplace add crussella0129/sprint-loops), which loads the skill once regardless of launch directory. See claude-code/README.md.
codex-cli/OpenAI Codex CLIA drop-in ~/.codex/skills/sprint-loops/ skill bundle plus an AGENTS.md fragment.

The core protocol — filesystem layout, phase exit conditions, schemas — is identical across all three. What changes is only how the agent discovers and routes through the phases. Each directory is a complete, self-contained unit: installing one does not require the others, and each carries the full core protocol. open-harnesses/ additionally doubles as the canonical cross-harness reference and the Oovra-particle source.

Quick start

Claude Code (recommended — install as a plugin; this repo is a marketplace):

/plugin marketplace add crussella0129/sprint-loops
/plugin install sprint-loop@sprint-loops

Or manual (skill-only — the skill is the /sprint-loop command):

cp -r claude-code/skills/sprint-loop ~/.claude/skills/
chmod +x ~/.claude/skills/sprint-loop/scripts/*.sh

Then say "start a sprint" or run /sprint-loop start "<goal>". See claude-code/README.md.

Codex CLI:

cp -r codex-cli/skills/sprint-loops ~/.codex/skills/
chmod +x ~/.codex/skills/sprint-loops/scripts/*.sh
cat codex-cli/skills/sprint-loops/AGENTS.md.fragment >> AGENTS.md

See codex-cli/README.md.

Open harness:

cp -r open-harnesses/scripts /path/to/your/project/scripts
chmod +x /path/to/your/project/scripts/*.sh

Index open-harnesses/particles/ into your retrieval store and wire the invocation loop. See open-harnesses/README.md.

Repository layout

sprint-loops/
├── README.md            # this file
├── LICENSE              # MIT
├── open-harnesses/      # Section 1 — canonical spec: protocol, particles, schemas, scripts
├── claude-code/         # Section 2 — the sprint-loop Claude Code skill (is the /sprint-loop command) + plugin manifest
└── codex-cli/           # Section 3 — drop-in Codex CLI skill + AGENTS.md fragment

Cross-harness compatibility

A repo using Sprint Loops can be worked on by any of the three harnesses interchangeably. The filesystem state is the contract:

  • sprints/sN/ and agent-tasks/ mean the same thing everywhere.
  • Phase files are content-identical across harnesses (only the routing layer differs).
  • decisions.md and confidence.txt are universal.
  • Git history is the source of truth for what actually happened.

You can start a sprint on Claude Code at your desk, continue it on Codex in a CI run overnight, and resume it on an OpenClaw node the next morning — without any state translation. The project itself is the protocol.

Distribution

Each adapter directory can ship as a separate release targeted at its harness:

  • sprint-loops-protocol — the spec, schemas, and reference shell scripts (open-harnesses/).
  • sprint-loops-claude-code — drop-in ~/.claude/skills/sprint-loop/ bundle.
  • sprint-loops-codex — drop-in ~/.codex/skills/sprint-loops/ bundle.
  • sprint-loops-particles — Oovra-ready individual .md particles (open-harnesses/particles/).

If folded into GECK, "GECK Loops" becomes a fourth adapter directory — without changing anything in the first three.

License

MIT © 2026 Charles Russella.

Rendered live from crussella0129/Animus_Sprint_Loops's GitHub README — not stored, always reflects the source repo.

1 Plugin

NameDescriptionCategorySource
sprint-loopStructured five-phase workflow (Research → Plan → Build → Test → Loop) for long-horizon coding tasks. Invoked via /sprint-loop or when you ask to start/continue/loop a sprint, or when a project root contains a sprints/ directory.workflow./claude-code

0 Comments

Login required
Log in to post a comment or update on this repo.

No comments yet — be the first to share an update.