agent-inspect 6.6.1 → 6.7.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.7.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- dea3d91: Release tooling and public-truth patch: Changesets fixed group for all 18 public packages, linked-versions CI check, README/ROADMAP aligned to 6.7.x launch candidate, MCP server initialize version from package metadata.
|
|
8
|
+
|
|
9
|
+
## 6.7.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 5766d50: Semantic standards fixture validation and golden-path E2E script for launch candidate.
|
|
14
|
+
|
|
3
15
|
## 6.6.1
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -33,6 +33,14 @@ agent-inspect turns AI-agent runs into readable **local execution trees**: frame
|
|
|
33
33
|
|
|
34
34
|
**Default loop:** capture locally → inspect / report / diff → check in CI → redact before sharing.
|
|
35
35
|
|
|
36
|
+
## Three workflows
|
|
37
|
+
|
|
38
|
+
| Workflow | What you do | Start |
|
|
39
|
+
| -------- | ----------- | ----- |
|
|
40
|
+
| **Debug one run** | Capture → inspect → find first error | [60-second quickstart](#60-second-quickstart) |
|
|
41
|
+
| **Prevent one regression** | Typed contracts, suites, CI gates | [Checks](docs/API.md#checks) · [`suite`](docs/CLI.md) |
|
|
42
|
+
| **Share one safe artifact** | Redact → verify-safe → bundle | [Safe sharing](docs/SAFE-TRACE-SHARING.md) |
|
|
43
|
+
|
|
36
44
|
```bash
|
|
37
45
|
npm install agent-inspect
|
|
38
46
|
```
|
|
@@ -112,6 +120,8 @@ Blessed starters (no API keys): [examples/starters](https://github.com/rajudandi
|
|
|
112
120
|
| [`@agent-inspect/circuit`](packages/circuit/README.md) | Loop / retry / timeout analyzers |
|
|
113
121
|
| [`@agent-inspect/viewer`](packages/viewer/README.md) | Localhost viewer |
|
|
114
122
|
| [`@agent-inspect/adapter-sdk`](packages/adapter-sdk/README.md) | Third-party adapters |
|
|
123
|
+
| [`@agent-inspect/index-sqlite`](packages/index-sqlite/README.md) | Optional SQLite index |
|
|
124
|
+
| [`@agent-inspect/studio`](packages/studio/README.md) | Customer-owned Studio (Beta) |
|
|
115
125
|
| [`@agent-inspect/tui`](packages/tui/README.md) | Optional terminal UI |
|
|
116
126
|
| `agent-inspect-vscode` | VS Code extension (in-repo; not on Marketplace yet) |
|
|
117
127
|
|
|
@@ -153,7 +163,7 @@ See [Compare](https://agentinspect.vercel.app/docs/compare/).
|
|
|
153
163
|
|
|
154
164
|
## Install details
|
|
155
165
|
|
|
156
|
-
Current release: **6.
|
|
166
|
+
Current release: **6.7.1** (eighteen linked npm packages). Technical launch candidate; external pilot evidence pending. Persisted trace schema **1.0**. Requires **Node.js >= 20**.
|
|
157
167
|
|
|
158
168
|
```bash
|
|
159
169
|
pnpm add agent-inspect
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-inspect",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.7.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Trace, check, and safely share TypeScript AI-agent runs locally — no account, no upload, metadata-only by default",
|
|
@@ -212,10 +212,11 @@
|
|
|
212
212
|
"test:watch": "vitest",
|
|
213
213
|
"test:coverage": "vitest run --coverage",
|
|
214
214
|
"size": "size-limit --config size-limit.config.mjs",
|
|
215
|
-
"test:all": "pnpm run typecheck && pnpm run test && pnpm run build && pnpm run size",
|
|
216
|
-
"prepublish:checks": "pnpm run typecheck && pnpm run test && pnpm run test:coverage && pnpm run build && pnpm run fixtures:check && pnpm run recipes:check && pnpm run size && pnpm run pack:smoke",
|
|
215
|
+
"test:all": "pnpm run typecheck && pnpm run linked-versions:check && pnpm run test && pnpm run build && pnpm run size",
|
|
216
|
+
"prepublish:checks": "pnpm run typecheck && pnpm run test && pnpm run test:coverage && pnpm run build && pnpm run fixtures:check && pnpm run recipes:check && pnpm run size && pnpm run linked-versions:check && pnpm run pack:smoke",
|
|
217
217
|
"pack:dry-run": "pnpm run build && npm pack --dry-run",
|
|
218
218
|
"pack:smoke": "pnpm run build && node scripts/package-smoke.mjs && node scripts/packed-quickstart-e2e.mjs",
|
|
219
|
+
"linked-versions:check": "node scripts/check-linked-versions.mjs",
|
|
219
220
|
"compat:smoke": "node scripts/compat-smoke.mjs",
|
|
220
221
|
"fixtures:check": "node scripts/validate-fixtures.mjs",
|
|
221
222
|
"recipes:check": "node scripts/validate-recipes.mjs",
|
|
@@ -10788,7 +10788,7 @@ var init_src = __esm({
|
|
|
10788
10788
|
});
|
|
10789
10789
|
|
|
10790
10790
|
// package.json
|
|
10791
|
-
var version = "6.
|
|
10791
|
+
var version = "6.7.1";
|
|
10792
10792
|
|
|
10793
10793
|
// packages/cli/src/list.ts
|
|
10794
10794
|
init_advanced();
|