agent-inspect 3.5.1 → 3.5.2
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
package/docs/SCREENSHOTS.md
CHANGED
|
@@ -1,13 +1,45 @@
|
|
|
1
1
|
# Visual demos
|
|
2
2
|
|
|
3
|
-
Curated terminal recordings for AgentInspect **
|
|
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
|
-
**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. Static SVG diagrams in `docs/assets/` are included in the root npm package.
|
|
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
|
+
## 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
|
+
## Adoption demo (v3.5.2)
|
|
30
|
+
|
|
31
|
+
Deterministic broken-agent flow — recommended for live demos and Show HN rehearsal.
|
|
32
|
+
|
|
33
|
+
**Run:**
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
cd examples/starters/broken-agent-debugging
|
|
37
|
+
pnpm install && pnpm start
|
|
38
|
+
npx agent-inspect report <run-id> --dir .agent-inspect
|
|
39
|
+
npx agent-inspect redact .agent-inspect/*.jsonl --profile share -o safe.jsonl
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
**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
43
|
|
|
12
44
|
---
|
|
13
45
|
|
package/package.json
CHANGED
|
@@ -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.2";
|
|
29
29
|
|
|
30
30
|
// packages/core/src/correlation-metadata.ts
|
|
31
31
|
var TRACE_CORRELATION_KEYS = [
|