agent-inspect 6.17.0 → 6.17.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,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 6.17.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 1904f50: Add public-safe LangGraph case study, use-case pages, demo Evidence samples (`pnpm demo:generate` / `demo:verify`), and fix `bundle verify --json` under the parent bundle command.
|
|
8
|
+
|
|
3
9
|
## 6.17.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -157,7 +157,7 @@ Details: [Safe sharing](https://github.com/rajudandigam/agent-inspect/blob/main/
|
|
|
157
157
|
|
|
158
158
|
## Project status
|
|
159
159
|
|
|
160
|
-
**Current release:** **6.17.
|
|
160
|
+
**Current release:** **6.17.1** · schema **1.0** · Node.js **≥ 20** · **MIT** · **actively maintained** (eighteen linked npm packages).
|
|
161
161
|
|
|
162
162
|
The 6.16 line is actively maintained for correctness, compatibility, documentation, security, and framework evolution.
|
|
163
163
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-inspect",
|
|
3
|
-
"version": "6.17.
|
|
3
|
+
"version": "6.17.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Local evidence debugger and trajectory-test toolkit for TypeScript AI agents — execution trees, TraceContract checks, Evidence v2, and read-only MCP",
|
|
@@ -240,8 +240,10 @@
|
|
|
240
240
|
"docs:links": "node scripts/validate-doc-links.mjs",
|
|
241
241
|
"public-truth:check": "node scripts/validate-public-truth.mjs",
|
|
242
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 && pnpm run repo:health",
|
|
243
|
+
"docs:check": "pnpm run docs:commands && pnpm run docs:links && pnpm run public-truth:check && pnpm run ai-assets:check && pnpm run repo:health && pnpm run demo:verify",
|
|
244
244
|
"repo:health": "node scripts/validate-repo-health.mjs",
|
|
245
|
+
"demo:generate": "node scripts/demo-generate.mjs",
|
|
246
|
+
"demo:verify": "node scripts/demo-verify.mjs",
|
|
245
247
|
"compat:smoke": "node scripts/compat-smoke.mjs",
|
|
246
248
|
"fixtures:check": "node scripts/validate-fixtures.mjs",
|
|
247
249
|
"recipes:check": "node scripts/validate-recipes.mjs",
|
|
@@ -12486,7 +12486,7 @@ var init_src = __esm({
|
|
|
12486
12486
|
});
|
|
12487
12487
|
|
|
12488
12488
|
// package.json
|
|
12489
|
-
var version = "6.17.
|
|
12489
|
+
var version = "6.17.1";
|
|
12490
12490
|
|
|
12491
12491
|
// packages/cli/src/list.ts
|
|
12492
12492
|
init_advanced();
|
|
@@ -24834,11 +24834,17 @@ function createCliProgram() {
|
|
|
24834
24834
|
});
|
|
24835
24835
|
bundleCmd.command("verify").description("Verify Evidence v2 integrity (manifest, hashes, presence)").argument("<path>", "evidence/bundle directory containing evidence.json").addOption(
|
|
24836
24836
|
new commander.Option("--unexpected <mode>", "policy for files not listed in the manifest").choices(["fail", "warn", "ignore"]).default("fail")
|
|
24837
|
-
).option("--json", "print deterministic JSON verify result").action((targetPath, opts) => {
|
|
24838
|
-
|
|
24837
|
+
).option("--json", "print deterministic JSON verify result").action((targetPath, opts, command) => {
|
|
24838
|
+
const merged = {
|
|
24839
|
+
...opts,
|
|
24840
|
+
...command.optsWithGlobals?.() ?? {}
|
|
24841
|
+
};
|
|
24842
|
+
const json = opts.json === true || merged.json === true || process.argv.includes("--json");
|
|
24843
|
+
runCommand(() => bundleVerifyCommand(targetPath, { ...opts, json }));
|
|
24839
24844
|
});
|
|
24840
24845
|
bundleCmd.command("open").description("Verify then open local Evidence HTML in the platform browser (no network)").argument("<path>", "evidence/bundle directory or evidence.html path").option("--skip-verify", "skip integrity verify before open (not recommended)").option("--json", "print deterministic JSON open result").action((targetPath, opts) => {
|
|
24841
|
-
|
|
24846
|
+
const json = opts.json === true || process.argv.includes("--json");
|
|
24847
|
+
runCommand(() => bundleOpenCommand(targetPath, { ...opts, json }));
|
|
24842
24848
|
});
|
|
24843
24849
|
program.command("ci-summary").description("Summarize local reporter artifact manifests for CI").argument("<manifest...>", "reporter artifact manifest JSON files").option("-o, --output <path>", "write Markdown summary to a local file").option("--github-summary <path>", "append Markdown summary to this local file, e.g. GITHUB_STEP_SUMMARY").option("--json", "print deterministic JSON summary").action((manifest, opts) => {
|
|
24844
24850
|
runCommand(() => ciSummaryCommand(manifest, opts));
|