Export ICR receipts to file
Export ICR receipts to JSON or CSV files for compliance, analysis, or backup. Filter by severity, decision, tool, or date to export specific records.
/plugin marketplace add az9713/icr/plugin install az9713-icr@az9713/icrExport receipts to a file for external analysis, compliance, or backup.
/icr:export json - Export as JSON/icr:export csv - Export as CSV/icr:export json --filter severity=CRITICAL - Filter by severity/icr:export json --filter decision=blocked - Filter by decision/icr:export json --filter tool=Bash - Filter by tool/icr:export json --session <id> - Export specific session/icr:export json --date 2026-01-02 - Export specific dateFull receipt data with all fields preserved:
{
"exportedAt": "2026-01-02T15:30:00.000Z",
"filterApplied": {"severity": "CRITICAL"},
"receiptCount": 5,
"receipts": [
{ ... full receipt data ... }
]
}
Tabular format for spreadsheet analysis:
id,timestamp,session,tool,severity,confidence,decision,outcome
550e8400...,2026-01-02T10:00:00.000Z,abc123,Bash,CRITICAL,0.62,HUMAN_REVIEW,proceeded
...
Exports are saved to: .claude/icr/exports/<timestamp>.<format>
Example: .claude/icr/exports/2026-01-02T153000Z.json
| Filter | Values | Example |
|---|---|---|
severity | LOW, MEDIUM, HIGH, CRITICAL | --filter severity=HIGH |
decision | auto, ai, human, blocked | --filter decision=blocked |
tool | Any tool name | --filter tool=Bash |
outcome | proceeded, blocked, bypassed | --filter outcome=bypassed |