agent-inspect 6.14.0 → 6.14.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 6.14.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 44f80dd: Public positioning and AI discoverability patch: align README/docs/website/package metadata with shipped 6.14 TraceFacts, Evidence, MCP, and experimental matchers; add llms/AI manifests, Agent Skill, and public-truth validators. Docs and presentation only — no schema/runtime change.
8
+
9
+ ## Unreleased
10
+
11
+ ### Patch
12
+
13
+ - (pending 6.14.1) Public positioning, documentation truth, and AI discoverability refresh.
14
+
3
15
  ## 6.14.0
4
16
 
5
17
  ### Minor Changes
@@ -18,12 +30,6 @@
18
30
 
19
31
  - a3c0daa: Logical lifecycle projection for built-in checks and TraceContract: additive experimental `logicalEvents` (raw `events` unchanged), v0.1 start/complete pairing, stepId parent normalization, nested tool identity, and `metadata.tokens.*` safe metrics. Eval/gate/Evidence/MCP inherit via `runTraceChecks`. Includes anonymized pilot-shaped fixture and packed check→gate→bundle→verify E2E. No schema break; no new packages; no default network.
20
32
 
21
- ## Unreleased
22
-
23
- ### Minor (6.14.0 candidate)
24
-
25
- - Evidence-first CI / no-egress LC: Evidence `semantics` TraceFacts summary, MCP `get_trace_facts`, `init --framework langgraph`, langgraph-gate-evidence recipe, acceptance + no-egress docs.
26
-
27
33
  ## 6.12.1
28
34
 
29
35
  ### Patch Changes
package/README.md CHANGED
@@ -8,11 +8,19 @@
8
8
  <h1 align="center">agent-inspect</h1>
9
9
 
10
10
  <p align="center">
11
- <strong>The local evidence debugger for TypeScript agents—faithful execution trees, deterministic regression checks, share-checked evidence, and coding-agent access without a collector or account.</strong>
11
+ <strong>Debug and regression-test TypeScript AI agents from local evidence.</strong>
12
12
  </p>
13
13
 
14
14
  <p align="center">
15
- <sub>No account · no default upload · metadata-only by default · optional customer-owned Studio</sub>
15
+ AgentInspect captures framework-faithful execution trees, evaluates them with deterministic TraceFacts and TraceContract rules, creates integrity-verifiable Evidence v2, and lets coding assistants inspect the same local facts over read-only MCP—without a collector, account, or default upload.
16
+ </p>
17
+
18
+ <p align="center">
19
+ <em>See what your agent did. Prove the fix. Keep the evidence.</em>
20
+ </p>
21
+
22
+ <p align="center">
23
+ <sub>No account · no collector · no default upload · metadata-only by default</sub>
16
24
  </p>
17
25
 
18
26
  <p align="center">
@@ -33,7 +41,14 @@
33
41
  npm install agent-inspect
34
42
  ```
35
43
 
36
- ## Hero flow
44
+ ## Four pillars
45
+
46
+ | Pillar | What you get |
47
+ | ------ | ------------ |
48
+ | **Capture faithfully** | Framework-aware execution trees and local JSONL you own |
49
+ | **Test behavior deterministically** | TraceFacts, TraceContract, checks, suites, gates, and experimental Vitest/Jest matchers |
50
+ | **Produce portable evidence** | Offline Evidence v2 with integrity verification and share-policy disclosure |
51
+ | **Debug with coding assistants locally** | Read-only MCP over the same TraceFacts — no collector required |
37
52
 
38
53
  ```text
39
54
  1. Capture one real run
@@ -43,18 +58,6 @@ npm install agent-inspect
43
58
  5. Attach the share-checked evidence
44
59
  ```
45
60
 
46
- ## Three workflows
47
-
48
- | Workflow | What you do |
49
- | -------- | ----------- |
50
- | **Debug one run** | Capture/import → tree / timeline / report → first causal failure |
51
- | **Prevent one regression** | TraceContract / `check` → suite / cohort → CI gate |
52
- | **Share one safe artifact** | Redact → `verify-safe` → offline bundle → optional Studio review |
53
-
54
- **Coding-agent loop (optional):** local read-only [`@agent-inspect/mcp-server`](https://www.npmjs.com/package/@agent-inspect/mcp-server) — see [CODING-AGENT-LOOP.md](https://github.com/rajudandigam/agent-inspect/blob/main/docs/CODING-AGENT-LOOP.md).
55
-
56
- **Review as a team (optional):** workspace + optional SQLite index → customer-owned [Studio Beta](https://github.com/rajudandigam/agent-inspect/tree/main/packages/studio) (no AgentInspect-hosted cloud). Portfolio tiers: [POSITIONING-AND-PORTFOLIO.md](https://github.com/rajudandigam/agent-inspect/blob/main/docs/POSITIONING-AND-PORTFOLIO.md).
57
-
58
61
  <p align="center">
59
62
  <img src="https://raw.githubusercontent.com/rajudandigam/agent-inspect/main/docs/assets/readme-product-loop.svg?sanitize=true" alt="Capture or import → understand → enforce → verify and bundle → review locally or in customer-owned Studio" width="900">
60
63
  </p>
@@ -66,6 +69,7 @@ Commands below match the packed quickstart. Replace `<run-id>` with a value from
66
69
  ```bash
67
70
  npm install agent-inspect
68
71
  npx agent-inspect init --yes
72
+ # or: npx agent-inspect init --framework langgraph --yes
69
73
  node examples/agent-inspect-demo.mjs
70
74
  npx agent-inspect list --dir .agent-inspect
71
75
  ```
@@ -81,23 +85,22 @@ npx agent-inspect bundle verify .agent-inspect/bundles/<run-id>
81
85
  npx agent-inspect mcp configure --client cursor
82
86
  ```
83
87
 
84
- `init` scaffolds config and a demo script; the **demo** writes the trace. Guide: [First trace in 5 minutes](https://agentinspect.vercel.app/docs/getting-started/) · [repo](https://github.com/rajudandigam/agent-inspect/blob/main/docs/FIRST-TRACE-IN-5-MINUTES.md) · [Golden path](https://github.com/rajudandigam/agent-inspect/blob/main/docs/GOLDEN-PATH.md) · [Coding-agent loop](https://github.com/rajudandigam/agent-inspect/blob/main/docs/CODING-AGENT-LOOP.md)
88
+ Guides: [First trace in 5 minutes](https://agentinspect.vercel.app/docs/getting-started/) · [Golden path](https://github.com/rajudandigam/agent-inspect/blob/main/docs/GOLDEN-PATH.md) · [Coding-agent loop](https://github.com/rajudandigam/agent-inspect/blob/main/docs/CODING-AGENT-LOOP.md)
85
89
 
86
90
  ## Why AgentInspect
87
91
 
88
- **Unique position:** a local **evidence debugger** for TypeScript agents—not a hosted APM, eval host, or prompt registry. Complements LangSmith/Langfuse/Phoenix; owns the laptop → PR loop.
92
+ **Category:** the local evidence debugger and trajectory-test toolkit for TypeScript AI agents not a hosted APM, eval host, or prompt registry. Complements LangSmith/Langfuse/Phoenix; owns the laptop → PR loop.
89
93
 
90
- **Proven mechanisms (shipped):**
94
+ **Proof (public-safe):** Validated against production-shaped NestJS/LangGraph integrations. Fixture-backed across official adapters and packed consumer workflows.
91
95
 
92
96
  | Mechanism | What you get |
93
97
  | --------- | ------------ |
94
98
  | Faithful execution trees | Nested steps, tools, LLMs, status, duration on disk |
95
- | First causal failure | Conservative ordered engine for what failed first |
99
+ | TraceFacts / logical projection | Canonical tool identity and semantic parity without inventing hierarchy |
96
100
  | Deterministic checks / TraceContract (Beta) | Trajectory expectations without an LLM judge |
97
- | Share-checked Evidence v2 | `bundle` + `bundle verify` offline artifacts |
98
- | Read-only MCP coding-agent loop (Preview) | `mcp configure` + `@agent-inspect/mcp-server` over local traces |
99
-
100
- No fabricated adoption counts. External pilot evidence is still pending—see [Pilot kit](https://github.com/rajudandigam/agent-inspect/blob/main/docs/PRE-V7-PILOT-KIT.md).
101
+ | Experimental Vitest/Jest matchers | `toPassTraceContract` · `toHaveRequiredTool` |
102
+ | Share-checked Evidence v2 | `bundle` + `bundle verify` with optional TraceFacts semantics |
103
+ | Read-only MCP coding-agent loop (Preview) | `get_trace_facts` and related tools over local traces |
101
104
 
102
105
  ## Choose your capture path
103
106
 
@@ -106,29 +109,27 @@ No fabricated adoption counts. External pilot evidence is still pending—see [P
106
109
  | **Manual / observe** | Custom nesting or object methods | [Getting started](https://github.com/rajudandigam/agent-inspect/blob/main/docs/GETTING-STARTED.md) |
107
110
  | **AI SDK** | Vercel AI SDK `generateText` / `streamText` | [`@agent-inspect/ai-sdk`](https://www.npmjs.com/package/@agent-inspect/ai-sdk) |
108
111
  | **OpenAI Agents** | OpenAI Agents JS | [`@agent-inspect/openai-agents`](https://www.npmjs.com/package/@agent-inspect/openai-agents) |
109
- | **LangChain** | Callbacks / LangGraph-via-LangChain | [`@agent-inspect/langchain`](https://www.npmjs.com/package/@agent-inspect/langchain) |
112
+ | **LangChain / LangGraph** | Callbacks / LangGraph | [`@agent-inspect/langchain`](https://www.npmjs.com/package/@agent-inspect/langchain) · `init --framework langgraph` |
110
113
  | **Structured logs** | Logs already emitted | [Log-to-tree](https://github.com/rajudandigam/agent-inspect/blob/main/docs/LOG-TO-TREE-QUICKSTART.md) |
111
114
  | **Harness** | Fixture runner for real projects | [`@agent-inspect/harness`](https://www.npmjs.com/package/@agent-inspect/harness) |
112
- | **CI reporters** | Failed-test artifacts | [`vitest`](https://www.npmjs.com/package/@agent-inspect/vitest) · [`jest`](https://www.npmjs.com/package/@agent-inspect/jest) |
115
+ | **CI reporters + matchers** | Failed-test artifacts and contracts | [`vitest`](https://www.npmjs.com/package/@agent-inspect/vitest) · [`jest`](https://www.npmjs.com/package/@agent-inspect/jest) |
113
116
  | **Standards files** | OpenInference / OTLP JSON | [Standards](https://github.com/rajudandigam/agent-inspect/blob/main/docs/STANDARDS.md) |
114
117
 
115
- Blessed starters (no API keys): [examples/starters](https://github.com/rajudandigam/agent-inspect/tree/main/examples/starters)
118
+ Blessed starters (no API keys): [examples/starters](https://github.com/rajudandigam/agent-inspect/tree/main/examples/starters) · LangGraph gate/evidence recipe: [langgraph-gate-evidence](https://github.com/rajudandigam/agent-inspect/tree/main/examples/recipes/langgraph-gate-evidence)
116
119
 
117
120
  ## What you can do after capture
118
121
 
119
- **Understand** — `what` / `view` / tree · timeline · report · diff · sessions / activity
122
+ **Understand** — `what` / `view` / tree · timeline · report · diff · `buildTraceFacts`
120
123
 
121
- **Prevent regressions** — deterministic checks · typed TraceContract (Beta) · suites · cohorts · CI gates · Vitest/Jest reporters (artifact reporters today; TraceContract matchers not shipped)
124
+ **Prevent regressions** — deterministic checks · TraceContract (Beta) · suites · cohorts · CI gates · Vitest/Jest reporters · experimental matchers (`toPassTraceContract`, `toHaveRequiredTool`)
122
125
 
123
- **Share safely** — redaction profiles · `scan` · `verify-safe` · offline bundles · CI artifacts
126
+ **Share safely** — redaction profiles · `scan` · `verify-safe` · Evidence v2 bundles · CI artifacts
124
127
 
125
- **Scale locally** — workspace · optional SQLite index (Beta) · observed outcomes · viewer / TUI / VS Code
128
+ **Debug with coding assistants** — `@agent-inspect/mcp-server` · `get_trace_facts` · first-causal-failure
126
129
 
127
- **Review as a team** — customer-owned Studio Beta · explicit file / GitHub / HTTP ingest (disabled by default) · no maintainer cloud
130
+ **Scale locally** — workspace · optional SQLite index (Beta) · viewer / TUI / VS Code · customer-owned Studio (Beta)
128
131
 
129
- **Interoperate** read-only MCP server (Preview) · OpenInference-compatible / OTLP GenAI-aligned mapping with known-loss reporting
130
-
131
- Support labels: [SUPPORT-LEVELS.md](https://github.com/rajudandigam/agent-inspect/blob/main/docs/SUPPORT-LEVELS.md) · Network: [NETWORK-BEHAVIOR.md](https://github.com/rajudandigam/agent-inspect/blob/main/docs/NETWORK-BEHAVIOR.md)
132
+ Support labels: [SUPPORT-LEVELS.md](https://github.com/rajudandigam/agent-inspect/blob/main/docs/SUPPORT-LEVELS.md) · Network: [NETWORK-BEHAVIOR.md](https://github.com/rajudandigam/agent-inspect/blob/main/docs/NETWORK-BEHAVIOR.md) · No-egress: [NO-EGRESS-POLICY.md](https://github.com/rajudandigam/agent-inspect/blob/main/docs/NO-EGRESS-POLICY.md)
132
133
 
133
134
  ## Real-world scenarios
134
135
 
@@ -136,13 +137,10 @@ Support labels: [SUPPORT-LEVELS.md](https://github.com/rajudandigam/agent-inspec
136
137
  | -------- | ----- |
137
138
  | Wrong tool / intentional failure | [broken-agent-debugging](https://github.com/rajudandigam/agent-inspect/tree/main/examples/starters/broken-agent-debugging) |
138
139
  | Coding-agent MCP debug loop | [coding-agent-debug-loop](https://github.com/rajudandigam/agent-inspect/tree/main/examples/starters/coding-agent-debug-loop) · [CODING-AGENT-LOOP](https://github.com/rajudandigam/agent-inspect/blob/main/docs/CODING-AGENT-LOOP.md) |
139
- | CI trajectory gate + redact | [ci-eval-redact](https://github.com/rajudandigam/agent-inspect/tree/main/examples/starters/ci-eval-redact) · [CI artifacts](https://github.com/rajudandigam/agent-inspect/blob/main/docs/CI-ARTIFACTS.md) |
140
+ | CI trajectory gate + Evidence | [ci-eval-redact](https://github.com/rajudandigam/agent-inspect/tree/main/examples/starters/ci-eval-redact) · [langgraph-gate-evidence](https://github.com/rajudandigam/agent-inspect/tree/main/examples/recipes/langgraph-gate-evidence) |
140
141
  | Safe incident handoff | [Safe sharing](https://github.com/rajudandigam/agent-inspect/blob/main/docs/SAFE-TRACE-SHARING.md) |
141
142
  | Multi-agent / session retry | [Sessions & outcomes](https://github.com/rajudandigam/agent-inspect/blob/main/docs/SESSIONS-AND-OUTCOMES.md) |
142
143
  | Customer-owned team review | [Self-hosting](https://github.com/rajudandigam/agent-inspect/blob/main/docs/SELF-HOSTING.md) · Studio (optional) |
143
- | Design partner trial | [Pilot kit](https://github.com/rajudandigam/agent-inspect/blob/main/docs/PRE-V7-PILOT-KIT.md) |
144
-
145
- All blessed starters (no API keys): [examples/starters](https://github.com/rajudandigam/agent-inspect/tree/main/examples/starters)
146
144
 
147
145
  ## Safety and network behavior
148
146
 
@@ -159,9 +157,11 @@ Details: [Safe sharing](https://github.com/rajudandigam/agent-inspect/blob/main/
159
157
 
160
158
  ## Project status
161
159
 
162
- **Current release:** **6.14.0** (eighteen linked npm packages). Stable launch candidate; eight-week adoption checkpoint in progress; external pilot evidence pending. Persisted schema **1.0**. Node.js **≥ 20**. **v7 not scheduled.**
160
+ **Current release:** **6.14.1** · schema **1.0** · Node.js **≥ 20** · **MIT** · **actively maintained** (eighteen linked npm packages).
161
+
162
+ The 6.14 line is actively maintained for correctness, compatibility, documentation, security, and framework evolution.
163
163
 
164
- [Roadmap](ROADMAP.md) · [Pilot kit](https://github.com/rajudandigam/agent-inspect/blob/main/docs/PRE-V7-PILOT-KIT.md) · [Changelog](CHANGELOG.md)
164
+ [Roadmap](ROADMAP.md) · [Changelog](CHANGELOG.md) · [Public product facts](https://github.com/rajudandigam/agent-inspect/blob/main/docs/product/PUBLIC-PRODUCT-FACTS.md)
165
165
 
166
166
  ## What AgentInspect is not
167
167
 
@@ -169,7 +169,8 @@ Details: [Safe sharing](https://github.com/rajudandigam/agent-inspect/blob/main/
169
169
  - Production APM replacement
170
170
  - Eval dataset platform or LLM-as-judge by default
171
171
  - Prompt registry, pricing engine, or replay engine
172
- - Universal standards exporter or completed external adoption proof
172
+ - Universal standards exporter
173
+ - Compliance certification
173
174
 
174
175
  See [Compare](https://github.com/rajudandigam/agent-inspect/blob/main/docs/COMPARE.md).
175
176
 
@@ -194,7 +195,7 @@ Canonical tiers: [POSITIONING-AND-PORTFOLIO.md](https://github.com/rajudandigam/
194
195
  | ------- | ------- |
195
196
  | [`@agent-inspect/ai-sdk`](https://www.npmjs.com/package/@agent-inspect/ai-sdk) | AI SDK telemetry |
196
197
  | [`@agent-inspect/openai-agents`](https://www.npmjs.com/package/@agent-inspect/openai-agents) | OpenAI Agents processor |
197
- | [`@agent-inspect/langchain`](https://www.npmjs.com/package/@agent-inspect/langchain) | LangChain callbacks |
198
+ | [`@agent-inspect/langchain`](https://www.npmjs.com/package/@agent-inspect/langchain) | LangChain / LangGraph callbacks |
198
199
 
199
200
  ### Tier B — Testing / evaluation
200
201
 
@@ -202,8 +203,8 @@ Canonical tiers: [POSITIONING-AND-PORTFOLIO.md](https://github.com/rajudandigam/
202
203
  | ------- | ------- |
203
204
  | [`@agent-inspect/harness`](https://www.npmjs.com/package/@agent-inspect/harness) | Fixture runner |
204
205
  | [`@agent-inspect/eval`](https://www.npmjs.com/package/@agent-inspect/eval) | Local eval heuristics |
205
- | [`@agent-inspect/vitest`](https://www.npmjs.com/package/@agent-inspect/vitest) | Vitest reporter |
206
- | [`@agent-inspect/jest`](https://www.npmjs.com/package/@agent-inspect/jest) | Jest reporter |
206
+ | [`@agent-inspect/vitest`](https://www.npmjs.com/package/@agent-inspect/vitest) | Vitest reporter + experimental matchers |
207
+ | [`@agent-inspect/jest`](https://www.npmjs.com/package/@agent-inspect/jest) | Jest reporter + experimental matchers |
207
208
 
208
209
  ### Tier C — Optional supporting (Safety)
209
210
 
@@ -244,7 +245,8 @@ Canonical tiers: [POSITIONING-AND-PORTFOLIO.md](https://github.com/rajudandigam/
244
245
  | | Website | Repo |
245
246
  | - | ------- | ---- |
246
247
  | Getting started | [docs](https://agentinspect.vercel.app/docs/getting-started/) | [FIRST-TRACE](https://github.com/rajudandigam/agent-inspect/blob/main/docs/FIRST-TRACE-IN-5-MINUTES.md) |
247
- | Contracts / suites / gates | — | [TRACE-CONTRACTS](https://github.com/rajudandigam/agent-inspect/blob/main/docs/TRACE-CONTRACTS.md) · [SUITES-COHORTS-GATES](https://github.com/rajudandigam/agent-inspect/blob/main/docs/SUITES-COHORTS-GATES.md) |
248
+ | TraceFacts / contracts | — | [TRACE-FACTS](https://github.com/rajudandigam/agent-inspect/blob/main/docs/TRACE-FACTS.md) · [TRACE-CONTRACTS](https://github.com/rajudandigam/agent-inspect/blob/main/docs/TRACE-CONTRACTS.md) |
249
+ | Evidence / MCP / no-egress | — | [EVIDENCE-FORMAT](https://github.com/rajudandigam/agent-inspect/blob/main/docs/EVIDENCE-FORMAT.md) · [CODING-AGENT-LOOP](https://github.com/rajudandigam/agent-inspect/blob/main/docs/CODING-AGENT-LOOP.md) · [NO-EGRESS-POLICY](https://github.com/rajudandigam/agent-inspect/blob/main/docs/NO-EGRESS-POLICY.md) |
248
250
  | Safe sharing | [safe-sharing](https://agentinspect.vercel.app/docs/safe-sharing/) | [SAFE-TRACE-SHARING](https://github.com/rajudandigam/agent-inspect/blob/main/docs/SAFE-TRACE-SHARING.md) |
249
251
  | API / CLI | — | [API](docs/API.md) · [CLI](docs/CLI.md) (packed with npm) |
250
252
  | Full index | — | [docs/README.md](https://github.com/rajudandigam/agent-inspect/blob/main/docs/README.md) |
@@ -1,7 +1,7 @@
1
1
  # Live demo script (~4 minutes)
2
2
 
3
3
  **Audience:** TypeScript developers debugging AI agents.
4
- **Prereqs:** Node 20+. Consumers: `npm install agent-inspect@6.12.1`. Monorepo: `pnpm build` at repo root.
4
+ **Prereqs:** Node 20+. Consumers: `npm install agent-inspect@6.14.1`. Monorepo: `pnpm build` at repo root.
5
5
  **Website:** [https://agentinspect.vercel.app/](https://agentinspect.vercel.app/)
6
6
 
7
7
  **Blessed demo starters:**
@@ -87,7 +87,7 @@ npx agent-inspect diff .agent-inspect/<broken-run>.jsonl .agent-inspect/<fixed-r
87
87
  ## Alternative opener (zero clone)
88
88
 
89
89
  ```bash
90
- npm install agent-inspect@6.12.1
90
+ npm install agent-inspect@6.14.1
91
91
  npx agent-inspect init --yes
92
92
  node examples/agent-inspect-demo.mjs
93
93
  npx agent-inspect list --dir .agent-inspect
@@ -1,6 +1,6 @@
1
- # Golden path (stable launch candidate)
1
+ # Golden path
2
2
 
3
- The **6.12.0** stable launch candidate path. Be precise about what is automated today.
3
+ The recommended local evidence path for the current **6.14** release line.
4
4
 
5
5
  ## Automated packed path (CI)
6
6
 
@@ -10,31 +10,31 @@ From a packed `agent-inspect` install (`scripts/packed-quickstart-e2e.mjs` via `
10
10
  init --yes → demo → list → verify-safe <runId> --dir .agent-inspect
11
11
  ```
12
12
 
13
- This proves install, scaffold, one local run, and safety verification.
13
+ Semantic loop smoke (`scripts/packed-semantic-loop-e2e.mjs`) exercises check gate bundle → verify on a pilot-shaped fixture.
14
14
 
15
- ## Recommended developer path (manual)
15
+ ## Recommended developer path
16
16
 
17
17
  ```text
18
- init → demo → list → view/report → check → bundle --profile share → verify-safe
18
+ init → demo → list → view/report → check → bundle --profile share → verify-safe → bundle verify
19
19
  ```
20
20
 
21
- Use required positional targets (`<run-id>` or file path). See the root README five-minute path.
22
-
23
- ## Technical-but-not-fully-automated
24
-
25
- `scripts/golden-path-e2e.mjs` covers a subset (init → inspect → verify-safe → report). It does **not** yet automate the full roadmap chain:
21
+ LangGraph-oriented path:
26
22
 
27
23
  ```text
28
- broken contract fail suiteCI gate → fixdiff/cohort Studio review
24
+ init --framework langgraphcaptureTraceContract / gate → Evidence v2 optional MCP get_trace_facts
29
25
  ```
30
26
 
31
- ## External pilot step
27
+ Use required positional targets (`<run-id>` or file path). See the root README five-minute path.
28
+
29
+ ## Optional extensions
32
30
 
33
- Three external teams + design-partner Studio trial remain **pending**. Do not mark launch adoption complete without rows in [implementation/PRE-V7-ADOPTION-EVIDENCE.md](./implementation/PRE-V7-ADOPTION-EVIDENCE.md). Pilot kit: [PRE-V7-PILOT-KIT.md](./PRE-V7-PILOT-KIT.md).
31
+ - Suites / cohorts / CI gates [SUITES-COHORTS-GATES.md](./SUITES-COHORTS-GATES.md)
32
+ - Experimental Vitest/Jest matchers — [TRACE-CONTRACTS.md](./TRACE-CONTRACTS.md)
33
+ - Coding-agent MCP loop — [CODING-AGENT-LOOP.md](./CODING-AGENT-LOOP.md)
34
+ - Customer-owned Studio — [SELF-HOSTING.md](./SELF-HOSTING.md)
34
35
 
35
- ## Pending product gaps (honest)
36
+ ## Honest boundaries
36
37
 
37
- - TraceContract matchers / full contract depth
38
- - Studio HTML productization for some pages
39
- - Cross-platform consumer matrix evidence
40
- - External Collector/Phoenix verification
38
+ - Full broken→fix→Studio productization is not a single automated script.
39
+ - External partner retention attestation is tracked internally; do not invent adoption rows.
40
+ - Redaction is best-effort, not compliance certification.
@@ -1,6 +1,6 @@
1
1
  # Support levels
2
2
 
3
- Canonical maturity labels for AgentInspect public packages and major surfaces (6.12.x fixed release line).
3
+ Canonical maturity labels for AgentInspect public packages and major surfaces (6.14.x fixed release line).
4
4
 
5
5
  ## Definitions
6
6
 
@@ -32,7 +32,7 @@ Canonical maturity labels for AgentInspect public packages and major surfaces (6
32
32
  | Studio HTTP / GitHub ingest | Preview |
33
33
  | `@agent-inspect/mcp-server` | Preview |
34
34
  | Standards round-trip / Collector–Phoenix external proof | Preview |
35
- | Vitest/Jest TraceContract matchers | **Not shipped** |
35
+ | Vitest/Jest TraceContract matchers (`toPassTraceContract`, `toHaveRequiredTool`) | Experimental |
36
36
 
37
37
  Part of the fixed AgentInspect release line — see the npm badge for the current version.
38
38
 
@@ -9,17 +9,27 @@ Typed trajectory expectations over local AgentInspect traces via `defineTraceCon
9
9
  Contracts compile to deterministic check rules for common cases:
10
10
 
11
11
  - run status / completion / max duration
12
- - tool required / forbidden / allowed / maxCalls / order
12
+ - tool required / forbidden / allowed / maxCalls / order (`requiredTools` / `forbiddenTools` aliases)
13
13
  - LLM maxCalls / maxTotalTokens / allowedModels
14
14
  - evidence-bearing findings on failures
15
+ - evaluation over **logical** TraceFacts (raw events remain available)
15
16
 
16
- See [API.md](./API.md) and `packages/core/src/checks/contract.ts`.
17
+ ### Experimental Vitest / Jest matchers (shipped)
18
+
19
+ | Package | Export | Matchers |
20
+ | ------- | ------ | -------- |
21
+ | `@agent-inspect/vitest` | `agentInspectVitestMatchers` | `toPassTraceContract`, `toHaveRequiredTool` |
22
+ | `@agent-inspect/jest` | `agentInspectJestMatchers` | `toPassTraceContract`, `toHaveRequiredTool` |
23
+
24
+ These are **Experimental** — API names may evolve. There is no `expectTrace(...).toSatisfyTraceContract` helper.
25
+
26
+ See [API.md](./API.md), [TRACE-FACTS.md](./TRACE-FACTS.md), and `packages/core/src/checks/contract.ts`.
17
27
 
18
28
  ## What is not shipped (yet)
19
29
 
20
30
  Do **not** document these as available:
21
31
 
22
- - Vitest / Jest `expectTrace(...).toSatisfyTraceContract` matchers
32
+ - `expectTrace(...).toSatisfyTraceContract` (different API shape than the shipped matchers)
23
33
  - Full workflow handoff / approval / MCP protocol contract rules
24
34
  - Per-tool argument schema / regex validators on the contract surface
25
35
  - Every structure rule (orphan/cycle/depth) exposed on the contract API (many exist as standalone check rules)
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "agent-inspect",
3
- "version": "6.14.0",
3
+ "version": "6.14.1",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
- "description": "Debug, regression-test, and safely share TypeScript AI-agent behavior locally no account, no default upload, metadata-only by default",
6
+ "description": "Local evidence debugger and trajectory-test toolkit for TypeScript AI agentsexecution trees, TraceContract checks, Evidence v2, and read-only MCP",
7
7
  "repository": {
8
8
  "type": "git",
9
9
  "url": "git+https://github.com/rajudandigam/agent-inspect.git"
@@ -187,12 +187,20 @@
187
187
  "keywords": [
188
188
  "ai",
189
189
  "agents",
190
- "debugging",
191
190
  "typescript",
191
+ "debugging",
192
+ "trajectory-testing",
193
+ "langgraph",
194
+ "langchain",
195
+ "tracecontract",
196
+ "tracefacts",
197
+ "evidence",
198
+ "mcp",
192
199
  "llm",
193
200
  "devtools",
194
201
  "jsonl",
195
- "cli"
202
+ "cli",
203
+ "local-first"
196
204
  ],
197
205
  "publishConfig": {
198
206
  "access": "public"
@@ -231,7 +239,8 @@
231
239
  "docs:commands": "node scripts/validate-doc-commands.mjs",
232
240
  "docs:links": "node scripts/validate-doc-links.mjs",
233
241
  "public-truth:check": "node scripts/validate-public-truth.mjs",
234
- "docs:check": "pnpm run docs:commands && pnpm run docs:links && pnpm run public-truth:check",
242
+ "ai-assets:check": "node scripts/validate-ai-assets.mjs",
243
+ "docs:check": "pnpm run docs:commands && pnpm run docs:links && pnpm run public-truth:check && pnpm run ai-assets:check",
235
244
  "compat:smoke": "node scripts/compat-smoke.mjs",
236
245
  "fixtures:check": "node scripts/validate-fixtures.mjs",
237
246
  "recipes:check": "node scripts/validate-recipes.mjs",
@@ -12193,7 +12193,7 @@ var init_src = __esm({
12193
12193
  });
12194
12194
 
12195
12195
  // package.json
12196
- var version = "6.14.0";
12196
+ var version = "6.14.1";
12197
12197
 
12198
12198
  // packages/cli/src/list.ts
12199
12199
  init_advanced();