Provenance in Wu-Weism means that every claim can be traced back to exactly three things: the evidence that informed it, the model that structured the reasoning, and the computational steps that produced the conclusion. Nothing is asserted without a traceable origin. This page explains how that trace is structured, where you can find it, and how to use it to audit your own reasoning over time.Documentation Index
Fetch the complete documentation index at: https://wuweism.com/llms.txt
Use this file to discover all available pages before exploring further.
The counterfactual trace
Every do-calculus intervention — every time Wu-Weism answers a “what if” or “what would have happened” question — produces a counterfactual trace record. This record is the authoritative account of how a conclusion was reached.Trace fields
| Field | Description |
|---|---|
traceId | Unique identifier for this inference. Every claim in the Claim Ledger links back here via its trace_id field. |
modelRef | The Structural Causal Model used — identified by modelKey (the domain model) and version. A new version is recorded whenever the model is updated. |
intervention | The variable that was set and the value it was set to for this do-calculus operation. |
outcome | The outcome variable whose expected value was evaluated under the intervention. |
method | Always deterministic_graph_diff for do-calculus interventions. This records the computational approach so results can be independently reproduced. |
assumptions | The causal assumptions made during the inference — things Wu-Weism treated as given. Review these critically; they are the basis on which the conclusion rests. |
adjustmentSet | The variables used to control for confounding. These are selected automatically by the back-door or front-door criterion applied to your SCM. |
timestamp | When the inference was computed. |
The
adjustmentSet tells you which confounders Wu-Weism controlled for. If you believe an important variable is missing, that is the place to investigate — it may indicate a gap in your SCM specification.Evidence links
Claims are not only grounded in model structure — they are also linked to the specific evidence sources that informed them. Evidence links can include:- PDFs you uploaded to the workbench, referenced by filename and internal page/paragraph extraction.
- Web sources retrieved during analysis, stored by URL and retrieval timestamp.
- Scientific extractions — structured data points (effect sizes, confidence intervals, sample characteristics) extracted from your document corpus by the PDF synthesis engine.
evidence_links. To review the source material for a given claim, click the evidence reference in the claim detail view.
Session provenance
Each workbench session maintains its own provenance history. A session record captures:- The full message history — every question you asked and every response produced, in order.
- Domain classifications — how Wu-Weism categorized your research domain at each step (e.g.,
economics_marketing,epidemiology_observational). - SCM loads — which Structural Causal Model was loaded at each point in the session, including version numbers.
The alignment audit report
Wu-Weism tracks how your reasoning practice has aligned with scientific best practices over time. The alignment audit report is available at:- What proportion of your claims passed the falsifiability gate.
- How often your interventions were identifiable before do-calculus was run.
- Whether your SCM models have been updated in response to new evidence, or left stale.
- Patterns in uncertainty labels across your sessions — for example, whether a particular domain consistently produces high-uncertainty claims, which may warrant further literature review.
Scientific integrity dashboard
The scientific integrity dashboard shows the current integrity status of your SCM models:- Whether the model has been validated against known benchmark results.
- The date of the last update and whether any new literature has been ingested since.
- Any open integrity flags — for example, an assumption in the model that conflicts with evidence in your uploaded corpus.
Open the integrity dashboard
Navigate to Settings → SCM Integrity in the workbench, or call
GET /api/scm/integrity/dashboard to retrieve the raw report.Review flagged models
Models with open integrity flags are listed at the top. Each flag includes the specific assumption or structural element under question and the conflicting evidence source.
Resolve or acknowledge flags
You can upload new evidence to resolve a flag, update the model assumption, or acknowledge the flag with a rationale. Acknowledged flags remain visible in the audit trail.
Reading a full provenance trail
To reconstruct the complete reasoning path for any claim:Follow the trace
Open the counterfactual trace using the
trace_id. Review the modelRef, intervention, assumptions, and adjustmentSet.Review the evidence links
Examine the
evidence_links on the claim to see which PDFs, web sources, or extracted data points supported the conclusion.Check the gate decisions
Review the
gate_decisions on the claim to confirm that falsifiability and identifiability checks passed before the claim was recorded.Can I export the full provenance trail for a claim?
Can I export the full provenance trail for a claim?
Yes. Retrieve the claim via
GET /api/claims/{id}, then follow the trace_id to GET /api/scm/counterfactual-traces/{traceId}. The session message history is available via GET /api/causal-chat/sessions/{sessionId}. You can assemble the complete trail from these three endpoints.What if two claims have the same trace ID?
What if two claims have the same trace ID?
This indicates that two claims were produced by the same do-calculus intervention step — for example, a primary outcome claim and a secondary derived claim from the same intervention. Both are valid and both reference the same underlying computation.
Are trace records immutable?
Are trace records immutable?
Yes. Trace records are written once and never modified. If a model is updated and the same intervention is re-run, a new trace record is created with the updated
modelRef. The original trace record is preserved.How long are trace records retained?
How long are trace records retained?
Trace records and session histories are retained for the lifetime of your account. Contact support if you need to export your full data archive.
Related
Claim governance
The structure and fields of every claim in the Claim Ledger.
The Falsifiability Gate
How Wu-Weism evaluates claims before recording them.
