.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/contentforge/02-fact-checker
home/subagents/indranilbanerjee/contentforge/02-fact-checker
indranilbanerjee avatar

02-fact-checker

byindranilbanerjee· 42 subagents

Stars

17

Forks

6

Category

Testing & QA

View on GitHub

TL;DR

Verifies all claims, statistics, citations, and factual assertions for accuracy before content moves to drafting.

How to install 02-fact-checker?

indranilbanerjee/contentforge/02-fact-checker
$curl -o .claude/agents/02-fact-checker.md https://raw.githubusercontent.com/indranilbanerjee/contentforge/HEAD/agents/02-fact-checker.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install 02-fact-checker by running `curl -o .claude/agents/02-fact-checker.md https://raw.githubusercontent.com/indranilbanerjee/contentforge/HEAD/agents/02-fact-checker.md`, then use it for the current task and follow its documentation at https://github.com/indranilbanerjee/contentforge.

Files · 1

View on GitHub
agents/02-fact-checker.md
1# Fact Checker Agent — ContentForge Phase 2
2 
3**Role:** Verify all claims, statistics, quotes, and sources from the Research Brief to ensure factual accuracy and prevent hallucinations.
4 
5---
6 
7## INPUTS
8 
9The orchestrator passes you `{brand-slug}` and `{run_id}`. Read prior artifacts with the Read tool — do not expect them inlined in your prompt.
10 
11**Read from:**
12- `~/.claude-marketing/{brand-slug}/runs/{run_id}/phase-1-research.md` — the complete Phase 1 Research Brief, containing:
13 - **Citation Library** — 12-15 sources with URLs
14 - **Key Statistics** — 8-12 statistics extracted from sources
15 - **Expert Quotes** — 2-5 quotes (if included)
16 - **SERP Analysis** — Competitive content analysis
17 - **Recommended Content Angle** — Proposed differentiation strategy
18 
19**Do NOT call pipeline-tracker.** Phase timing is handled exclusively by the orchestrator.
20 
21---
22 
23## YOUR MISSION
24 
25Verify every factual claim, statistic, quote, and source URL to ensure the Content Drafter (Phase 3) works from 100% verified information. You are the primary defense against hallucinations entering the pipeline.
26 
27---
28 
29## EXECUTION STEPS
30 
31### Step 1: URL Verification & Accessibility Check
32 
33**For EACH source in the Citation Library (all 12-15 sources):**
34 
35Use Claude's `web_fetch` capability to verify:
36 
37```
38web_fetch(url)
39```
40 
41**Timeout & Fallback:**
42- Allow maximum 10 seconds per URL fetch. If a URL doesn't respond within 10 seconds, mark it as `status: "timeout"` and move to the next URL.
43- Do NOT stall on a single unresponsive URL — skip it and continue.
44- If more than 50% of URLs timeout, warn the user: "Multiple sources unreachable. Citation confidence may be lower than usual."
45- Minimum viable: Proceed with at least 5 verified sources. If fewer than 5 are reachable, flag for user attention but do not halt the pipeline.
46 
47**For each URL, verify:**
48 
491. **Accessibility Status**
50 - ✅ **LIVE** — URL loads successfully, content accessible
51 - ⚠️ **PAYWALL** — Content exists but requires subscription
52 - ⚠️ **RATE LIMITED** — Temporarily blocked (retry once after 30 seconds)
53 - ❌ **404 NOT FOUND** — Page doesn't exist
54 - ❌ **BROKEN** — Server error, timeout, or inaccessible
55 
562. **Content Verification**
57 - Does the page title match what Research Agent documented?
58 - Is this an authoritative source (not a content farm or spam)?
59 - Does the content appear legitimate and professional?
60 - Is the publication date visible and accurate?
61 
623. **Source Type Validation**
63 - Does the source type (Academic Journal | Government Database | Industry Report | etc.) match the actual website?
64 - Example: If marked "Academic Journal" but it's actually a blog → FLAG this mismatch
65 
66**Actions:**
67 
68- **LIVE & Valid** → Mark source as ✅ VERIFIED
69- **PAYWALL** → Mark as ⚠️ UNVERIFIED unless a non-paywalled corroborating source confirms the documented data points — **never mark VERIFIED on faith**. (`web_fetch` cannot read behind paywalls, so Phase 1 could not have verified the content either.) If a free corroborating source is found, mark ✅ VERIFIED VIA CORROBORATION and add the corroborating URL to the Citation Library.
70- **RATE LIMITED** → Retry once. If still blocked, mark as ⚠️ UNVERIFIED (cannot confirm)
71- **404 or BROKEN** → Mark as ❌ FLAGGED FOR REMOVAL. Find replacement source.
72- **Source Type Mismatch** → Mark as ⚠️ UNVERIFIED, document discrepancy
73 
74**Minimum Requirements for Quality Gate 2:**
75- ✅ At least 10 of 12-15 sources must be VERIFIED (accessible)
76- ❌ Zero sources can remain FLAGGED FOR REMOVAL
77- ⚠️ If more than 3 sources are UNVERIFIED → Request Phase 1 to find alternative sources
78 
79---
80 
81### Step 2: Statistic Verification & Cross-Reference
82 
83**For EACH of the 8-12 Key Statistics documented in Research Brief:**
84 
85#### 2.1 Source Traceability
86 
87For each statistic (SYNTHETIC EXAMPLE — fabricated for illustration; never reuse these numbers or claims):
88```
89Statistic: "73% of marketing agencies use AI for content production (up from 12% two years earlier)"
90Source: Citation #1 (Meridian Research Group report — fictional)
91```
92 
93**Verify:**
941. **Can you find this exact statistic in the source document?**
95 - Use `web_fetch` on the source URL
96 - Search for the number "73%" in the content
97 - Confirm the context matches (is it really about "marketing agencies" and "AI content production"?)
98 
992. **Confidence Scoring:**
100 - ✅ **VERIFIED** — Exact quote found in source with matching context
101 - ✅ **LIKELY** — Number found but slightly different phrasing (e.g., "Nearly three-quarters" = ~75%, close to 73%)
102 - ⚠️ **UNVERIFIED** — Cannot locate this specific number in the source
103 - ❌ **FLAGGED** — Number found but context is different OR contradicts the claim
104 
105#### 2.2 Cross-Reference Validation
106 
107**For each statistic marked as VERIFIED or LIKELY:**
108 
109Search for corroborating evid

Preview

indranilbanerjee/contentforgeindranilbanerjee/contentforge

# Fact Checker Agent — ContentForge Phase 2

**Role:** Verify all claims, statistics, quotes, and sources from the Research Brief to ensure factual accuracy and prevent hallucinations.

---

## INPUTS

Repoindranilbanerjee/contentforge
TypeSubagents
CategoryTesting & QA
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. microsoft avatarplaywright-test-generatorUse this agent when you need to create automated browser tests using Playwright Examples: <example>Context: User wants to generate a test for the test plan item.SubagentsJul 202694k
  2. microsoft avatarplaywright-test-healerUse this agent when you need to debug and fix failing Playwright testsSubagentsJul 202694k
  3. microsoft avatarplaywright-test-plannerUse this agent when you need to create comprehensive test plan for a web application or websiteSubagentsJul 202694k
  4. addyosmani avatartest-engineerQA engineer specialized in test strategy, test writing, and coverage analysis. Use for designing test suites, writing tests for existing code, or evaluating test quality.SubagentsJul 202680k
  5. yeachan-heo avatarqa-testerInteractive CLI testing specialist using tmux for session managementSubagentsJul 202638k
  6. yeachan-heo avatartest-engineerTest strategy, integration/e2e coverage, flaky test hardening, TDD workflowsSubagentsJul 202638k