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/kesteva/soloflow/braindumpgit clone --depth 1 https://github.com/kesteva/soloflowWhat 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.00013 | $0.00567 |
| Opus 5 | $0.00006 | $0.00283 |
| Sonnet 5 | $0.00003 | $0.00113 |
| Haiku 4.5 | $0.00001 | $0.00057 |
Grade A, and why
braindump 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 2d 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 — 38 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/soloflow:braindump
Rapid batch-capture tool. Turns a stream of bullet-point ideas into IDEA and TASK files via heuristic classification (no agents — speed is the point), then offers to refine the new IDEAs in parallel.
This command is a preconfigured wrapper for /soloflow:planner. The unified planner is the canonical entry; this wrapper exists for users who want the focused multi-item batch flow without seeing the open prompt.
The user's input is: $ARGUMENTS
Step 1: Dispatch into the unified planner
Read ${CLAUDE_PLUGIN_ROOT}/commands/planner.md with the Read tool and execute its procedure end-to-end with $ARGUMENTS rebound to:
--mode=multi-idea $ARGUMENTS
That is, prepend the literal token --mode=multi-idea followed by a single space, then the original $ARGUMENTS. The planner's Step 0.5 (Mode resolution) detects the token, strips it, and routes directly into Phase 1b (multi-idea heuristic capture). If $ARGUMENTS is empty, Phase 1b runs in its interactive mode (Step 1b.1 sub-mode B) and collects items via repeated AskUserQuestion.
Phase 1b behaves identically to this command's historical surface: parse a bullet list, classify each item as IDEA or TASK via heuristics, present a summary table with reclassify/edit/cancel/approve options, batch-create files, commit, then prompt to refine the new IDEAs (Refine all / Refine some / Not yet). On Refine all or Refine some, the planner falls through to Phase 2 — using the multi-IDEA parallel path when more than one IDEA is to be refined and parallelism.task_refiner_parallel resolves true.
Do NOT re-run any of the planner's earlier steps independently — treat the planner's instructions as a continuation of this run.
Notes
- For a single in-depth idea (clarify + extract + research), use
/soloflow:idea-extractor(also a thin wrapper). - For refining an existing IDEA, use
/soloflow:planner IDEA-NNNdirectly. - The unified
/soloflow:planner(with no args) opens with a mode picker; it's the canonical entry when you're not sure which path you need.
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.
- 2d ago First seen · 38 lines · 13 tokens per session scan A 70d29dd84a1c
braindump is a command published in the GitHub repository kesteva/soloflow (41 stars, last pushed 3mo ago), licensed MIT. It adds 13 tokens to every session and 567 once invoked, about $0.0001 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-30.
Other commands, from other repositories
checklist
Generate a custom checklist for the current feature based on user requirements.
clarify
Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.
specify
Create or update the feature specification from a natural language feature description.
analyze
Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation.
converge
Assess the current codebase against the feature's spec, plan, and tasks, then append any remaining unbuilt work as new tasks to tasks.md so implement can complete it.
implement
Execute the implementation plan by processing and executing all tasks defined in tasks.md.