loop-nanny
Monitor running agent loops, triage failures, clean up after completion, and decide when to intervene. Use when a loop is running and needs babysitting, when a loop just finished and needs post-merge verification, when stories are skipping/failing and need diagnosis, or when stale test artifacts need cleanup. Triggers on: 'check the loop', 'what happened with the loop', 'loop finished', 'clean up after loop', 'why did that story skip', 'monitor loop', 'nanny the loop', or any post-start loop management task. Distinct from agent-loop skill (which handles starting loops).
What this skill does
# Loop Nanny Monitor, triage, and clean up after agent loops. The agent-loop skill starts loops. This skill keeps them healthy. ## Monitor a Running Loop ```bash joelclaw loop status <LOOP_ID> ``` `joelclaw` is the primary CLI. Poll every 2–3 minutes. A story typically takes 3–8 minutes (test-write → implement → review → judge). If a story shows no progress for 10+ minutes, something is stuck. ### Reading Status Output | Status | Meaning | Action | |--------|---------|--------| | `✅ PASS` | Story completed | None | | `⏭ SKIP` | Exhausted retries | Check if code landed anyway (common — see Skip Triage) | | `▶ STORY.DISPATCHED` | Implementor running | Wait | | `▶ TESTS.WRITTEN` | Reviewer running | Wait | | `▶ CHECKS.COMPLETED` | Judge evaluating | Wait | | `▶ STORY.RETRIED` | Failed, retrying | Check attempt output for patterns | | `▶ RETRO.COMPLETED` | Loop finishing (merge-back) | Wait for merge, then verify | | `⏳ pending` | Not yet started | Normal — queued | ## Skip Triage Stories skip when the judge fails them after max retries. But **the implementation often landed anyway** — later stories may have included the work, or the first attempt was correct but tests were over-specified. ### Check if skipped work actually landed ```bash # 1. Read the attempt output cat /tmp/agent-loop/<LOOP_ID>/<STORY_ID>-<ATTEMPT>.out | tail -40 # 2. Check if the files exist on main after merge ls <project>/path/to/expected/file # 3. Check git log for the story's commits cd <project> && git log --oneline --grep="<STORY_ID>" -5 ``` ### Common skip causes | Pattern | Cause | Prevention | |---------|-------|------------| | "Already exists" | Story duplicates work from prior story | Write more atomic stories; planner didn't know current state | | Test assertion failure | Agent-generated tests over-specify implementation | Acceptance criteria should test behavior, not implementation | | TypeScript compile error | Story depends on types from a skipped story | Order stories so type-providing stories run first | | Timeout | Implementor took too long | Smaller story scope | ## Post-Loop Cleanup After merge-back completes (status shows `RETRO.COMPLETED` then resolves): ### 1. Verify merge landed ```bash cd <project> && git log --oneline -5 # Should show: "Merge branch 'agent-loop/<LOOP_ID>'" ``` ### 2. Run full test suite ```bash cd <project> && bun test 2>&1 | tail -5 ``` ### 3. Delete stale acceptance tests Agent loops generate `__tests__/<story-id>-*.test.ts` files. These test implementation details and break on every refactor. Delete them after verifying the real tests pass. ```bash # Find agent-generated test files ls <project>/__tests__/*-*.test.ts 2>/dev/null # Check which fail bun test __tests__/ 2>&1 | grep "(fail)" # Delete ALL agent-generated acceptance tests (they served their purpose) rm <project>/__tests__/<prefix>-*.test.ts # Verify clean bun test 2>&1 | tail -3 ``` Per AGENTS.md: *"over-specified tests that mock internal step names are worse than no tests — they break on every refactor and give false negatives."* ### 4. TypeScript check ```bash cd <project> && bunx tsc --noEmit ``` ### 5. Restart worker deployment (if loop touched Inngest functions) ```bash kubectl -n joelclaw rollout restart deployment/system-bus-worker kubectl -n joelclaw rollout status deployment/system-bus-worker --timeout=180s joelclaw refresh joelclaw status ``` ### 6. Commit cleanup ```bash cd <project> && git add -A && git commit -m "chore: post-loop cleanup for <LOOP_ID> Delete stale acceptance tests, verify N pass / 0 fail / tsc clean" ``` ## When to Intervene ### Don't intervene — let the loop work - Story on first attempt (even if slow) - Story retrying with feedback (judge gave actionable feedback) - Story just skipped but later stories are still pending ### Intervene — something is broken - **Same error on retry**: Check attempt output. If retry 2 has identical error to retry 1, the feedback loop isn't helping — cancel and fix the root cause. - **Merge conflict during complete**: `joelclaw logs errors` will show merge abort. Manually resolve: `cd <project> && git merge --abort` then merge the branch by hand. - **Worker crashed**: `joelclaw status` shows worker down. Restart deployment: `kubectl -n joelclaw rollout restart deployment/system-bus-worker` - **All stories skipping**: The PRD likely has a bad assumption. Cancel, review prd.json, re-fire. - **Loop stuck (no progress for 15min)**: Check `joelclaw runs --count 5` — if the latest run is COMPLETED but no new run dispatched, there's a state bug. Cancel and re-fire from the stuck story. ### Cancel a stuck loop ```bash joelclaw loop cancel <LOOP_ID> # Clean up worktree manually (cancel doesn't auto-merge) cd <project> git worktree remove /tmp/agent-loop/<LOOP_ID> --force 2>/dev/null git branch -D agent-loop/<LOOP_ID> 2>/dev/null git worktree prune ``` ## Reading Attempt Output Each story attempt writes to `/tmp/agent-loop/<LOOP_ID>/<STORY_ID>-<ATTEMPT>.out`. These contain the implementor/reviewer's full output (diffs, reasoning, test results). ```bash # Quick scan — last 40 lines usually has the verdict tail -40 /tmp/agent-loop/<LOOP_ID>/<STORY_ID>-<ATTEMPT>.out # Check all attempts for a story ls /tmp/agent-loop/<LOOP_ID>/<STORY_ID>-*.out # Grep for errors across all attempts grep -i "error\|fail\|reject" /tmp/agent-loop/<LOOP_ID>/*.out ``` ## Monitoring Checklist Use this sequence when babysitting a loop: ``` 1. joelclaw loop status <LOOP_ID> — where are we? 2. (if story running) wait 3 min, re-check 3. (if story skipped) check attempt output — did the work land anyway? 4. (if loop completed) verify merge, run tests, delete stale tests, restart worker 5. (if stuck) joelclaw runs --count 5 + joelclaw logs errors — diagnose ``` ## Improve joelclaw While You Nanny The nanny is the primary consumer of `joelclaw` output. When you hit a gap — missing info, unclear output, an extra step you had to do manually — **fix joelclaw right then**. The joelclaw source lives at `~/Code/joelhooks/joelclaw/`. ### What to improve - **Missing data in output**: `joelclaw loop status` doesn't show story descriptions? Add them. - **Manual steps that should be commands**: Had to `kubectl logs` directly? Add it to `joelclaw logs`. - **Bad next_actions**: The suggested next commands don't match what you actually needed? Fix the HATEOAS. - **Error without fix**: Got an error with no `fix` field? Add one via `respondError()`. - **New command needed**: Found yourself running raw curl/GraphQL? Wrap it in a joelclaw command. ### How to improve ```bash # Commands are in packages/cli/src/commands/ — one file per command # Response helpers in packages/cli/src/response.ts # Inngest client methods in packages/cli/src/inngest.ts # Test your change joelclaw <command> 2>&1 | python3 -m json.tool # Commit git add -A && git commit -m "feat: joelclaw <command> — <what you added>" ``` Follow the [cli-design skill](../cli-design/SKILL.md): JSON always, HATEOAS next_actions, context-safe output, errors with fixes. After improving joelclaw, update this skill doc if the monitoring workflow changed. ## Diagnosing Stalled Loops When a loop stops progressing, use the diagnostic command FIRST: ```bash # Quick diagnosis of all loops joelclaw loop diagnose all -c # Diagnose + auto-fix (clears claims, re-fires plan events) joelclaw loop diagnose all -c --fix # Verify fix worked (~30s later) joelclaw loop status <loop-id> -c ``` Common diagnoses: - **CHAIN_BROKEN** — judge→plan event was lost. `--fix` re-fires the plan event. - **ORPHANED_CLAIM** — agent died but claim remains. `--fix` clears claim + re-fires. - **STUCK_RUN** — Inngest run active but agent dead. `--fix` clears + re-fires. - **WORKER_UNHEALTHY** — fewer functions than expected. `--fix` restarts worker. See [loop-diagnosis skill](../loop-diagnosis/SKILL.md) for full reference. ## Gotchas - **Don't edit the monorepo while a loop runs** — `g
Related in AI Agents
skill-development
IncludedComprehensive meta-skill for creating, managing, validating, auditing, and distributing Claude Code skills and slash commands (unified in v2.1.3+). Provides skill templates, creation workflows, validation patterns, audit checklists, naming conventions, YAML frontmatter guidance, progressive disclosure examples, and best practices lookup. Use when creating new skills, validating existing skills, auditing skill quality, understanding skill architecture, needing skill templates, learning about YAML frontmatter requirements, progressive disclosure patterns, tool restrictions (allowed-tools), skill composition, skill naming conventions, troubleshooting skill activation issues, creating custom slash commands, configuring command frontmatter, using command arguments ($ARGUMENTS, $1, $2), bash execution in commands, file references in commands, command namespacing, plugin commands, MCP slash commands, Skill tool configuration, or deciding between skills vs slash commands. Delegates to docs-management skill for official documentation.
reprompter
IncludedTransform messy prompts into well-structured, effective prompts — single or multi-agent. Use when: "reprompt", "reprompt this", "clean up this prompt", "structure my prompt", rough text needing XML tags and best practices, "reprompter teams", "repromptception", "run with quality", "smart run", "smart agents", multi-agent tasks, audits, parallel work, anything going to agent teams. Don't use when: simple Q&A, pure chat, immediate execution-only tasks. See "Don't Use When" section for details. Outputs: Structured XML/Markdown prompt, quality score (before/after), optional team brief + per-agent sub-prompts, agent team output files. Success criteria: Single mode quality score ≥ 7/10; Repromptception per-agent prompt quality score 8+/10; all required sections present, actionable and specific.
adaptive-compaction
IncludedAdaptive add-on policy and recovery layer that decides WHEN to compact, prune, snapshot, or fork -- replacing fixed-percent auto-compaction across Claude Code, Codex, and MCP-capable hosts. Trigger on auto-compact timing or damage: "when should I compact", "is it safe to compact now or start a fresh session", "auto-compact fires too early/mid-task", "switching to an unrelated task but the window still has space", "context rot", "answers get worse the longer the session runs", "the agent forgot the plan or my decisions after it summarized", "add a layer on top that manages context without changing the agent", raising autoCompactWindow to give the policy room, or installing/tuning a cross-tool compaction policy or PreCompact hook -- even when "compaction" is never said but the problem is context-window pressure or post-summarization memory loss. Do NOT use to summarize a conversation, build RAG, write a summarization prompt (decides WHEN not HOW), or answer max-context-length trivia.
agent-skill-creator
IncludedCreate cross-platform agent skills from workflow descriptions. Activates when users ask to create an agent, automate a repetitive workflow, create a custom skill, or need advanced agent creation. Triggers on phrases like create agent for, automate workflow, create skill for, every day I have to, daily I need to, turn process into agent, need to automate, create a cross-platform skill, validate this skill, export this skill, migrate this skill. Supports single skills, multi-agent suites, transcript processing, template-based creation, interactive configuration, cross-platform export, and spec validation.
llm-wiki
IncludedUse when building or maintaining a persistent personal knowledge base (second brain) in Obsidian where an LLM incrementally ingests sources, updates entity/concept pages, maintains cross-references, and keeps a synthesis current. Triggers include "second brain", "Obsidian wiki", "personal knowledge management", "ingest this paper/article/book", "build a research wiki", "compound knowledge", "Memex", or whenever the user wants knowledge to accumulate across sessions instead of being re-derived by RAG on every query.
skill-master
IncludedAgent Skills authoring, evaluation, and optimization. Create, edit, validate, benchmark, and improve skills following the agentskills.io specification. Use when designing SKILL.md files, structuring skill folders (references, scripts, assets), ingesting external documentation into skills, running trigger evals, benchmarking skill quality, optimizing descriptions, or performing blind A/B comparisons. Keywords: agentskills.io, SKILL.md, skill authoring, eval, benchmark, trigger optimization.