| 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"} |
Data Export
Export Reality Check data to YAML or Markdown formats for backup, sharing, or documentation.
Usage
<format> <type> [--id ID] [-o OUTPUT]
Export Reality Check data to YAML or Markdown formats.
Usage
rc-export <format> <type> [--id ID] [-o OUTPUT]
Arguments
format: Output format (yaml or markdown)
type: What to export (claims, sources, chains, all)
Options
--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!)
Examples
rc-export yaml claims -o claims.yaml
rc-export markdown source --id doctorow-2026-reverse-centaur
rc-export yaml all -o full-export.yaml
rc-export yaml claims --domain TECH -o tech-claims.yaml
Output Formats
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]
...
Related Skills