agentsclimarketplace

Loop

Skill thepictishbeast/claude-tools/skills/loop

Pause, resume, edit, and audit Claude Code cron jobs (e.g. /loop) without losing state.

Install
npx -y skills add thepictishbeast/claude-tools --skill loop

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Manage active Claude Code /loop cron jobs — pause, resume, stop/cancel, edit (interval/prompt), track an untracked cron into history, or update the claude-tools install. Use whenever the user wants to pause / resume / stop / cancel / kill / change / reschedule a loop, register an existing cron, or upgrade loop tooling. Pass the verb as the first argument (e.g. "pause", "resume 5m", "stop", "edit", "track <id>", "update").

SKILL.md

2.8 KB, 679 tokens by cl100k_base, as published. Nobody here has run it

/loop — manage Claude Code loop cron jobs (Rust-binary backed)

One skill for the whole loop-management family (consolidated from the former loop-pause / loop-resume / loop-stop / loop-edit / loop-track / loop-update skills, 2026-06-30). Backed by the claude-loop binary (~/.local/bin/claude-loop, built by claude-tools install.sh). The binary owns every shell op (state JSON, history, locking); the agent only makes the Cron* tool calls. Route on the first argument (the verb):

VerbDoesMechanism
pausePause all active loops; save state for resumeCronList → pipe its JSON to claude-loop pauseCronDelete the returned IDs
resume [interval]Restore paused loops (optional new cadence)claude-loop resume [--interval <i>]CronCreate ×N from its JSON-line output
stopPermanently stop a loop (delete cron + clear paused state)CronListCronDelete the entry; clear ~/.claude/.paused-loops.json
editChange interval/prompt without losing the promptCronList (full prompt) → CronDelete <old>CronCreate with the edits
track <id>Register a raw cron into loop historyCronList (verify id) → claude-loop logs a discovered event
updatePull latest claude-tools + reinstall skills/binariesrun ~/projects/claude-tools/update.sh -f; report which commits arrived
(none)Show current loop statedefer to the loops skill (claude-loop list)

Rules

  • Never inline-truncate prompts. CronList truncates prompts at ~80 chars; for edit / track / resume read the full prompt from the binary's state file, not the truncated CronList view.
  • Each verb is a thin path — 2–3 visible tool calls (one Bash to the binary + the Cron* calls). Let the binary do the file work.
  • pause / resume are symmetric (state in ~/.claude/.paused-loops.json). stop is terminal — no state kept.
  • Pipe every loop prompt through claude-loop prep before CronCreate — it injects the canonical SCHEDULED-LOOP self-check preamble (idempotent), so every fire carries it by construction.
  • Crash-safety lives in claude-loop guard / checkpoint / watchdog; see docs/LOOP_PATTERNS.md.

Don't

  • Don't CronDelete + CronCreate from scratch for an edit — that loses the full prompt unless you pulled it first.
  • Don't append a history event if the Cron* call failed.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.