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.
npx agentmods add skills/lhl/realitycheck/checknpx skills add lhl/realitycheck --skill checkgit clone --depth 1 https://github.com/lhl/realitycheckWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00034 | $0.09002 |
| Opus 5 | $0.00017 | $0.04501 |
| Sonnet 5 | $0.00007 | $0.01800 |
| Haiku 4.5 | $0.00003 | $0.00900 |
Grade A, and why
check scanned grade A with 1 finding 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 2d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
- Alternative: `curl -L -sS "URL" | rc-html-extract - --format json` How it starts
The opening of the file, as written. The whole thing — 988 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Full Analysis Workflow
Full Reality Check analysis - fetch source, perform 3-stage analysis, extract claims, register to database, and validate. The flagship command for rigorous source analysis.
When This Skill Activates
- "Analyze this article for claims"
- "Reality check this URL"
- "Run a check on"
- "Perform a full analysis"
The flagship Reality Check command for rigorous source analysis.
Prerequisites
Environment
Set REALITYCHECK_DATA to point to your data repository:
export REALITYCHECK_DATA=/path/to/realitycheck-data/data/realitycheck.lance
The PROJECT_ROOT is derived from this path - all analysis files go there.
CLI Commands
Reality Check provides CLI tools (rc-db, rc-validate, rc-export, rc-embed).
Check availability:
which rc-db # Should show path if pip-installed
If commands are not found, either:
- Install:
pip install realitycheck(recommended) - Use
uv runfrom framework directory:uv run python scripts/db.py ... - Add framework as submodule and use:
.framework/scripts/db.py ...
Red Flags: Wrong Repository
IMPORTANT: Always write to the DATA repository, never to the framework repository.
If you see these directories, you're in the framework repo (wrong place for data):
scripts/tests/integrations/methodology/
Stop and verify REALITYCHECK_DATA is set correctly.
Data Source of Truth
LanceDB is the source of truth, not YAML files.
- Query sources:
rc-db source get <id>orrc-db source list - Query claims:
rc-db claim get <id>orrc-db claim list - Search:
rc-db search "query"
Ignore YAML files like claims/registry.yaml or reference/sources.yaml - these are exports/legacy format.
Workflow Steps
- Start Tracking - Begin token usage capture (lifecycle mode)
- Fetch - Retrieve and parse source content
- Primary:
WebFetchfor most URLs - Alternative:
curl -L -sS "URL" | rc-html-extract - --format json rc-html-extractreturns structured{title, published, text, headings, word_count}- Use the extract tool when you need clean metadata or main text extraction
- Primary:
- Metadata - Extract title, author, date, type, generate source-id
- Stage 1: Descriptive - Neutral summary, key claims, argument structure
- Stage 2: Evaluative - Evidence quality, fact-checking, disconfirming evidence
- DB-first for crux factuals: run
rc-db search "<neutral keywords>"before external search - Web discovery: use your environment's web search capability (e.g., Claude
WebSearch, Codexweb.run search_query) - Minimum verification attempt: for each crux
[F]claim, run >=2 distinct queries and record attempts - Status contract: use
ok,x,nf,blocked,?in "Key Factual Claims Verified" - Review gate: do not mark
[REVIEWED]if any crux[F]claim remains?
- DB-first for crux factuals: run
- Stage 3: Dialectical - Steelman, counterarguments, synthesis
- Neutral Analyst Prose Pass - Clean up analyst-authored prose without changing source content, quotes, claim IDs, evidence levels, or credences
- Extract - Format claims as YAML
- Register - Add source and claims to database
- Provenance (for high-credence claims) - Link evidence + capture reasoning trails
- Complete Tracking - Finalize token usage + register
analysis_logsrow - Validate - Run integrity checks
- README - Update data project analysis index
- File Inbox - Move/archive inbox items to permanent locations
- Commit - Stage and commit changes to data repo
- Push - Push to remote
- Report - Generate summary
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.
- 2d ago First seen · 988 lines · 34 tokens per session scan A 5c55e2f61e5a
check is a skill published in the GitHub repository lhl/realitycheck (41 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 34 tokens to every session and 9,002 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
Deep Research
Produce a deep, structured research report on a topic: decompose into key dimensions, analyze each with evidence and reasoning, synthesize cross-cutting insights, and surface open questions. Use for deep research, analysis, and literature/landscape reviews.
document-query
Use when reading, extracting, summarizing, comparing, or answering questions over local or remote documents, code files, PDFs, Office files, HTML/text files, large text-heavy files, and fallback OCR for document images or scans when vision tools are unavailable or insufficient.
military-scout
深入调查,掌握实情,找出问题根因.
data-analysis
Analyze datasets and create visualizations.
jupyter-notebook
Jupyter notebook structure, reproducibility, and best practices for data science.
Jupyter Live Kernel
Guides notebook-first analysis with reproducible kernels, inspectable data loading, and explicit promotion paths back into durable code.