Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add commands/bacsystem/parallel-plan-executor/flowgit clone --depth 1 https://github.com/bacsystem/parallel-plan-executorWhat 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 | $0.00059 | $0.02053 |
| Opus 5 | $0.00030 | $0.01026 |
| Sonnet 5 | $0.00012 | $0.00411 |
| Haiku 4.5 | $0.00006 | $0.00205 |
Grade A, and why
flow 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 yesterday.
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 — 160 lines — stays where its author put it; the contents beside it link to each section on GitHub.
What this command does
Takes an idea from zero to a running parallel execution: design spec → implementation plan → parallel-plan-executor Workflow, with the user's approval gates at every stage. Invoking /cys:flow IS the choice of parallel execution — never offer sequential alternatives.
REPO = ${CLAUDE_PLUGIN_ROOT}
Steps
-
Parse
$ARGUMENTS: the first whitespace-separated token isrepo-path(absolute path of the target repo); everything after it is theidea, free-form. Ask for whichever is missing — never guess. -
Sanity-check before designing anything:
repo-pathexists and is a git repo with a clean working tree (git -C <repo-path> status). If dirty, tell the user and stop — the design/plan stages create commits of their own.- If the repo has no
developbranch, ask the user which branch the eventual PR should target before continuing.
-
Check for leftover state from an interrupted run: check whether
<repo-path>/.cys/state.jsonexists. If it does not, continue normally. If it does, read it and tell the user itsplanPathand a one-line summary of each task's status, then ask how to proceed — never decide on your own:- Handle that first: stop here; tell them to use
/cys:run-planpointed at thatplanPathto resume it before starting a new idea. - Ignore it and continue: proceed with this new idea. Mention the leftover file will be overwritten once this run's first task settles.
- Delete it and continue: delete
<repo-path>/.cys/state.json, then proceed.
- Handle that first: stop here; tell them to use
-
Design: invoke the
cys:designskill, working againstrepo-path(explore ITS files, write the spec under ITSdocs/cys/specs/), not against the session's cwd. The user approving the written spec is the gate — if they don't approve, stop; nothing launches.
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.
- yesterday First seen · 160 lines · 0 tokens per session scan A b24ae50c953a
flow is a command published in the GitHub repository bacsystem/parallel-plan-executor (2 stars, last pushed 1mo ago), licensed MIT. It adds 59 tokens to every session and 2,053 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-08-31.
Other commands, from other repositories
pr-address
Address PR review comments on current branch.
plan-save
Save the current session's plan to GitHub as an issue.
enforce_standards
CRITICAL: Before running the code standards enforcer, we must prepare the stack properly and abort if there are merge conflicts.
OPSX: Sync
Sync delta specs from a change to main specs.
context
项目上下文管理:初始化 .context 目录、记录决策日志、压缩归档、查看历史.
OPSX: Verify
Verify implementation matches change artifacts before archiving.