Change Intelligence
Turn a model baseline into a scoped diff, blast radius, trace, and evidence-backed explanation.
Change Intelligence connects source evolution to system consequences. It does not compare files in isolation: it binds a model baseline to changed entities, dependent projects, tests, policies, contracts, and release gates.
Evidence flow
| Stage | Purpose |
|---|---|
| Snapshot | Capture a versioned model baseline |
| Diff | Identify structural and semantic changes |
| Impact | Calculate direct and transitive blast radius |
| Trace | Follow evidence and dependency relationships |
| Explain / Why | Render a bounded narrative with proof references |
npx workspai workspace snapshot --json
npx workspai workspace diff --from git --json --write
npx workspai workspace impact --from .workspai/reports/workspace-model-diff-last-run.json --json
npx workspai workspace trace --from .workspai/reports/workspace-model-diff-last-run.json --json --writeUse the Graph to inspect the relevant neighborhood rather than injecting the full workspace into a prompt. Impact remains conservative when evidence is missing: unknown relationships stay visible instead of being converted into false safety.
npx workspai workspace explain release-blocked --json --write
npx workspai workspace why --jsonAn explanation is a projection of Model, Graph, and evidence. It is not a second source of truth and cannot override the governed verification verdict.
Explore the command pages for workspace snapshot,
workspace diff,
workspace impact, and
workspace trace.