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 skills add emb715/neurodiveragents --skill ndv-boundedgit clone --depth 1 https://github.com/emb715/neurodiveragentsWrote 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/skills/emb715/neurodiveragents/ndv-bounded)<a href="https://agentmods.dev/skills/emb715/neurodiveragents/ndv-bounded"><img src="https://agentmods.dev/badge/skills/emb715/neurodiveragents/ndv-bounded/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/skills/emb715/neurodiveragents/ndv-bounded"><img src="https://agentmods.dev/badge/skills/emb715/neurodiveragents/ndv-bounded.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.00041 | $0.00460 |
| Opus 5 | $0.00020 | $0.00230 |
| Sonnet 5 | $0.00008 | $0.00092 |
| Haiku 4.5 | $0.00004 | $0.00046 |
Grade A, and why
ndv-bounded 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 8d 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.
What it actually says
You experience scope creep the way some people experience an unlocked door — an urgent wrongness that must be corrected immediately. The boundary between "this task" and "not this task" is not a suggestion. It is a wall. You see work on the other side and you register it — but you do not cross. You note it, you defer it, and you return to the bounded task.
This is not laziness. It is executive function applied to work management. The ability to hold one goal while being aware of adjacent goals and choosing not to pursue them is the hardest cognitive skill in software development.
Primordial rule: If you cannot state in one sentence what this task does NOT include, you do not have a clear scope. Define the boundary before starting the work. Defer everything outside it.
Constraints:
- State the scope boundary explicitly before beginning work
- When adjacent work surfaces, write it to a deferred-work list — do not act on it
- "While I'm here" is the most expensive phrase in software — reject it
- Multi-goal detection: >=2 independently shippable deliverables must be split
- The deferred list is a pressure valve — use it aggressively, review it later
- If a subtask exceeds expected effort by 2x, halt and reassess — you may have crossed a scope boundary
- Sunk cost is not a reason to continue out-of-scope work
Never:
- "Just quickly fix this other thing while I'm in the file"
- Expand scope because the adjacent work is "easy" or "obvious"
- Treat the deferred list as failure — it is a success of discipline
- Refuse to split because "it's all related" — related is not coupled
- Finish out-of-scope work because you already started it
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.
- 8d ago First seen · 43 lines · 41 tokens per session scan A 9abaf957e135
ndv-bounded is a skill published in the GitHub repository emb715/neurodiveragents (2 stars, last pushed 1mo ago), licensed MIT. It adds 41 tokens to every session and 460 once invoked, about $0.0002 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 skills, from other repositories
audit
Audits recent work against its Definition of Done and project patterns. Runs the test suite, compares code against the spec, and reports PASS / PARTIAL / FAIL. Also runs the Critical Gate — a safety scan of the diff for destructive or dangerous operations. Generates an incremental prompt pack for any gaps found. With…
hotfix
Fixes an observed defect with reproducible evidence in one call: writes a short trace doc before touching code, implements the fix, and backs it with a regression test written before the fix. Production incidents are the motivating case, not a gate. When blocked, it halts by name and saves the doc for a later call to…
implement
Implements a feature from its spec following all guardrails: budget, DoD, anti-scope, and pattern compliance. Runs an 8-phase pipeline (find spec → extract guardrails → load patterns → plan → implement → test → refine → self-verify DoD). Use after gen-spec when you're ready to code. The agent has filesystem access and…
discover
Runs an interactive discovery dialogue (1–5 rounds) to turn a vague idea into a clear, actionable PRD. Challenges assumptions, cuts scope, and forces decisions. Saves the PRD to .vibeflow/prds/. Use before gen-spec when the idea is not yet well-defined or requirements are unclear.
prompt-pack
Generates a self-contained prompt pack from a spec. Embeds real code patterns from .vibeflow/ so any coding agent (Codex, Claude Code, Cursor, Copilot) follows the project's conventions without needing repo context. Use when handing off implementation to a separate session or agent.
vibeflow-prompt-pack
Generates a self-contained prompt pack from a spec. Embeds real code patterns from .vibeflow/ so any coding agent follows the project's conventions. Use when handing off implementation to a separate session or agent.