reconcile

reconcile is a command for Claude Code from synaptiai/synapti-marketplace. It costs 0 tokens per session (1,976 once invoked), scanned A, original, Apache-2.0.

A command that combines three independent review tables into one reviewed record, then applies supported fixes and routes unresolved issues to decision registers.

In plain words
What is it for?
Use it after separate audits to reconcile findings, repair evidence-backed problems, and start another audit when an important claim changes.
Why use it?
It reduces duplicate findings and keeps disagreements, unsupported changes, and owner decisions visible.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the dossier plugin — 10 skills, 9 commands, 6 agents, 2 hooks shipped together

Good fit Use it after separate audits to reconcile findings, repair evidence-backed problems, and start another audit when an important claim changes.

Compare 6 commands from other repositories ↓
Install

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.

Claude Code
/plugin marketplace add synaptiai/synapti-marketplace
Claude Code
/plugin install dossier

Made for: Claude Code.

Or install dossier, the plugin that ships this one along with the rest of its 10 skills, 9 commands, 6 agents, 2 hooks.

Wrote 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.

agentmods badge for reconcile

README.md
[![agentmods](https://agentmods.dev/badge/commands/synaptiai/synapti-marketplace/reconcile/github.svg)](https://agentmods.dev/commands/synaptiai/synapti-marketplace/reconcile)
Your own site
<a href="https://agentmods.dev/commands/synaptiai/synapti-marketplace/reconcile"><img src="https://agentmods.dev/badge/commands/synaptiai/synapti-marketplace/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.

agentmods 80×15 button for reconcile

Your own site · 80×15
<a href="https://agentmods.dev/commands/synaptiai/synapti-marketplace/reconcile"><img src="https://agentmods.dev/badge/commands/synaptiai/synapti-marketplace/reconcile.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,976 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.01976
Opus 5 $0.00000 $0.00988
Sonnet 5 $0.00000 $0.00395
Haiku 4.5 $0.00000 $0.00198

Measured 7d ago against content hash 1473f5288701, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

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 7d 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.

plugins/dossier/commands/reconcile.md · 160 lines

How it starts

The opening of the file, as written. The whole thing — 160 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Reconcile Findings: $ARGUMENTS

Turns three independent findings tables into one adjudicated ledger, then repairs what evidence supports repairing.

Required Skills

  • finding-reconciliation — normalize, dedupe, corroborate, publish before repair, split repairable from owner-decision
  • gap-and-contradiction-register — route unresolvable findings and cross-pass disagreements to AQ-/CT-
  • evidence-ledger — every correction is itself evidence-backed
  • doc-package-contract — corrections respect the document contracts and the last-verified rule
  • disclosure-gating — corrections touching public documents re-enter through the register

References

Phase 0 — Locate the round

_RAW="$ARGUMENTS"
echo "### Reconcile Arguments"
echo "ARGS=$_RAW"

__dr="${CLAUDE_PLUGIN_ROOT:-}"
[ -x "$__dr/bin/dossier-resolve-config.sh" ] || __dr=$({ echo plugins/dossier; ls -d "$HOME"/.claude/plugins/cache/synapti-marketplace/dossier/*/ 2>/dev/null | sort -Vr; echo "$HOME/.claude/plugins/marketplaces/synapti-marketplace/plugins/dossier"; } | while read -r __p; do [ -x "${__p%/}/bin/dossier-resolve-config.sh" ] && { echo "${__p%/}"; break; }; done)

echo "### Preflight"
if [ ! -x "$__dr/bin/dossier-resolve-config.sh" ]; then
  echo "RECONCILE_STATE=blocked"
  echo "RECONCILE_ERROR=dossier plugin scripts not found — reinstall or upgrade the plugin"
  true; exit 0
fi

OUTPUT_ROOT=$("$__dr/bin/dossier-resolve-config.sh" --default "docs/dossier" dossier.project.outputRoot 2>/dev/null)
echo "OUTPUT_ROOT=$OUTPUT_ROOT"
echo "MAX_ROUNDS=$("$__dr/bin/dossier-resolve-config.sh" --default 3 dossier.verification.maxRounds 2>/dev/null)"

echo "### Available rounds"
LATEST=$(ls -1d .dossier/runs/*/ 2>/dev/null | sort | tail -1)
echo "LATEST_RUN=${LATEST:-none}"
if [ -n "$LATEST" ]; then
  for p in A B C; do
    f="${LATEST}pass-$p.md"
    if [ -f "$f" ]; then
      echo "PASS_${p}=present findings=$(grep -c '^| \*\*' "$f" 2>/dev/null || echo 0)"
    else
      echo "PASS_${p}=absent"
    fi
  done
fi
true

Read the full file on GitHub · 160 lines

Changes

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.

  1. 7d ago First seen · 160 lines · 0 tokens per session scan A 1473f5288701

Subscribe to this mod's changes

reconcile is a command published in the GitHub repository synaptiai/synapti-marketplace (6 stars, last pushed today), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 1,976 tokens. 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-03.

Related

Other commands, from other repositories

paper-trail-ingest-all

Batch INGEST across the entire vault. Scans all SOTAs, identifies those with bibliographic sections containing free-text citations, then runs /paper-trail:ingest on each one sequentially. Reports per-SOTA summary at the end. The single batch entry point to make a legacy vault fully conform to the paper-trail pipeline.

roomi-fields/paper-trail · 69 tokens

paper-trail-inject-url

Injecte une URL OA connue (HAL, dépôt uni, NIME, page perso) pour une ref dont la cascade automatique a échoué, puis relance l'acquisition + validation page 1.

roomi-fields/paper-trail · 41 tokens

paper-trail-acquire

Troisième passe du pipeline cible refondu. Lance la cascade PDF (10 sources : Crossref OA + arXiv + OpenAlex + Unpaywall + HAL + CORE + éditeur par DOI + archive.org + WebSearch ; jusqu'à 17 avec les voies par navigateur et les sources étendues opt-in) ciblée sur les refs d'un SOTA donné. Différent de pipeline run qui…

roomi-fields/paper-trail · 114 tokens

paper-trail-cascade

Acquire PDFs via the 8-source cascade (11 with opt-in extended sources) for a single ref by slug, or a batch filtered by state. Validates page 1 anti-homonymy on each download.

roomi-fields/paper-trail · 44 tokens

create-worktree

Follow these steps to create a git worktree.

CaptainMe-AI/lead-dev-os · 0 tokens

paper-trail-ingest

Ingest the citations of one SOTA into the registry. Extracts bibliographic sections, parses citations via the citation-parser sub-agent, resolves DOI via Crossref/S2, deduplicates against the registry, creates new candidate refs, and substitutes free-text citations with [[wikilinks]]. Required first step to make a…

roomi-fields/paper-trail · 75 tokens