agent-inspect 3.5.1 → 3.5.3

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
+ ## 3.5.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 05546b5: v3.5.3 docs hygiene: lean docs index, archive stale files, remove unavailable hero SVG from npm package files. Docs-only.
8
+
9
+ ## 3.5.2
10
+
11
+ ### Patch Changes
12
+
13
+ - 14d4ccc: v3.5.2 adoption demo kit: DEMO-SCRIPT, PITCH, Show HN draft, video script, SCREENSHOTS diagram index. Docs-only.
14
+
3
15
  ## 3.5.1
4
16
 
5
17
  ### Patch Changes
package/README.md CHANGED
@@ -7,8 +7,6 @@ No account · no upload · no hosted dashboard · metadata-only by default
7
7
  [![npm version](https://img.shields.io/npm/v/agent-inspect.svg)](https://www.npmjs.com/package/agent-inspect)
8
8
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
9
9
 
10
- ![AgentInspect loop: trace → check → redact](docs/assets/agent-inspect-loop.svg)
11
-
12
10
  ```bash
13
11
  npm install agent-inspect
14
12
  ```
@@ -56,7 +54,7 @@ Blessed starters (no API keys): [examples/starters](https://github.com/rajudandi
56
54
  | Scenario | Doc |
57
55
  | -------- | --- |
58
56
  | Local debugging | [USE-CASES.md](docs/USE-CASES.md) |
59
- | CI failure review | [REAL-WORLD-SCENARIOS.md](docs/REAL-WORLD-SCENARIOS.md) |
57
+ | CI failure review | [USE-CASES.md](docs/USE-CASES.md) § CI trace artifact |
60
58
  | Team adoption | [TEAM-WORKFLOWS.md](docs/TEAM-WORKFLOWS.md) · [Design partners](docs/DESIGN-PARTNER-GUIDE.md) |
61
59
 
62
60
  ## Package map
@@ -97,8 +95,8 @@ Details: [Safe trace sharing](docs/SAFE-TRACE-SHARING.md) · [Security](SECURITY
97
95
  | Start | Reference | Adoption |
98
96
  | ----- | --------- | -------- |
99
97
  | [Getting started](docs/GETTING-STARTED.md) | [API](docs/API.md) | [Adoption](docs/ADOPTION.md) |
100
- | [One-page quickstart](docs/ONE-PAGE-QUICKSTART.md) | [CLI](docs/CLI.md) | [Demo script](docs/DEMO-SCRIPT.md) |
101
- | [First trace in 5 min](docs/FIRST-TRACE-IN-5-MINUTES.md) | [Adapters](docs/ADAPTERS.md) | [Compare](docs/COMPARE.md) |
98
+ | [First trace in 5 min](docs/FIRST-TRACE-IN-5-MINUTES.md) | [CLI](docs/CLI.md) | [Demo script](docs/DEMO-SCRIPT.md) |
99
+ | [Use cases](docs/USE-CASES.md) | [Adapters](docs/ADAPTERS.md) | [Compare](docs/COMPARE.md) |
102
100
  | [Examples](https://github.com/rajudandigam/agent-inspect/tree/main/examples) | [Performance](docs/PERFORMANCE.md) | [Pitch](docs/PITCH.md) |
103
101
 
104
102
  Full index: [docs/README.md](docs/README.md) · Visual demos: [SCREENSHOTS.md](docs/SCREENSHOTS.md)
@@ -113,7 +111,7 @@ Full index: [docs/README.md](docs/README.md) · Visual demos: [SCREENSHOTS.md](d
113
111
 
114
112
  ## Install details
115
113
 
116
- Current release: **3.5.0** (sixteen linked npm packages). Persisted trace schema **1.0**.
114
+ Current release: **3.5.2** (sixteen linked npm packages). Persisted trace schema **1.0**.
117
115
 
118
116
  ```bash
119
117
  pnpm add agent-inspect
package/SECURITY.md CHANGED
@@ -93,5 +93,5 @@ For a practical pre-share workflow, see `docs/SAFE-TRACE-SHARING.md`. For schema
93
93
  - Does not invoke user agent tools or mutate traces.
94
94
  - Configure via `AGENT_INSPECT_TRACE_DIR` and `AGENT_INSPECT_MCP_REDACTION_PROFILE` when documented.
95
95
 
96
- IDE marketplace extension is **deferred** — see [docs/IDE-SURFACES.md](docs/IDE-SURFACES.md).
96
+ IDE extension: see [VSCODE.md](docs/VSCODE.md) (in-repo; Marketplace deferred).
97
97
 
package/docs/ADAPTERS.md CHANGED
@@ -494,7 +494,7 @@ import { runReadOnlyMcpServer } from "@agent-inspect/mcp-server";
494
494
  await runReadOnlyMcpServer({ redactionProfile: "share" });
495
495
  ```
496
496
 
497
- Recipe: [examples/recipes/read-only-mcp-server](../examples/recipes/read-only-mcp-server/). IDE extension deferred: [IDE-SURFACES.md](./IDE-SURFACES.md).
497
+ Recipe: [examples/recipes/read-only-mcp-server](../examples/recipes/read-only-mcp-server/). VS Code: [VSCODE.md](./VSCODE.md).
498
498
 
499
499
  ---
500
500
 
@@ -2,6 +2,12 @@
2
2
 
3
3
  Goal: install → one trace → one check → one share-safe artifact.
4
4
 
5
+ ```bash
6
+ npm install agent-inspect && npx agent-inspect init --yes && node examples/agent-inspect-demo.mjs
7
+ npx agent-inspect list --dir .agent-inspect && npx agent-inspect report <run-id> --dir .agent-inspect
8
+ npx agent-inspect check .agent-inspect/*.jsonl && npx agent-inspect verify-safe --dir .agent-inspect
9
+ ```
10
+
5
11
  ## Minutes 0–1: Install
6
12
 
7
13
  ```bash
@@ -12,7 +12,7 @@ pnpm add agent-inspect
12
12
 
13
13
  ### Quick bootstrap (v3.1+)
14
14
 
15
- See also [FIRST-TRACE-IN-5-MINUTES.md](./FIRST-TRACE-IN-5-MINUTES.md) and [ONE-PAGE-QUICKSTART.md](./ONE-PAGE-QUICKSTART.md).
15
+ See also [FIRST-TRACE-IN-5-MINUTES.md](./FIRST-TRACE-IN-5-MINUTES.md).
16
16
 
17
17
  ```bash
18
18
  npx agent-inspect init --yes
package/docs/MIGRATION.md CHANGED
@@ -73,7 +73,7 @@ v3.0 is a **linked npm major** for the public package family. **Persisted trace
73
73
  ### What changes
74
74
 
75
75
  - New optional package [`@agent-inspect/adapter-sdk`](https://www.npmjs.com/package/@agent-inspect/adapter-sdk) for third-party adapter authoring (registration, conformance, privacy checklist, transform/renderer/indexer contracts).
76
- - Community extension process documented in [COMMUNITY-EXTENSION-REGISTRY.md](./COMMUNITY-EXTENSION-REGISTRY.md).
76
+ - Community extensions: [ADAPTER-CONFORMANCE.md](./ADAPTER-CONFORMANCE.md) and [`@agent-inspect/adapter-sdk`](../packages/adapter-sdk/README.md).
77
77
  - Extension interfaces are versioned in `@agent-inspect/adapter-sdk@3.x`; breaking extension API changes ship there, not in silent root patches.
78
78
 
79
79
  ### What stays the same
@@ -1,13 +1,31 @@
1
1
  # Visual demos
2
2
 
3
- Curated terminal recordings for AgentInspect **1.4.0**. They show what the local trace workbench captures and how to inspect it — without a hosted dashboard or vendor upload.
3
+ Curated terminal recordings and static diagrams for AgentInspect **3.5.x**. They show what the local trace workbench captures and how to inspect it — without a hosted dashboard or vendor upload.
4
4
 
5
5
  **Synthetic output only:** demos use committed [fixtures](../fixtures/README.md), [examples](../examples/README.md), and recipes. No external LLM calls or API keys.
6
6
 
7
7
  **npm note:** GIFs live in `docs/assets/demos/` for GitHub documentation. They are **not** shipped in the `agent-inspect` npm tarball.
8
8
 
9
- **Re-record guide:** [assets/demos/RECORDING.md](assets/demos/RECORDING.md)
9
+ **Re-record guide:** [assets/demos/RECORDING.md](assets/demos/RECORDING.md)
10
10
  **Maintainer audit:** [implementation/VISUAL-DEMO-AUDIT.md](implementation/VISUAL-DEMO-AUDIT.md)
11
+ **Live demo script:** [DEMO-SCRIPT.md](DEMO-SCRIPT.md) (uses [broken-agent-debugging](../examples/starters/broken-agent-debugging/) starter)
12
+
13
+ ---
14
+
15
+ ## Adoption demo (v3.5.2)
16
+
17
+ Deterministic broken-agent flow — recommended for live demos and Show HN rehearsal.
18
+
19
+ **Run:**
20
+
21
+ ```bash
22
+ cd examples/starters/broken-agent-debugging
23
+ pnpm install && pnpm start
24
+ npx agent-inspect report <run-id> --dir .agent-inspect
25
+ npx agent-inspect redact .agent-inspect/*.jsonl --profile share -o safe.jsonl
26
+ ```
27
+
28
+ **GIF status:** re-record optional; use [error-handling.gif](assets/demos/error-handling.gif) as b-roll until a dedicated broken-agent GIF exists.
11
29
 
12
30
  ---
13
31
 
package/docs/USE-CASES.md CHANGED
@@ -19,7 +19,7 @@ npx agent-inspect report <run-id> --dir .agent-inspect
19
19
 
20
20
  **Safety:** Metadata-only default. Redact before sharing: `npx agent-inspect redact --profile share`.
21
21
 
22
- **Starter:** [custom-observe](../examples/starters/custom-observe/README.md)
22
+ **Starter:** [broken-agent-debugging](../examples/starters/broken-agent-debugging/README.md) (intentional failure) or [custom-observe](../examples/starters/custom-observe/README.md)
23
23
 
24
24
  **Not:** Live model replay or hosted trace UI.
25
25
 
@@ -113,4 +113,4 @@ npx agent-inspect check .agent-inspect/*.jsonl --require-completed
113
113
 
114
114
  ---
115
115
 
116
- See also: [Real-world scenarios](./REAL-WORLD-SCENARIOS.md) · [Team workflows](./TEAM-WORKFLOWS.md)
116
+ See also: [Team workflows](./TEAM-WORKFLOWS.md)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-inspect",
3
- "version": "3.5.1",
3
+ "version": "3.5.3",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "description": "Local-first execution-tree debugger for TypeScript AI agents",
@@ -148,11 +148,7 @@
148
148
  "docs/CI-ARTIFACTS.md",
149
149
  "docs/PERFORMANCE.md",
150
150
  "docs/FIRST-TRACE-IN-5-MINUTES.md",
151
- "docs/ONE-PAGE-QUICKSTART.md",
152
- "docs/USE-CASES.md",
153
- "docs/assets/agent-inspect-loop.svg",
154
- "docs/assets/trace-check-redact.svg",
155
- "docs/assets/package-map.svg"
151
+ "docs/USE-CASES.md"
156
152
  ],
157
153
  "sideEffects": false,
158
154
  "keywords": [
@@ -25,7 +25,7 @@ var process3__default = /*#__PURE__*/_interopDefault(process3);
25
25
  var tty__default = /*#__PURE__*/_interopDefault(tty);
26
26
 
27
27
  // package.json
28
- var version = "3.5.1";
28
+ var version = "3.5.3";
29
29
 
30
30
  // packages/core/src/correlation-metadata.ts
31
31
  var TRACE_CORRELATION_KEYS = [