CLI Reference
Basic Usage
Options
| Option | Description | Default |
|---|---|---|
--root-path, -r |
Root directory for filesystem search | None |
--output, -o |
Output file (auto-detects format from extension) | None |
--model, -m |
Model to use (can specify multiple) | gpt-4o |
--confidence, -c |
Confidence threshold | 0.7 |
--web-search |
Enable web search (enabled by default) | True |
--human-review |
Enable human-in-the-loop | False |
--mode |
Verification mode: external, internal, both | external |
Examples
Basic
With Filesystem Context
Multi-Model
Save Report
Strict Verification
Disable Web Search
Web search is enabled by default. To run without web search, use filesystem evidence only:
Human Review
Pauses for low-confidence claims:
Claim: Python requires 3.11+
Proposed: NOT_ENOUGH_INFO (40%)
Approve? (approve/correct:SUPPORTS/skip)
Output Formats
Terminal (Default)
Rich tables and panels:
╭────────────────────── Evaluation Summary ──────────────────────╮
│ Grade: A+ │
│ Confidence: 91.7% │
╰────────────────────────────────────────────────────────────────╯
Markdown (Recommended)
Generates a readable report with: - Executive summary - Detailed claim-by-claim analysis - Evidence sources - Model votes
JSON
{
"overall_grade": "A+",
"overall_confidence": 0.917,
"claims": [...],
"verifications": [...],
"statistics": {
"total_claims": 4,
"supported": 3,
"refuted": 0,
"not_enough_info": 1
}
}
HTML
Self-contained HTML with styling.
Exit Codes
| Code | Meaning |
|---|---|
| 0 | Success |
| 1 | Error (file not found, API error, etc.) |
Environment Variables
Override defaults: