Skip to main content
AIDiveForge AIDiveForge
🔎

Quote Attribution Verifier

Search & Retrieval · by AIDiveForge · Apr 17, 2026 · Intermediate · ✓ 1 verified compat

Check every quoted sentence in a draft against the original source to catch misattribution and paraphrasing.

🧠 Why it works

LLMs are notorious for inventing plausible-sounding quotes, and human editors miss the subtle ones (single word changed, source slightly misremembered). Verifying after drafting is cheaper than preventing at generation time and scales to long documents. The tight verbatim-first + paraphrase-fallback logic matches how fact-checkers actually work: exact match is strong evidence, semantic match is a weaker signal that still warrants a flag.

⚙️ How it works

1) Regex-extract every sentence between double quotes or within blockquote markdown. 2) For each quote, run a verbatim substring search across every source in the corpus — if found, mark verified. 3) For the remainder, compute embedding similarity against every source sentence; top-1 above threshold becomes a 'paraphrase candidate' (still flagged). 4) For the remainder (no verbatim, no embedding match), mark 'unsupported'. 5) Output a report with line-by-line status and suggested fixes: the nearest real quote from the source, or a recommendation to remove the quote. 6) Optional: rewrite unsupported quotes using an LLM, constrained to only use phrases from the source.

Description

Takes a draft document and a source corpus, extracts every quoted passage, and verifies that each one actually appears — verbatim or within a paraphrase-acceptance margin — in the source. Flags hallucinated quotes and subtle word-swap errors.

Install this skill

A Claude skill is a skill.md file with YAML frontmatter and a markdown body. Drop the file into your tool of choice — or pick a different format if you use Cursor, Windsurf, Copilot, or something else.

Download skill.md
mkdir -p ~/.claude/skills/quote-attribution-verifier \
  && curl -L https://aidiveforge.com/skill/quote-attribution-verifier.skill-md \
       -o ~/.claude/skills/quote-attribution-verifier/skill.md

Save to ~/.claude/skills/quote-attribution-verifier/skill.md

Recommended Use

Tools and workflow packs this skill pairs well with. Forge picks are auto-generated from category + capability signals; Community picks are added by people who've used the pairing.

No matches yet. Be the first to suggest a pairing, or the Forge will populate suggestions as signals align.