.agents/skills/repeat-with-delay/SKILL.md
Execute repeated shell commands as separate tool calls with a delay between each iteration. Use when a user asks to run something N times, wait between runs, increment a counter each cycle, and see each iteration result before the next run.
npx skillsauth add rebornix/Agmente repeat-with-delayInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Run one command at a time as individual tool calls so each iteration is visible in the transcript.
iterations (default 10)delay-seconds (default 2)start (default 1)command (default echo "$LOOP_COUNTER")LOOP_COUNTER=<value> bash -lc '<command using $LOOP_COUNTER>'
sleep <delay-seconds>
N is done. Do not batch iterations into one shell loop when the user wants per-iteration visibility.For "run 10 times and delay for 2 seconds between each", execute:
LOOP_COUNTER=1 to LOOP_COUNTER=10)sleep 2) between runsFor "echo a number starting at 1 and increment each time":
LOOP_COUNTER=1 bash -lc 'echo "$LOOP_COUNTER"'
LOOP_COUNTER=2 bash -lc 'echo "$LOOP_COUNTER"'
...
scripts/run_repeat_with_delay.sh, but use it only if the user explicitly asks for one single wrapper command.testing
Run Agmente iOS end-to-end tests against a local ACP agent (Gemini, Claude, Qwen, or Vibe), validate core RPC flow, and perform mandatory cleanup.
development
Run Agmente iOS end-to-end tests against a local Codex app-server endpoint, validate Codex thread/turn protocol flow, and perform mandatory cleanup.
development
Dynamically inspect ACP and Codex upstream repos using .agmente.paths, detect protocol/API/spec drift, and produce a risk-scored regression report. Use when checking for new APIs, method changes, or protocol/spec changes after upstream updates.
tools
Run and debug Agmente iOS end-to-end tests against a real local Codex CLI app-server instance. Use when validating Codex websocket/protocol compatibility, connect/initialize/thread flows, or reproducing Codex-only UI test failures with an actual local Codex server.