원클릭으로
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. |
| argument-hint | <format> <type> [--id ID] [-o OUTPUT] |
| allowed-tools | ["Bash(uv run python scripts/export.py *)","Bash(rc-export *)"] |
Export Reality Check data to YAML or Markdown formats for backup, sharing, or documentation.
/rc-export <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-stats/rc-validate