AgentSkillsCN

realitycheck-export

将 Reality Check 数据导出为 YAML 或 Markdown 格式,用于备份、共享或生成文档。

SKILL.md
--- frontmatter
name: realitycheck-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
<!-- GENERATED FILE - DO NOT EDIT DIRECTLY --> <!-- Source: integrations/_templates/ + _config/skills.yaml --> <!-- Regenerate: make assemble-skills -->

Data Export

Export Reality Check data to YAML or Markdown formats for backup, sharing, or documentation.

Usage

code
<format> <type> [--id ID] [-o OUTPUT]

Export Reality Check data to YAML or Markdown formats.

Usage

bash
rc-export <format> <type> [--id ID] [-o OUTPUT]
# or: uv run python scripts/export.py <format> <type> ...

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

bash
# 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

Output Formats

YAML: Machine-readable, suitable for backup/migration

yaml
claims:
  - id: "TECH-2026-001"
    text: "..."
    type: "[T]"
    ...

Markdown: Human-readable, suitable for documentation

markdown
# Claims Export

## TECH-2026-001
**Text**: ...
**Type**: [T]
...

Related Skills

  • realitycheck-stats
  • realitycheck-validate