Commands
traces list
Filters
--status pending|running|completed|error— run status.--needs-review— only traces flagged for human review.--search <text>— full-text over prompts, tool args, tool responses, answers.--from <YYYY-MM-DD>/--to <YYYY-MM-DD>— date range.--flow <slug>— scope to one Flow.--verdict <verdict>— filter by verification verdict:SUPPORT,PARTIALLY_SUPPORTED,NOT_SUPPORT,unverified.--limit <n>— max rows. Default 50.--page <n>— pagination, 1-based.
--json for structured output.
traces get
- Save for offline review:
nora traces get tr_abc > trace-tr_abc.json. - Extract just the tool calls:
nora traces get tr_abc | jq '.spans[] | select(.kind=="tool")'. - Diff two runs:
diff <(nora traces get tr_a) <(nora traces get tr_b).
traces verify
traces verification to get the result.
Flags:
--decompose-model <m>— override the model used to decompose claims.--verify-model <m>— override the model used to check each claim.
traces verification
SUPPORT— all claims are supported by retrieved evidence.PARTIALLY_SUPPORTED— some claims supported, some not.NOT_SUPPORT— no support found for the answer.unverified— no verification has been triggered.
unverified if the trace hasn’t been verified yet — call traces verify first.
traces stats
- Total traces (all time and last 24h).
- Traces per Flow.
- Verdict distribution.
- Error rate.
--json for the raw numbers.
Recipes
Find recent failures on one Flow
Nightly: run verifier on every trace missing verification
Weekly report: NOT_SUPPORT rate
Bulk-download traces for offline analysis
Attach a trace to a signal
There’s no CLI command for creating signals from traces — use the app for that. But for programmatic feedback, seenora feedback.
Trace retention
Traces are retained per Flow settings (default 90 days). Payload retention (raw prompts and tool args) can be shorter for compliance workloads. Once a trace payload is scrubbed,traces get returns metadata only.
traces stats respects retention — counters aren’t affected by scrubbing (metadata retains longer than payloads).
Related
- Traces overview — concepts.
nora feedback— attach feedback to a trace.nora approvals— decide approvals on runs waiting for a human.