agent-inspect 6.7.4 → 6.7.5
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 +1 -1
- package/docs/CLI.md +4 -4
- package/docs/NESTJS.md +10 -0
- package/package.json +2 -2
- package/packages/cli/dist/{chunk-FVEQ7JFF.mjs → chunk-TO4VENHV.mjs} +3 -35
- package/packages/cli/dist/chunk-TO4VENHV.mjs.map +1 -0
- package/packages/cli/dist/index.cjs +155 -846
- package/packages/cli/dist/index.cjs.map +1 -1
- package/packages/cli/dist/index.mjs +114 -43
- package/packages/cli/dist/index.mjs.map +1 -1
- package/packages/cli/dist/src-Z5W27YCW.mjs +419 -0
- package/packages/cli/dist/src-Z5W27YCW.mjs.map +1 -0
- package/packages/cli/dist/chunk-FVEQ7JFF.mjs.map +0 -1
- package/packages/cli/dist/src-I5NA7BLK.mjs +0 -1160
- package/packages/cli/dist/src-I5NA7BLK.mjs.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 6.7.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 5c4197f: Consumer and DX reliability: doctor resolves packages via entry (not package.json exports); Studio/index bump better-sqlite3 to 12.11.1 with lazy native load; LangChain omits absolute traceDir from attrs; Jest diagnoses missing trace associations; CLI output/profile aliases; NestJS/LangGraph env-gated recipe.
|
|
8
|
+
|
|
3
9
|
## 6.7.4
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -131,7 +131,7 @@ Details: [Safe sharing](https://github.com/rajudandigam/agent-inspect/blob/main/
|
|
|
131
131
|
|
|
132
132
|
## Project status
|
|
133
133
|
|
|
134
|
-
**Current release:** **6.7.
|
|
134
|
+
**Current release:** **6.7.4** (eighteen linked npm packages). Technical launch candidate; external pilot evidence pending. Persisted schema **1.0**. Node.js **≥ 20**. **v7 not scheduled.**
|
|
135
135
|
|
|
136
136
|
[Roadmap](ROADMAP.md) · [Pilot kit](https://github.com/rajudandigam/agent-inspect/blob/main/docs/PRE-V7-PILOT-KIT.md) · [Changelog](CHANGELOG.md)
|
|
137
137
|
|
package/docs/CLI.md
CHANGED
|
@@ -218,13 +218,13 @@ Options:
|
|
|
218
218
|
|
|
219
219
|
- `--dir <path>`
|
|
220
220
|
- `--format <format>`
|
|
221
|
-
- `-o, --output <path>`: write file
|
|
221
|
+
- `-o, --output <path>`: write file (canonical; `--out` is a legacy alias)
|
|
222
222
|
- `--json`: JSON wrapper output (includes content if not writing to file)
|
|
223
223
|
- `--validate`: validate exported payload shape
|
|
224
224
|
- `--include-attributes`: include bounded attributes (review before sharing)
|
|
225
225
|
- `--no-metadata`: omit summary/metadata sections
|
|
226
226
|
- `--no-errors`: omit error sections
|
|
227
|
-
- `--redaction-profile <profile>`: redaction profile for exported copies — `local` (default), `share`, or `strict`. Key-based safety only; review exports before sharing.
|
|
227
|
+
- `--redaction-profile <profile>`: redaction profile for exported copies — `local` (default), `share`, or `strict`. Key-based safety only; review exports before sharing. (`--profile` is a legacy alias.)
|
|
228
228
|
|
|
229
229
|
Examples:
|
|
230
230
|
|
|
@@ -879,8 +879,8 @@ Options:
|
|
|
879
879
|
- `--dir <path>` — trace directory
|
|
880
880
|
- `--session <session-id>` — bundle all runs in a session
|
|
881
881
|
- `--since <duration>` — bundle runs with activity since a window (e.g. `24h`, `7d`)
|
|
882
|
-
- `--profile <profile>` — `local`, `share` (default), or `strict` redaction for exported copies
|
|
883
|
-
- `--out <path>` — output directory; `.zip` suffix is stripped (folder-first)
|
|
882
|
+
- `--profile <profile>` — `local`, `share` (default), or `strict` redaction for exported copies (`--redaction-profile` is the canonical alias)
|
|
883
|
+
- `--out <path>` — output directory; `.zip` suffix is stripped (folder-first; `--output` is the canonical alias)
|
|
884
884
|
- `--allow-unsafe` — write bundle even when verify-safe reports UNSAFE
|
|
885
885
|
- `--json` — print deterministic JSON manifest
|
|
886
886
|
|
package/docs/NESTJS.md
CHANGED
|
@@ -40,7 +40,17 @@ await createFixtureRunner({
|
|
|
40
40
|
|
|
41
41
|
If you only need log ingestion, see [examples/recipes/nestjs-json-logging](../examples/recipes/nestjs-json-logging/).
|
|
42
42
|
|
|
43
|
+
## LangGraph agent callbacks (env-gated)
|
|
44
|
+
|
|
45
|
+
For Nest services that invoke LangGraph/LangChain with a `callbacks` array, prefer the
|
|
46
|
+
blessed recipe [examples/recipes/nestjs-langgraph-local](../examples/recipes/nestjs-langgraph-local/):
|
|
47
|
+
|
|
48
|
+
- `AGENT_INSPECT` gate + lazy dynamic import (no adapter load when disabled)
|
|
49
|
+
- metadata-only capture and workspace-relative `traceDir`
|
|
50
|
+
- no production-path change when the helper returns `[]`
|
|
51
|
+
|
|
43
52
|
## Related
|
|
44
53
|
|
|
45
54
|
- [`@agent-inspect/harness`](../packages/harness/README.md)
|
|
46
55
|
- [examples/starters/harness-nestjs](../examples/starters/harness-nestjs/)
|
|
56
|
+
- [examples/recipes/nestjs-langgraph-local](../examples/recipes/nestjs-langgraph-local/)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-inspect",
|
|
3
|
-
"version": "6.7.
|
|
3
|
+
"version": "6.7.5",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Debug, regression-test, and safely share TypeScript AI-agent behavior locally — no account, no default upload, metadata-only by default",
|
|
@@ -223,7 +223,7 @@
|
|
|
223
223
|
"test:watch": "vitest",
|
|
224
224
|
"test:coverage": "vitest run --coverage",
|
|
225
225
|
"size": "size-limit --config size-limit.config.mjs",
|
|
226
|
-
"test:all": "pnpm run typecheck && pnpm run linked-versions:check && pnpm run
|
|
226
|
+
"test:all": "pnpm run typecheck && pnpm run linked-versions:check && pnpm run build && pnpm run test && pnpm run size",
|
|
227
227
|
"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",
|
|
228
228
|
"pack:dry-run": "pnpm run build && npm pack --dry-run",
|
|
229
229
|
"pack:smoke": "pnpm run build && node scripts/package-smoke.mjs && node scripts/packed-quickstart-e2e.mjs",
|
|
@@ -9,38 +9,6 @@ import { createReadStream } from 'fs';
|
|
|
9
9
|
import { createInterface } from 'readline';
|
|
10
10
|
import { pathToFileURL } from 'url';
|
|
11
11
|
|
|
12
|
-
var __create = Object.create;
|
|
13
|
-
var __defProp = Object.defineProperty;
|
|
14
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
15
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
16
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
17
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
18
|
-
var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
|
|
19
|
-
get: (a, b) => (typeof require !== "undefined" ? require : a)[b]
|
|
20
|
-
}) : x)(function(x) {
|
|
21
|
-
if (typeof require !== "undefined") return require.apply(this, arguments);
|
|
22
|
-
throw Error('Dynamic require of "' + x + '" is not supported');
|
|
23
|
-
});
|
|
24
|
-
var __commonJS = (cb, mod) => function __require2() {
|
|
25
|
-
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
26
|
-
};
|
|
27
|
-
var __copyProps = (to, from, except, desc) => {
|
|
28
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
29
|
-
for (let key of __getOwnPropNames(from))
|
|
30
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
31
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
32
|
-
}
|
|
33
|
-
return to;
|
|
34
|
-
};
|
|
35
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
36
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
37
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
38
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
39
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
40
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
41
|
-
mod
|
|
42
|
-
));
|
|
43
|
-
|
|
44
12
|
// packages/core/src/types/persisted-inspect-event.ts
|
|
45
13
|
var INSPECT_KINDS = [
|
|
46
14
|
"RUN",
|
|
@@ -9086,6 +9054,6 @@ function renderGateReport(result, options = {}) {
|
|
|
9086
9054
|
return renderGateSummaryMarkdown(result);
|
|
9087
9055
|
}
|
|
9088
9056
|
|
|
9089
|
-
export { COHORT_METRIC_IDS, DEFAULT_SUITE_ARTIFACTS_DIR, Redactor, TraceDirectory, TraceReadError, TreeBuilder,
|
|
9090
|
-
//# sourceMappingURL=chunk-
|
|
9091
|
-
//# sourceMappingURL=chunk-
|
|
9057
|
+
export { COHORT_METRIC_IDS, DEFAULT_SUITE_ARTIFACTS_DIR, Redactor, TraceDirectory, TraceReadError, TreeBuilder, aggregateBundleSafeStatus, aggregateSessionCheckResults, analyzeCohort, applyProfileMetadataCaps, assertBundlePathContained, buildActivitySummary, buildBundleMetadata, buildBundleSummaryMarkdown, buildLocalExplanation, buildPlaceholderArtifact, buildRunSummary, buildRunTimeline, buildRunWhatSummary, buildSessionIndex, buildTraceStats, bundleFailsOnSafety, bundleRunAssetRelativePath, compactAttributes3 as compactAttributes, createBaselineRegressionRule, createLlmUsageRule, createMaxStepDurationRule, createObservedOutcomeRule, createRequireCompletedRule, createRunDepthRule, createRunDurationRule, createRunStatusRule, createSafetyOversizedAttributeRule, createSafetyRawContentRule, createSafetyRedactionRule, createSafetySecretPatternRule, createStallDetectionRule, createStructureCycleRule, createStructureOrphanRule, createStructureParallelWidthRule, createStructureRelationshipRule, createToolUsageRule, defaultBundleOutputPath, defaultSuiteConfigTemplate, enrichSessionRunRecord, escapeHtml, escapeMarkdown, extractMetadata, extractOutcomesFromTraceEvents, filterMetasBySessionScope, filterTraces, flattenTree, formatDuration2 as formatDuration, formatTimestamp, gateHasThresholds, getIndent, getTraceFilePath, isAgentInspectTrace, isPersistedInspectEvent, loadSessionRunRecords, loadSuiteConfig, loadTraceMetadataList, nanoid, normalizeBundleOutputPath, openTrace, parseCohortMetricList, parseDuration, parseDurationFilter, parseGateList, parseTraceJsonl, persistedInspectEventsToTraceEvents, renderActivitySummaryHuman, renderCohortReport, renderErrorLine, renderGateReport, renderObservedOutcomesHtml, renderObservedOutcomesMarkdown, renderRunWhat, renderStepLine, renderSuiteReport, renderTimeline, renderTraceStats, resolveBundleRunIds, resolveRedactionProfile, resolveSuiteTemplate, resolveTraceDir, runGate, runSuite, runTraceChecks, safeString, sanitizeBundleRunId, searchTraces, source_default, stableJson, summarizeObservedOutcomes, traceEventToPersistedInspectEvent, truncateName, truncateStringForProfile, validateEvent, validateSuiteConfig, zeroKinds };
|
|
9058
|
+
//# sourceMappingURL=chunk-TO4VENHV.mjs.map
|
|
9059
|
+
//# sourceMappingURL=chunk-TO4VENHV.mjs.map
|