Getting it into your agent
This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.
/plugin marketplace add synaptiai/synapti-marketplace/plugin install flowWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/commands/synaptiai/synapti-marketplace/watch)<a href="https://agentmods.dev/commands/synaptiai/synapti-marketplace/watch"><img src="https://agentmods.dev/badge/commands/synaptiai/synapti-marketplace/watch/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/commands/synaptiai/synapti-marketplace/watch"><img src="https://agentmods.dev/badge/commands/synaptiai/synapti-marketplace/watch.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00060 | $0.01561 |
| Opus 5 | $0.00030 | $0.00781 |
| Sonnet 5 | $0.00012 | $0.00312 |
| Haiku 4.5 | $0.00006 | $0.00156 |
Grade A, and why
watch scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 133 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/flow:watch — generate watch-mode trigger + loop prompt
Watch mode is flow's project-local replacement for "long-running monitoring of CI / PR / issue state." Plugins cannot invoke /loop directly, so this command does two things:
- Creates a FlowTrigger YAML at
.flow/triggers/<id>.trigger.yamlfrom a plugin-shipped template - Generates a loop-prompt file at
.claude/flow-loop-<id>.mdthat the user invokes with/loop @.claude/flow-loop-<id>.md
The user manually starts the loop. Flow does NOT invoke /loop from plugin code.
Required Skills
trigger-policy— validates the generated trigger conforms to safety policy.
Pre-flight
ENABLED=$("$(__fr="${CLAUDE_PLUGIN_ROOT:-}";[ -x "$__fr/bin/cascade-resolve.sh" ]||__fr=$({ echo plugins/flow;ls -d "$HOME"/.claude/plugins/cache/synapti-marketplace/flow/*/ 2>/dev/null|sort -Vr;echo "$HOME/.claude/plugins/marketplaces/synapti-marketplace/plugins/flow"; }|while read -r __p;do [ -x "${__p%/}/bin/cascade-resolve.sh" ]&&{ echo "${__p%/}";break;};done);echo "$__fr")/bin/cascade-resolve.sh" \
--default "false" '.flow.triggers.enabled')
if [ "$ENABLED" != "true" ]; then
echo "flow.triggers.enabled is false — /flow:watch is opt-in."
exit 0
fi
mkdir -p .flow/triggers .claude
Subcommands
/flow:watch pr <N>
Create a PR-watch trigger that monitors PR #N's CI + review state.
- Read template
plugins/flow/triggers/templates/pr-watch.trigger.yaml. - Substitute
${PR}→ N,${REPO}→ fromgh repo view,${BRANCH}→ from PR metadata,${NOW}→ current ISO timestamp. - Write to
.flow/triggers/pr-<N>-watch.trigger.yaml. - Invoke
Skill(trigger-policy)invalidatemode. Abort on violation. - Generate
.claude/flow-loop-pr-<N>.mdwith the watch-mode prompt. - Print the manual invocation instructions.
/flow:watch ci
Create a CI-failure trigger that fires on CI status changes for the current branch.
/flow:watch issue <N>
Create an issue-watch trigger that monitors issue #N for status changes.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 5d ago First seen · 133 lines · 60 tokens per session scan A 3f30f986e5d2
watch is a command published in the GitHub repository synaptiai/synapti-marketplace (6 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 60 tokens to every session and 1,561 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other commands, from other repositories
create-worktree
Follow these steps to create a git worktree.
composite-actions
Generate, review, secure, and test composite GitHub Actions following best practices — full repo scaffold, interview-driven generation, PR creation on existing repos, SHA pinning, secrets-as-inputs, job summaries, and actionlint validation.
sm-sail
Command "sm-sail" from ScienceIsNeato/slop-mop, covering /sm-sail — drive a pr to green, autonomously, the loop, when sail parks on review threads, when to stop before "pr ready" — only two reasons and expect convergence, not one pass.
ship
Complete PR workflow from commit to production with validation.
sdlc-ship
Phase 4 — Ship. Runs devops-engineer for CI/CD, cloud deploy, and release. Reads verify-handoff.md for clean context.
nyann:wait-for-pr-checks
Poll a GitHub PR's checks until they all pass, any one fails, or a timeout is hit. Returns a structured outcome the caller can gate on.