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 pivoshenko/pivoshenko.ai --skill spec-dispatchgit clone --depth 1 https://github.com/pivoshenko/pivoshenko.aiWrote 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/pivoshenko/pivoshenko.ai/spec-dispatch)<a href="https://agentmods.dev/skills/pivoshenko/pivoshenko.ai/spec-dispatch"><img src="https://agentmods.dev/badge/skills/pivoshenko/pivoshenko.ai/spec-dispatch/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/pivoshenko/pivoshenko.ai/spec-dispatch"><img src="https://agentmods.dev/badge/skills/pivoshenko/pivoshenko.ai/spec-dispatch.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.00136 | $0.01198 |
| Opus 5 | $0.00068 | $0.00599 |
| Sonnet 5 | $0.00027 | $0.00240 |
| Haiku 4.5 | $0.00014 | $0.00120 |
Grade A, and why
spec-dispatch 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 — 91 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Spec Dispatch
openspec queue -> wave plan -> agents -> verify -> tick -> commit.
openspec-apply-change walks tasks one at a time in one context. This replaces that loop only. Planning artifacts (proposal / specs / design / tasks) stay sequential and stay with you — never fan those out; they need whole-repo context and each depends on the last.
Everything here is substrate-independent. Inside Herdr (HERDR_ENV=1) subagents are panes per the Herdr instruction, and the mechanics — budget, split, start, brief, collect, blocked, cleanup — belong to herdr-dispatch. Outside it, dispatch the same waves with the Agent tool. Either way this skill owns only what is OpenSpec-specific.
Preconditions
test "${HERDR_ENV:-}" = 1 # decides the substrate only, never whether to proceed
openspec status --change "<name>" --json
Read applyRequires and isPlanningComplete. Tasks artifact missing -> send the user to /opsx:propose or /opsx:continue. Never author planning artifacts here.
Store-based work -> pass --store <id> on every openspec command and keep it sticky.
Read the Queue
openspec instructions apply --change "<name>" --json
Returns progress {total, complete, remaining} and tasks[] of {id, description, done}.
The list is flat. No dependency edges, no file ownership — the ## 1. Backend / ## 2. Frontend grouping in tasks.md is flattened away. This JSON alone cannot tell you what is safe to run concurrently, and two agents on one file silently clobber each other.
Make It Parallel-Safe at Authoring Time
Do not infer disjointness at dispatch. Force it when tasks are written, in the change root's openspec/config.yaml:
rules:
tasks:
- "Every task MUST declare `files:` listing the paths it will touch."
- "Every task MUST declare `needs:` listing task ids it depends on (empty if none)."
These surface under rules in openspec instructions tasks --json, so the agent writing the tasks artifact is bound by them.
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 · 91 lines · 136 tokens per session scan A 008ef00fb338
spec-dispatch is a skill published in the GitHub repository pivoshenko/pivoshenko.ai (4 stars, last pushed 2d ago), licensed MIT. It adds 136 tokens to every session and 1,198 once invoked, about $0.0007 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-11.
Other skills, from other repositories
ac-commit-manager
Manage git commits for autonomous coding. Use when committing feature implementations, creating descriptive commits, managing git workflow, or handling version control.
agent-commit
Analyze changes and create a meaningful commit with agent authorship. Internal skill for evolveloop.
loom-git-workflow
Git operations guidance including branching strategies, commit conventions, merge workflows, conflict resolution, and worktree management.
conventional-commit
Generer conventional commit-meldinger med Nav-relevante scopes og breaking change-format.
git-commit
Safely create a git commit by validating repository state, staging intended changes, scanning for secrets/conflicts, generating a Conventional Commits message (repository convention first, else an English Angular default) from the staged diff, and committing without amend.
configure-git-repository
Configure a Git repository with proper .gitignore, branch strategy, commit conventions, hooks, and remote setup. Covers initial setup and common patterns for R, Node.js, and Python projects. Use when initializing version control for a new project, adding a .gitignore for a specific language or framework, setting up…