claim

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

A command that checks whether one statement is supported and approved for public use, then gives the exact wording or explains what is missing.

In plain words
What is it for?
Use it to review customer-facing statements, marketing copy, or documentation claims against their evidence and disclosure rules.
Why use it?
It prevents unsupported or unapproved claims from being published and makes required qualifications clear.

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 to review customer-facing statements, marketing copy, or documentation claims against their evidence 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 claim

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

Your own site · 80×15
<a href="https://agentmods.dev/commands/synaptiai/synapti-marketplace/claim"><img src="https://agentmods.dev/badge/commands/synaptiai/synapti-marketplace/claim.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 44 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,779 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.00044 $0.01779
Opus 5 $0.00022 $0.00890
Sonnet 5 $0.00009 $0.00356
Haiku 4.5 $0.00004 $0.00178

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

Security

Grade A, and why

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

plugins/dossier/commands/claim.md · 132 lines

How it starts

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

Adjudicate Claim: $ARGUMENTS

One question: can this sentence be said externally, and if so, in exactly what words?

Required Skills

  • disclosure-gating — the claim register, the approval boundary, and the derivation rules
  • evidence-ledger — trace the claim to its rows and read the claim state

References

Phase 0 — Resolve

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

__dr="${CLAUDE_PLUGIN_ROOT:-}"
[ -x "$__dr/bin/dossier-claim-scan.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-claim-scan.sh" ] && { echo "${__p%/}"; break; }; done)

echo "### Preflight"
if [ ! -x "$__dr/bin/dossier-claim-scan.sh" ]; then
  echo "CLAIM_STATE=blocked"
  echo "CLAIM_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 "DISCLOSURE_POLICY=$("$__dr/bin/dossier-resolve-config.sh" --default internal-only dossier.disclosure.policy 2>/dev/null)"
echo "APPROVAL_REQUIRED=$("$__dr/bin/dossier-resolve-config.sh" --default required dossier.disclosure.publicClaimApproval 2>/dev/null)"
echo "REGISTER_EXISTS=$([ -f "$OUTPUT_ROOT/00-control/claim-and-disclosure-register.md" ] && echo true || echo false)"
echo "LEDGER_EXISTS=$([ -f "$OUTPUT_ROOT/00-control/evidence-ledger.md" ] && echo true || echo false)"
true

A file path adjudicates every declarative sentence in the file. Bare text adjudicates that one sentence.

--audience partner|customer selects which destination the claim is judged against, because the same sentence can be approved for one and not the other. A partner guide may carry interface detail, rate limits, and sandbox mechanics that a customer guide may not; a customer guide is held to a plainer standard on capability and trust language. Absent the flag, judge against the stricter of the two and say which standard was applied.

Read the full file on GitHub · 132 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 · 132 lines · 44 tokens per session scan A b9284344ea06

Subscribe to this mod's changes

claim is a command published in the GitHub repository synaptiai/synapti-marketplace (6 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 44 tokens to every session and 1,779 once invoked, about $0.0002 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-03.