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/daphnee-ovo/dev-flow/issuegit clone --depth 1 https://github.com/daphnee-ovo/dev-flowWhat 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.00004 | $0.00731 |
| Opus 5 | $0.00002 | $0.00365 |
| Sonnet 5 | $0.00001 | $0.00146 |
| Haiku 4.5 | $0.00000 | $0.00073 |
Grade A, and why
issue 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 — 92 lines — stays where its author put it; the contents beside it link to each section on GitHub.
ISSUE — Manual Issue Creation
Mode Detection
DOC_ROOT obtained via dow status --field doc_root.
Execution Steps
1. Collect Information
Ask user (can get from parameters):
- Issue title
- Severity (P0/P1/P2)
- Location found (file_path:line_number)
- Description
2. Determine File
Check if today's other source issue file already exists:
dow issue list | grep 'other'
- If exists and file has reasonable issue count (<10) → append to existing file
- Otherwise → create new file
3. Create Issue
dow issue create --title "..." --severity P1 --location "file:line" --desc "..." --source other \
--file '{"modify":["src/bug.rs"]}'
Also supports stdin JSON. The input can be one object or an array; an array is created as one batch and receives IDs in input order:
echo '{"title":"bug","severity":"P0","location":"main.rs:10","desc":"crash on startup","reproduce":"run command","source":"other","files":{"modify":["main.rs"]}}' | dow issue create
echo '[{"title":"bug 1","severity":"P1","location":"a.rs:1","desc":"...","reproduce":"...","source":"other","files":{"modify":["a.rs"]}},{"title":"bug 2","severity":"P1","location":"b.rs:2","desc":"...","reproduce":"...","source":"other","files":{"create":["b.rs"]}}]' | dow issue create
The required fields are title, severity, location, desc, reproduce,
source, and files. Within files, create and modify are individually
optional, but at least one must contain a non-empty path:
dow issue create --file '{"modify":["src/a.rs","src/b.rs"],"create":["tests/a.rs"]}'
Use dow issue schema for the authoritative field definition. files_test,
flat files_modify/files_create, and --files-* flags are not accepted.
4. Write Format
Execute dow issue schema to get structured format definition.
5. Prompt Next Step
[dev-flow] Issue created: .dev-doc/issue/<filename>
To repair open issues, explicitly invoke /fix when ready.
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 · 92 lines · 4 tokens per session scan A 2adf7f2ddf62
issue is a command published in the GitHub repository daphnee-ovo/dev-flow (2 stars, last pushed 16d ago), licensed MIT. It adds 4 tokens to every session and 731 once invoked, about $0.0000 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
ox-session-review
Command "ox-session-review" from sageox/agentx, covering phase 1 — scan & score (read-only), quality signals, removal candidates, missing/poor summary and poor title.
sc-detail
Throughline の退避済みターン(L2 本文 + L3 ツール入出力)を時刻で復元する.
motion
Runtime entry point for configuring global motion tokens, scroll-reveals, and micro-delight interactions in motion.js and interactions.js.
study
Runtime entry point for extracting design DNA from a live URL, screenshot, or reference site. Part of the Discovery lifecycle phase.
perf
Runtime entry point for checking asset performance budgets, script preconnects, and load optimization. Part of the Quality & Audit lifecycle phase.
tokens
Establish the single source of truth every other command reads from. This is the one command every later command depends on — re-running it (a rebrand, a palette fix) is how a change propagates to every page at once.