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 dwarvesf/dwarves-kit --skill backlog-reconcilegit clone --depth 1 https://github.com/dwarvesf/dwarves-kitWrote 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/dwarvesf/dwarves-kit/backlog-reconcile)<a href="https://agentmods.dev/skills/dwarvesf/dwarves-kit/backlog-reconcile"><img src="https://agentmods.dev/badge/skills/dwarvesf/dwarves-kit/backlog-reconcile/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/dwarvesf/dwarves-kit/backlog-reconcile"><img src="https://agentmods.dev/badge/skills/dwarvesf/dwarves-kit/backlog-reconcile.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.00155 | $0.02693 |
| Opus 5 | $0.00077 | $0.01347 |
| Sonnet 5 | $0.00031 | $0.00539 |
| Haiku 4.5 | $0.00015 | $0.00269 |
Grade A, and why
backlog-reconcile 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 5d 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 — 147 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Backlog reconcile
Overview
Audit a repo's git-tracked _meta/BACKLOG.md Active queue against reality and ship the fixes
as a PR. This is the backlog-reconcile instance of docs/patterns/audit-loop.md (the pattern
doc's own "Backlog reconcile" SDLC-instances row): every adopter repo gets this schema via
/kit:adopt (SPEC-005), so this instance is general-purpose, not maintainer-only like
topology-drift.
The four slots (per the audit-loop pattern)
| Slot | This instance |
|---|---|
| Item set | every row of the target repo's _meta/BACKLOG.md Active queue, enumerated via lib/board/backlog.sh board (id/title/status) plus a raw read of the file for each row's Target artifact cell |
| Contract | a row's Status matches reality: (a) a shipped row not exempted by a _meta/megagoals/ target artifact must have already dropped off the queue; (b) a Target artifact naming SPEC-NNN must point at a real file whose own Status: header agrees with the board's Status; (c) a (tiny, no spec) row's executing/shipped claim must have a git-log match |
| Evidence class | Tier 1: mechanical, batched (file existence, grep -m1 header extraction, one batched git log --grep -F pass). Tier 2: agents/audit-scanner.md, dispatched only on the Tier-1 delta, chunked ~25-30 rows per call, fed any gh evidence this skill gathers itself |
| Apply mechanics | the ONLY mutation is bash lib/board/backlog.sh set <ID> <state> [note] (mechanical, preserves annotation prose); best-effort per row; PR-gated |
Process
-
Refusal guard. REFUSE if the target repo has no
lib/board/backlog.shor no_meta/BACKLOG.md(unadopted repo, nothing to reconcile); name what's missing and stop.test -x lib/board/backlog.sh || { echo "REFUSE: no lib/board/backlog.sh, repo not adopted"; exit 1; } test -f _meta/BACKLOG.md || { echo "REFUSE: no _meta/BACKLOG.md"; exit 1; } -
Branch in a worktree first (native worktree tool). All edits and the mutation ride this branch; touching
_meta/BACKLOG.mdon the current branch is the failure this skill exists to prevent, per every audit-loop precedent (memory-tidy, topology-drift).
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.
- 5d ago First seen · 147 lines · 155 tokens per session scan A 766f45570001
backlog-reconcile is a skill published in the GitHub repository dwarvesf/dwarves-kit (11 stars, last pushed today), licensed MIT. It adds 155 tokens to every session and 2,693 once invoked, about $0.0008 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-04.
Other skills, from other repositories
issue-creation
Trigger: issue creation, bug reports, feature requests, or issue approval. Create and triage GitHub issues from repository evidence.
sdd-tasks
Break an SDD change into implementation tasks. Trigger: orchestrator launches task planning for a change.
systemic-issue-triage
Trigger: new issue, bug report, triage, backlog, issue flood, community report, root cause, dead-end, blocked user. Attack issues by root class, never one-by-one; fixes must shrink the system, not grow it.
spec-kitty-runtime-review
Review runtime-owned outputs using the Spec Kitty review workflow surface, then direct approval or rejection with structured feedback. Triggers: "review this work package", "check runtime output", "approve this step", "review WP", "is this WP ready to approve", "check this implementation". Does NOT handle: setup-only…
project-specification
Transforms project briefs into testable specifications with user stories and acceptance criteria. Use after brainstorming, before planning.
task-generation
Reference material with the canonical task-format grammar and decomposition rules for plan-to-tasks expansion. Loaded on demand by generate-tasks; not directly invokable.