From agent-team
Recommended /loop patterns for the agents shipped in this repo (explorer, implementer, reviewer, qa, skill-author). Activates when the user asks about /loop, polling, watch-mode, periodic tasks, or autonomous iteration.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agent-team:loop-patternsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
The `/loop` command runs a prompt or slash command on a recurring interval, or self-paces via ScheduleWakeup when no interval is given. These patterns match the responsibilities of the five agents in `.claude/agents/`.
The /loop command runs a prompt or slash command on a recurring interval, or self-paces via ScheduleWakeup when no interval is given. These patterns match the responsibilities of the five agents in .claude/agents/.
Best when the codebase shifts rapidly (active development, frequent merges).
/loop 15m Explore changes since the last crawl and append new findings to .context/explorer-notes.md
Cadence: 10–30 minutes. Good for: pre-implementation recon during long discussions.
When implementing a long feature across many edits. Omit the interval so ScheduleWakeup picks delays based on build duration.
/loop Continue building the current feature spec; after each iteration, run the project's build and paste any new errors into the next prompt.
Cadence: self-paced. Good for: large spec phases, CI-heavy projects.
/loop 20m Review all files modified since the last review pass and flag any that violate `.claude/rules/coding-standards.md`.
Cadence: 15–30 minutes. Good for: keeping a running review in parallel with implementer.
/loop 5m Run the project's test command; if any fail, message the implementer with the full failure output.
Cadence: 5–15 minutes. Good for: active red-green TDD sessions.
Uncommon; used during long skill authoring when the baseline test suite is slow.
/loop Re-run the skill baseline test after each edit to .claude/skills/<name>/SKILL.md.
Cadence: self-paced. Good for: multi-file skill authoring.
/loop on one-shot tasks — starts a recurring process that outlives the taskdelaySeconds to [60, 3600]Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub mike-diff/ai-coding-configs --plugin agent-team