Stallguard
Description
Drop-in wrapper that streams agent steps and kills/flags stalls, loops, and fake-GOAL finishes.
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
stallguard
[](LICENSE) [](pyproject.toml) [](stallguard/) [](https://github.com/gpt4omni/stallguard/actions/workflows/test.yml)
**Your coding agent says "done". Did it do anything?** stallguard is a drop-in wrapper that streams agent steps, kills stalls and retry-loops, and flags fake-GOAL finishes — with a shareable trace for every run.

pipx install stallguard
stallguard run -- npx claude-code "fix the login bug"
# [stallguard] status=ok exit=0 duration=42.1s trace=traces/stallguard-....html
No code changes. Just prefix your agent command with `stallguard run --`.
The problem
AI coding agents fail in three boring, expensive ways:
- Stalls — no output for 20 minutes while your CI minute-burn ticks.
- Loops — the same tool call retried 500 times (
retrying with same args...). - Fake-GOALs — prints
DONE ✅whilegit diffis empty.
Logs scroll by, nobody watches, green checkmarks lie. stallguard turns each run into a verdict: `ok`, `error`, `stalled`, `looped`, or `fake-goal` — enforced by exit code, so CI can act on it.
30-second quickstart
# any agent, any command — just prefix it
stallguard run -- python -u your_agent.py
stallguard run --stall-timeout 90 --require-diff -- ./run.sh
# inspect a run later
stallguard view traces/stallguard-*.jsonl
# open traces/stallguard-*.html in a browser for the full step-by-step trace
What it catches
| flag | default | catches | exit |
|---|---|---|---|
--stall-timeout N |
120 | no output for N seconds → SIGKILL |
124 |
--repeat-limit K |
15 | K identical lines in a row → SIGKILL |
125 |
--require-diff |
off | exit 0 + "done" text but em |
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11