一键导入
rc-analyze
Perform a full 3-stage analysis following the Reality Check methodology. Use for manual analysis without automatic database registration.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Perform a full 3-stage analysis following the Reality Check methodology. Use for manual analysis without automatic database registration.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Full Reality Check analysis - fetch source, perform 3-stage analysis, extract claims, register to database, and validate. The flagship command for rigorous source analysis.
Perform a full 3-stage analysis following the Reality Check methodology. Use for manual analysis without automatic database registration.
Create a cross-source synthesis across multiple source analyses and claims. Use after checking multiple sources or when producing a higher-level, decision-oriented view.
Full Reality Check analysis - fetch source, perform 3-stage analysis, extract claims, register to database, and validate. The flagship command for rigorous source analysis.
Perform a full 3-stage analysis following the Reality Check methodology. Use for manual analysis without automatic database registration.
Create a cross-source synthesis across multiple source analyses and claims. Use after checking multiple sources or when producing a higher-level, decision-oriented view.
| name | rc-analyze |
| description | Perform a full 3-stage analysis following the Reality Check methodology. Use for manual analysis without automatic database registration. |
| license | Apache-2.0 |
| compatibility | opencode |
| metadata | {"project":"realitycheck"} |
Perform a full 3-stage analysis following the Reality Check methodology. Use for manual analysis without automatic database registration.
<url_or_source_id>
Perform a full 3-stage analysis following the Reality Check methodology. Use this for manual analysis when you want to review claims before registering them.
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.
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:
pip install realitycheck (recommended)uv run from framework directory: uv run python scripts/db.py ....framework/scripts/db.py ...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.
LanceDB is the source of truth, not YAML files.
rc-db source get <id> or rc-db source listrc-db claim get <id> or rc-db claim listrc-db search "query"Ignore YAML files like claims/registry.yaml or reference/sources.yaml - these are exports/legacy format.
To retrieve and parse source content:
WebFetch for most URLscurl -L -sS "URL" | rc-html-extract - --format jsonrc-html-extract returns structured {title, published, text, headings, word_count}Before finalizing an analysis or synthesis, run a short pass over the analyst-authored prose.
Scope:
Rewrite rules:
many, several, various) with counts, IDs,
bounded scopes, or unknown.Use this hierarchy to rate strength of evidential support for claims.
| Level | Strength | Description | Credence Range |
|---|---|---|---|
| E1 | Strong Empirical | Systematic review, meta-analysis, replicated experiments | 0.9-1.0 |
| E2 | Moderate Empirical | Single peer-reviewed study, official statistics | 0.6-0.8 |
| E3 | Strong Theoretical | Expert consensus, working papers, preprints | 0.5-0.7 |
| E4 | Weak Theoretical | Industry reports, credible journalism | 0.3-0.5 |
| E5 | Opinion/Forecast | Personal observation, anecdote, expert opinion | 0.2-0.4 |
| E6 | Unsupported | Pure speculation, unfalsifiable claims | 0.0-0.2 |
| Type | Symbol | Definition |
|---|---|---|
| Fact | [F] | Empirically verified, consensus reality |
| Theory | [T] | Coherent explanatory framework with empirical support |
| Hypothesis | [H] | Testable proposition, awaiting evidence |
| Prediction | [P] | Future-oriented claim with specified conditions |
| Assumption | [A] | Underlying premise (stated or unstated) |
| Counterfactual | [C] | Alternative scenario for comparison |
| Speculation | [S] | Unfalsifiable or untestable claim |
| Contradiction | [X] | Identified logical inconsistency |
Generate:
Rigor contract (v1):
Layer, Actor, Scope, and Quantifier fields (see docs/WORKFLOWS.md → “Analysis Rigor Contract (v1)”).Corrections & Updates section (including capture failures and recency checks) for auditability.After analysis, register manually:
rc-db source add --id "..." --title "..." --type "..." --author "..." --year YYYY --url "..."
rc-db claim add --id "..." --text "..." --type "[F]" --domain "..." --evidence-level "E2" --credence 0.XX --source-ids "..."
Or use $check for fully automated analysis + registration.
checkrc-extract