@agent-inspect/adapter-sdk 6.7.1 → 6.7.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.
Files changed (2) hide show
  1. package/README.md +17 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -2,6 +2,9 @@
2
2
 
3
3
  Author third-party AgentInspect framework adapters with conformance helpers.
4
4
 
5
+
6
+ **Support level:** Beta — see [SUPPORT-LEVELS.md](https://github.com/rajudandigam/agent-inspect/blob/main/docs/SUPPORT-LEVELS.md).
7
+
5
8
  ## When to use
6
9
 
7
10
  - Building a community or internal adapter package
@@ -34,6 +37,18 @@ See [`examples/adapter-sdk/minimal-source-adapter`](../../examples/adapter-sdk/m
34
37
  for a dependency-free fake framework source that registers adapter metadata,
35
38
  captures a local metadata-only trace, and runs `runAdapterConformance`.
36
39
 
40
+ ## Custom renderer example
41
+
42
+ See [`examples/adapter-sdk/custom-renderer`](../../examples/adapter-sdk/custom-renderer)
43
+ for a standalone `TraceRenderer` that renders a metadata-only markdown summary
44
+ from a persisted run tree and composes with `renderWithSafety`.
45
+
46
+ ## Custom transform example
47
+
48
+ See [`examples/adapter-sdk/custom-transform`](../../examples/adapter-sdk/custom-transform)
49
+ for a standalone `TraceTransform` that normalizes a vendor-specific event shape
50
+ into standard persisted-event conventions with warnings for unmapped input.
51
+
37
52
  ## Privacy
38
53
 
39
54
  - SDK helpers enforce local-first patterns; adapters must not upload by default
@@ -64,9 +79,10 @@ captures a local metadata-only trace, and runs `runAdapterConformance`.
64
79
  5. Run the privacy checklist and review exported artifacts before sharing
65
80
  6. Use the extension submission template before proposing registry inclusion
66
81
 
82
+
67
83
  ## Version
68
84
 
69
- `3.5.x`
85
+ Part of the fixed AgentInspect release line. See the npm badge / package manifest for the current version.
70
86
 
71
87
  ## License
72
88
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-inspect/adapter-sdk",
3
- "version": "6.7.1",
3
+ "version": "6.7.3",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "description": "Adapter authoring toolkit with conformance and privacy helpers",
@@ -34,7 +34,7 @@
34
34
  "dist"
35
35
  ],
36
36
  "dependencies": {
37
- "agent-inspect": "6.7.1"
37
+ "agent-inspect": "6.7.3"
38
38
  },
39
39
  "peerDependencies": {},
40
40
  "publishConfig": {