Help us improve
Share bugs, ideas, or general feedback.
From build-loop
Use when listening for Rally Point changes, wiring coordination watchers, debugging watch-loop behavior, or changing the future agent-rally-watcher spin-out surface.
npx claudepluginhub tyroneross/build-loop --plugin build-loopHow this skill is triggered — by the user, by Claude, or both
Slash command
/build-loop:agent-rally-watcherThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
<!-- SPDX-FileCopyrightText: 2025-2026 Tyrone Ross, Jr <46267523+tyroneross@users.noreply.github.com> | SPDX-License-Identifier: Apache-2.0 -->
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Provides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Share bugs, ideas, or general feedback.
Build-loop ships a native embedded agent-rally-watcher capability while the
standalone watcher repo matures. Treat it as a mini-plugin inside build-loop:
watcher behavior lives in one namespace, and build-loop keeps compatibility
entrypoints thin.
| Purpose | Path |
|---|---|
| Watcher package | ${CLAUDE_PLUGIN_ROOT}/scripts/agent_rally_watcher/ |
| Compatibility CLI | ${CLAUDE_PLUGIN_ROOT}/scripts/coordination_watch.py |
| Status dependency | ${CLAUDE_PLUGIN_ROOT}/scripts/coordination_status.py |
| Manual command | ${CLAUDE_PLUGIN_ROOT}/commands/agent-rally-point.md watch subcommand |
| Boundary manifest | ${CLAUDE_PLUGIN_ROOT}/scripts/rally_point/plugin_boundary.json |
scripts/agent_rally_watcher/.scripts/coordination_watch.py as a compatibility wrapper.python3 ${CLAUDE_PLUGIN_ROOT}/scripts/coordination_watch.py \
--workdir "$PWD" \
--session-id "$SESSION_ID" \
--tool "$TOOL_ID" \
--interval 5 \
--jsonl \
--baseline-current
For one-shot validation:
python3 ${CLAUDE_PLUGIN_ROOT}/scripts/coordination_watch.py \
--workdir "$PWD" \
--session-id watcher-smoke \
--tool codex \
--iterations 1 \
--jsonl
uv run pytest scripts/test_coordination_status.py scripts/rally_point/test_session_probe.py
python3 scripts/coordination_watch.py --workdir "$PWD" --session-id watcher-smoke --tool codex --iterations 1 --jsonl
python3 scripts/agent_rally.py boundary --repo "$PWD" --check --json
When extracting to the standalone watcher plugin, copy
scripts/agent_rally_watcher/, this skill, watcher tests, and the
compatibility contract named in plugin_boundary.json. Build-loop should then
keep coordination_watch.py as a thin adapter to the standalone package.