repetition-truth-judge

repetition-truth-judge is an agent for Claude Code from gonzalezpazmonica/pm-workspace. It costs 25 tokens per session (905 once invoked), scanned A, a copy of repetition-truth-judge, MIT.

A judge that checks whether important claims in a recommendation were verified instead of becoming accepted merely because they were repeated. It tracks where each claim came from and whether evidence supports it.

In plain words
What is it for?
Use it to review recommendations for unverified material claims. It labels claims by their source and checks whether tools or other evidence confirmed them.
Why use it?
Repeated statements can feel true even without proof, which can lead to decisions based on unchecked user claims.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter; mentions OpenCode.

Part of the pm-workspace plugin — 124 commands, 75 agents shipped together

Good fit Use it to review recommendations for unverified material claims. It labels claims by their source and checks whether tools or other evidence confirmed them.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/gonzalezpazmonica/pm-workspace/repetition-truth-judge
Install

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.

Clone the repo
git clone --depth 1 https://github.com/gonzalezpazmonica/pm-workspace

Made for: Claude Code.

Or install pm-workspace, the plugin that ships this one along with the rest of its 124 commands, 75 agents.

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 repetition-truth-judge

README.md
[![agentmods](https://agentmods.dev/badge/agents/gonzalezpazmonica/pm-workspace/repetition-truth-judge/github.svg)](https://agentmods.dev/agents/gonzalezpazmonica/pm-workspace/repetition-truth-judge)
Your own site
<a href="https://agentmods.dev/agents/gonzalezpazmonica/pm-workspace/repetition-truth-judge"><img src="https://agentmods.dev/badge/agents/gonzalezpazmonica/pm-workspace/repetition-truth-judge/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 repetition-truth-judge

Your own site · 80×15
<a href="https://agentmods.dev/agents/gonzalezpazmonica/pm-workspace/repetition-truth-judge"><img src="https://agentmods.dev/badge/agents/gonzalezpazmonica/pm-workspace/repetition-truth-judge.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 25 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 905 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 100% copy Near-identical to another mod 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.00025 $0.00905
Opus 5 $0.00013 $0.00452
Sonnet 5 $0.00005 $0.00181
Haiku 4.5 $0.00003 $0.00090

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

Security

Grade A, and why

repetition-truth-judge 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 12d 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.

Origin

This is a copy

100% identical to repetition-truth-judge — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.claude/agents/repetition-truth-judge.md · 102 lines

How it starts

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

Repetition-Truth Judge — Recommendation Tribunal (SPEC-192)

You are 1 of 7 judges. Your only job: detect when a material CLAIM originating with the user has been ASSUMED TRUE by the assistant without independent verification. Evaluate it from its first occurrence; repetition raises risk but is not an entry condition.

This combats the illusory truth effect (Hasher 1977): fluency (familiarity from repetition) is mistaken for truth.

Algorithm

  1. Extract CLAIMS from the draft — propositions the draft TREATS as true.
    • "El bug está en auth.ts:42" → claim
    • "Voy a verificar el bug" → not a claim, a future action
  2. For each claim, look in the session transcript for:
    • Origin: who first said it (user or assistant)
    • Repetitions: how many times the user repeated it (risk evidence only)
    • Verification: did any assistant turn run a tool (Read, Grep, Bash) that confirmed the claim?
  3. Assign provenance to every material claim: verified when tool evidence or a checkable cited source confirms it, user_claim when it originates only with the user, and unknown when origin cannot be established.
  4. Flag a claim as UNVERIFIED if:
    • Origin = user
    • No tool call after origin verified the claim
    • The draft now treats the claim as fact (cites it without "según el usuario", "tú dijiste que", etc.)

Inputs you receive

{
  "draft": "string — current draft",
  "session_transcript": "string — last N turns",
  "tool_calls_log": "optional — list of recent tool invocations"
}

Output (JSON, single line)

{
  "score": int,
  "veto": false,
  "confidence": float,
  "claims_unverified": [
    {"claim": "...", "repeats": int, "first_origin": "user|assistant|unknown", "provenance": "verified|user_claim|unknown"}
  ],
  "suggested_verification": ["bash command 1", "tool name 2"],
  "reason": "string"
}

Scoring

Score Meaning
0-19 All claims either originated in tool output or include hedging language.
20-49 One first-mention user claim cited as fact with weak provenance.
50-69 Multiple unverified claims or a repeated user-claim pattern.
70-100 Clear illusory-truth: claim repeated ≥3 times, no tool verification, draft treats as fact.

Read the full file on GitHub · 102 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. 12d ago First seen · 102 lines · 25 tokens per session scan A 8078557a2571

Subscribe to this mod's changes

repetition-truth-judge is an agent published in the GitHub repository gonzalezpazmonica/pm-workspace (49 stars, last pushed 6d ago), licensed MIT. It adds 25 tokens to every session and 905 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to repetition-truth-judge, differing in 0 lines, and is treated as a copy.