agent-inspect 3.5.2 → 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 +6 -0
- package/README.md +4 -6
- package/SECURITY.md +1 -1
- package/docs/ADAPTERS.md +1 -1
- package/docs/FIRST-TRACE-IN-5-MINUTES.md +6 -0
- package/docs/GETTING-STARTED.md +1 -1
- package/docs/MIGRATION.md +1 -1
- package/docs/SCREENSHOTS.md +1 -15
- package/docs/USE-CASES.md +2 -2
- package/package.json +2 -6
- package/packages/cli/dist/index.cjs +1 -1
- package/packages/cli/dist/index.cjs.map +1 -1
- package/packages/cli/dist/index.mjs +1 -1
- package/packages/cli/dist/index.mjs.map +1 -1
- package/docs/ONE-PAGE-QUICKSTART.md +0 -15
- package/docs/assets/agent-inspect-loop.svg +0 -22
- package/docs/assets/package-map.svg +0 -31
- package/docs/assets/trace-check-redact.svg +0 -19
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -7,8 +7,6 @@ No account · no upload · no hosted dashboard · metadata-only by default
|
|
|
7
7
|
[](https://www.npmjs.com/package/agent-inspect)
|
|
8
8
|
[](LICENSE)
|
|
9
9
|
|
|
10
|
-

|
|
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 | [
|
|
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
|
-
| [
|
|
101
|
-
| [
|
|
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.
|
|
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
|
|
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/).
|
|
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
|
package/docs/GETTING-STARTED.md
CHANGED
|
@@ -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)
|
|
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
|
|
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
|
package/docs/SCREENSHOTS.md
CHANGED
|
@@ -4,7 +4,7 @@ Curated terminal recordings and static diagrams for AgentInspect **3.5.x**. They
|
|
|
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
|
-
**npm note:** GIFs live in `docs/assets/demos/` for GitHub documentation. They are **not** shipped in the `agent-inspect` npm tarball.
|
|
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
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)
|
|
@@ -12,20 +12,6 @@ Curated terminal recordings and static diagrams for AgentInspect **3.5.x**. They
|
|
|
12
12
|
|
|
13
13
|
---
|
|
14
14
|
|
|
15
|
-
## Product diagrams (static)
|
|
16
|
-
|
|
17
|
-
No terminal recording required — safe for README and docs.
|
|
18
|
-
|
|
19
|
-
| Diagram | Purpose |
|
|
20
|
-
| ------- | ------- |
|
|
21
|
-
| [agent-inspect-loop.svg](assets/agent-inspect-loop.svg) | Trace → check → redact → share (local only) |
|
|
22
|
-
| [trace-check-redact.svg](assets/trace-check-redact.svg) | Workflow from JSONL to share-safe artifact |
|
|
23
|
-
| [package-map.svg](assets/package-map.svg) | Core + adapter + quality + safety packages |
|
|
24
|
-
|
|
25
|
-
Embedded in root [README](../README.md). Workflow: [FIRST-TRACE-IN-5-MINUTES.md](FIRST-TRACE-IN-5-MINUTES.md).
|
|
26
|
-
|
|
27
|
-
---
|
|
28
|
-
|
|
29
15
|
## Adoption demo (v3.5.2)
|
|
30
16
|
|
|
31
17
|
Deterministic broken-agent flow — recommended for live demos and Show HN rehearsal.
|
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: [
|
|
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.
|
|
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/
|
|
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.
|
|
28
|
+
var version = "3.5.3";
|
|
29
29
|
|
|
30
30
|
// packages/core/src/correlation-metadata.ts
|
|
31
31
|
var TRACE_CORRELATION_KEYS = [
|