一键导入
rc-export
Export Reality Check data to YAML or Markdown formats for backup, sharing, or documentation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Export Reality Check data to YAML or Markdown formats for backup, sharing, or documentation.
用 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-export |
| description | Export Reality Check data to YAML or Markdown formats for backup, sharing, or documentation. |
| license | Apache-2.0 |
| compatibility | opencode |
| metadata | {"project":"realitycheck"} |
Export Reality Check data to YAML or Markdown formats for backup, sharing, or documentation.
<format> <type> [--id ID] [-o OUTPUT]
Export Reality Check data to YAML or Markdown formats.
rc-export <format> <type> [--id ID] [-o OUTPUT]
# or: uv run python scripts/export.py <format> <type> ...
format: Output format (yaml or markdown)type: What to export (claims, sources, chains, all)--id: Export specific record by ID-o, --output: Output file path (default: stdout)--domain: Filter by domain (for claims)--include-embeddings: Include vector embeddings (large!)# Export all claims as YAML
rc-export yaml claims -o claims.yaml
# Export specific source as Markdown
rc-export markdown source --id doctorow-2026-reverse-centaur
# Export all data as YAML
rc-export yaml all -o full-export.yaml
# Export TECH domain claims
rc-export yaml claims --domain TECH -o tech-claims.yaml
YAML: Machine-readable, suitable for backup/migration
claims:
- id: "TECH-2026-001"
text: "..."
type: "[T]"
...
Markdown: Human-readable, suitable for documentation
# Claims Export
## TECH-2026-001
**Text**: ...
**Type**: [T]
...
rc-statsrc-validate