FORGE Autonomous Loop — Secured iteration runner with cost caps, circuit breakers, and sandbox isolation. Usage: /forge-loop "task description" [options]
Install
npx skillscat add fwehrling/forge/forge-loop Install via the SkillsCat registry.
/forge-loop — FORGE Autonomous Loop
This skill wraps forge-loop.sh to provide autonomous iteration with security guardrails.
French Language Rule
All content generated in French MUST use proper accents (é, è, ê, à, ù, ç, ô, î, etc.), follow French grammar rules (agreements, conjugations), and use correct spelling.
Usage
/forge-loop "Implement authentication module"
/forge-loop "Fix all failing tests" --mode afk --max-iterations 50
/forge-loop "Refactor database layer" --mode pairOptions
| Option | Default | Description |
|---|---|---|
--max-iterations |
30 | Maximum iterations before stopping |
--cost-cap |
10.00 | Cost cap in USD per loop |
--sandbox |
docker | Sandbox type: docker | local | none |
--story |
(none) | Story file for context |
--mode |
hitl | Loop mode: afk | hitl | pair |
--rate-limit |
60 | Max iterations per hour |
--monitor |
false | Enable live log tailing |
--fix-plan |
(auto) | Custom fix plan file path |
Modes
| Mode | Behavior | HITL Gates | Usage |
|---|---|---|---|
| afk | Fully autonomous | None | Overnight, batch |
| hitl | Semi-autonomous | Confirmation every 5 iterations | Default |
| pair | Collaborative | Continuous explanation, small commits | Active development |
Security Guardrails
- Cost cap: Stops when estimated cost exceeds the configured limit
- Circuit breakers: Stops after consecutive errors, no progress, or repeated output
- Rate limiting: Max iterations per hour to prevent runaway loops
- Sandbox: Docker isolation with read-only mounts for sensitive files
- Rollback: Git tag checkpoints before each iteration (
forge-ckpt-iter-N)
Workflow
Load context (if FORGE project):
- Read
.forge/memory/MEMORY.mdfor project context (if exists) - Read the latest session from
.forge/memory/sessions/for continuity forge-memory search "<task description>" --limit 3(if available)
- Read
Validate arguments and check that a task description is provided
Locate the
forge-loop.shscript at~/.claude/skills/forge/forge-loop.shExecute
forge-loop.shwith the provided task and options:bash ~/.claude/skills/forge/forge-loop.sh "task description" [options]Display the loop result (completed, blocked, cost_cap, circuit_breaker, etc.)
Show the log file location and state directory for inspection
Save memory (MANDATORY if FORGE project — never skip):
forge-memory log "Loop terminée : {TASK}, résultat={RESULT}, {N} itérations" --agent loop forge-memory consolidate --verbose forge-memory sync
Checkpoint Management
# List available checkpoints
bash ~/.claude/skills/forge/forge-loop.sh checkpoint-list
# Restore a checkpoint
bash ~/.claude/skills/forge/forge-loop.sh rollback --story forge-ckpt-iter-5