From verify-content
Integrated skill for fact-checking and reference verification. Identifies claims, verifies with external sources, and organizes references. Use for document reviews, article proofreading, report verification, and academic paper checks.
How this skill is triggered — by the user, by Claude, or both
Slash command
/verify-content:verify-contentThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> **Language:** Respond in the user's language. If unclear, default to the language of the user's message.
Language: Respond in the user's language. If unclear, default to the language of the user's message.
Provides an integrated workflow to ensure the reliability of written content.
┌─────────────┐ ┌─────────────┐ ┌─────────────┐
│ Step 1 │ │ Step 2 │ │ Step 3 │
│ Identify │ → │ Verify │ → │ Reference │
│ (scan) │ │ (verify) │ │ (reference)│
└─────────────┘ └─────────────┘ └─────────────┘
User: Verify the content of this document
User: Identify sections that need verification in this article
User: Fact-check this numerical data
User: Organize the reference list
Analyze the entire text and identify sections that require verification.
| Category | Examples |
|---|---|
| Factual statements | Historical facts, scientific facts, regulations/laws |
| Quantitative claims | Numbers, statistics, dates, rankings |
| Definitive expressions | "always", "the only", "the largest" |
| Citations/references | Quotes from people, citations from literature |
| Comparisons/evaluations | "better than", "generally" |
## Sections to Verify
### Priority: High
| # | Section | Type | Verification Needed |
|---|---------|------|---------------------|
| 1 | "..." | Numerical | Confirm source |
Fact-check identified sections against external sources.
# If WebFetch is blocked
curl -s -L "https://example.com/page" | head -200
# Check past versions on Wayback Machine
curl -s "https://archive.org/wayback/available?url=example.com/page"
| Verdict | Condition |
|---|---|
| Accurate | Confirmed by reliable source, content matches |
| Needs Correction | Mostly accurate but details need fixing |
| Incorrect | Contradicts facts, could cause serious misunderstanding |
| Unverifiable | No reliable source found |
After verification is complete, organize references according to project specifications.
<!-- Footnote format -->
The population of Japan is approximately 120 million[^1].
[^1]: Statistics Bureau of Japan, "Population Estimates", 2024
<!-- Inline format -->
The population of Japan is approximately 120 million (Statistics Bureau of Japan, 2024).
If the text already has references, also check the following:
# Check status code
curl -s -o /dev/null -w "%{http_code}" "https://example.com/page"
# Get alternative URL from Wayback Machine
curl -s "https://archive.org/wayback/available?url=example.com/page"
User: Verify the content of README.md and organize the references
User: Check if the citations in this paper are correct
User: Verify the items identified in Issue #45
# Content Verification Report
## Target Files
- path/to/document.md
## Verification Summary
| Total | Accurate | Needs Correction | Incorrect | Unverifiable |
|-------|----------|-------------------|-----------|--------------|
| 10 | 7 | 2 | 0 | 1 |
## Detailed Results
[Verification results for each item...]
## Reference Organization Status
- [ ] Reference list updated
- [ ] Cross-references added in text
- [ ] Link verification complete
npx claudepluginhub dobachi/claude-skills-marketplace --plugin verify-contentAudits citations and source claims in academic manuscripts. Verifies whether cited papers support attributed claims and checks quantitative claims.
Verifies factual claims in text against authoritative sources using a cheapest-first cascade (project memory, codebase, web) and rewrites with footnote citations, hedging unverified claims.
Verifies citations in agent-generated content against research corpus, blocks hallucinations, enforces GRADE-compliant hedging, and logs gaps.