Getting it into your agent
This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.
/plugin marketplace add dork-labs/dorkos/plugin install flowWrote 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/commands/dork-labs/dorkos/reconcile)<a href="https://agentmods.dev/commands/dork-labs/dorkos/reconcile"><img src="https://agentmods.dev/badge/commands/dork-labs/dorkos/reconcile.svg" alt="Measured on agentmods" 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.00010 | $0.02867 |
| Opus 5 | $0.00005 | $0.01434 |
| Sonnet 5 | $0.00002 | $0.00573 |
| Haiku 4.5 | $0.00001 | $0.00287 |
Grade A, and why
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 6d 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 — 381 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Documentation Reconciliation
Check if developer guides are in sync with the codebase by analyzing recent commits against guide coverage areas.
Arguments
Parse $ARGUMENTS to determine the mode:
| Argument | Mode | Description |
|---|---|---|
<guide-name> |
Single guide | Check one specific guide (e.g., data-fetching.md) |
--commit <sha> |
Commit review | Analyze a specific commit for documentation impact |
--since <timeframe> |
Time range | Check commits within a timeframe (e.g., 1 week, 3 days, 2024-12-01) |
--all |
Full reconciliation | Check all guides against their last-reviewed dates |
| (no args) | Smart mode | Check guides touched by uncommitted changes + commits since last session |
Examples:
/docs:reconcile data-fetching.md # Check specific guide
/docs:reconcile --commit abc123 # Analyze one commit
/docs:reconcile --since "1 week" # Last week's commits
/docs:reconcile --since "2024-12-15" # Since specific date
/docs:reconcile --all # Full reconciliation
/docs:reconcile # Smart mode (recommended)
Order of Operations
Phase 1: Parse Arguments and Determine Mode
MODE="smart" # Default
TARGET=""
if [ -z "$ARGUMENTS" ]; then
MODE="smart"
elif [[ "$ARGUMENTS" == "--all" ]]; then
MODE="all"
elif [[ "$ARGUMENTS" == --commit* ]]; then
MODE="commit"
TARGET=$(echo "$ARGUMENTS" | sed 's/--commit //')
elif [[ "$ARGUMENTS" == --since* ]]; then
MODE="since"
TARGET=$(echo "$ARGUMENTS" | sed 's/--since //')
elif [[ "$ARGUMENTS" =~ \.md$ ]]; then
MODE="guide"
TARGET="$ARGUMENTS"
else
# Assume it's a guide name without .md
MODE="guide"
TARGET="$ARGUMENTS.md"
fi
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.
- 6d ago First seen · 381 lines · 10 tokens per session scan A 87b3a4c73c12
reconcile is a command published in the GitHub repository dork-labs/dorkos (9 stars, last pushed today), licensed MIT. It adds 10 tokens to every session and 2,867 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-31.
Other commands, from other repositories
modernize-brief
Generate a phased Modernization Brief — the approved plan that transformation agents will execute against.
modernize-transform
Transform one legacy module to the target stack — idiomatic rewrite with behavior-equivalence tests.
review-pr
Comprehensive PR review using specialized agents.
asana-setup
Set up the Asana V2 MCP server connection (one-time OAuth app + claude mcp add).
clean_gone
Cleans up all git branches marked as [gone] (branches that have been deleted on the remote but still exist locally), including removing associated worktrees.
revise-claude-md
Update CLAUDE.md with learnings from this session.