init

init is a command for Claude Code from synaptiai/synapti-marketplace. It costs 43 tokens per session (1,945 once invoked), scanned B, original, Apache-2.0.

A command that initializes a documentation package by resolving project inputs, creating its configuration, scaffolding 23 canonical files, and seeding control registers.

In plain words
What is it for?
Use it to start a new evidence-based documentation package and record assumptions, evidence, gaps, contradictions, and disclosure rules.
Why use it?
It provides the required structure and tracking records before any documentation prose is written.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: reads .claude/ paths; names the AskUserQuestion tool.

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 to start a new evidence-based documentation package and record assumptions, evidence, gaps, contradictions, and disclosure rules.

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 init

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

Your own site · 80×15
<a href="https://agentmods.dev/commands/synaptiai/synapti-marketplace/init"><img src="https://agentmods.dev/badge/commands/synaptiai/synapti-marketplace/init.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 43 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,945 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. 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.00043 $0.01945
Opus 5 $0.00022 $0.00972
Sonnet 5 $0.00009 $0.00389
Haiku 4.5 $0.00004 $0.00194

Measured 5d ago against content hash 68b54c3f19b4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade B, and why

init scanned grade B with 1 finding 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.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

echo "USER_SETTINGS_EXISTS=$([ -f "$HOME/.claude/settings.dossier.json" ] && echo true || echo false)"
plugins/dossier/commands/init.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.

Initialize Documentation Package: $ARGUMENTS

Create the package skeleton and its configuration. Writes structure and registers — never prose. Drafting is /dossier:baseline.

Required Skills

  • engagement-scoping — resolve and freeze the twelve engagement inputs, the action ceiling, and the delivery mode
  • doc-package-contract — the 23-file structure, headers, and the scaffold contract
  • evidence-ledger — seed the ledger and its executed-checks section
  • gap-and-contradiction-register — seed the assumptions, questions, and contradiction registers
  • disclosure-gating — seed the claim and disclosure register with the resolved policy

References

Phase 0 — Preflight

_RAW="$ARGUMENTS"
echo "### Init 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 "### Plugin"
if [ -x "$__dr/bin/dossier-resolve-config.sh" ]; then
  echo "DOSSIER_ROOT=$__dr"
else
  echo "DOSSIER_STATE=blocked"
  echo "DOSSIER_ERROR=dossier-resolve-config.sh not found — reinstall or upgrade the dossier plugin"
  true; exit 0
fi

echo "### Existing State"
OUTPUT_ROOT=$("$__dr/bin/dossier-resolve-config.sh" --default "docs/dossier" dossier.project.outputRoot 2>/dev/null)
echo "OUTPUT_ROOT=$OUTPUT_ROOT"
echo "SETTINGS_EXISTS=$([ -f .claude/settings.dossier.json ] && echo true || echo false)"
echo "USER_SETTINGS_EXISTS=$([ -f "$HOME/.claude/settings.dossier.json" ] && echo true || echo false)"
echo "PACKAGE_EXISTS=$([ -d "$OUTPUT_ROOT/00-control" ] && echo true || echo false)"
if [ -d "$OUTPUT_ROOT" ]; then
  echo "EXISTING_FILES=$(find "$OUTPUT_ROOT" -name '*.md' -type f 2>/dev/null | wc -l | tr -d ' ')"
else
  echo "EXISTING_FILES=0"
fi

echo "### Repo"
echo "REPO=$(git rev-parse --show-toplevel 2>/dev/null | xargs basename 2>/dev/null || echo unknown)"
echo "COMMIT=$(git rev-parse --short HEAD 2>/dev/null || echo unknown)"
echo "IS_GIT=$([ -d .git ] && echo true || echo false)"
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. 5d ago First seen · 160 lines · 0 tokens per session scan B 68b54c3f19b4

Subscribe to this mod's changes

init is a command published in the GitHub repository synaptiai/synapti-marketplace (6 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 43 tokens to every session and 1,945 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). 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-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-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-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