@agent-inspect/adapter-sdk 3.5.5 → 4.1.0
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/README.md +6 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -31,6 +31,9 @@ export const registration = createAdapterRegistration({
|
|
|
31
31
|
## Privacy
|
|
32
32
|
|
|
33
33
|
- SDK helpers enforce local-first patterns; adapters must not upload by default
|
|
34
|
+
- Use the Adapter SDK privacy checklist to document capture, persistence,
|
|
35
|
+
redaction, and export-review behavior before publishing or proposing registry
|
|
36
|
+
inclusion.
|
|
34
37
|
|
|
35
38
|
## API
|
|
36
39
|
|
|
@@ -42,6 +45,7 @@ export const registration = createAdapterRegistration({
|
|
|
42
45
|
## Docs
|
|
43
46
|
|
|
44
47
|
- [Adapter conformance](https://github.com/rajudandigam/agent-inspect/blob/main/docs/ADAPTER-CONFORMANCE.md)
|
|
48
|
+
- [Adapter SDK privacy checklist](https://github.com/rajudandigam/agent-inspect/blob/main/docs/ADAPTER-SDK-PRIVACY.md)
|
|
45
49
|
- [Adapters](https://github.com/rajudandigam/agent-inspect/blob/main/docs/ADAPTERS.md)
|
|
46
50
|
- [Extension submission template](https://github.com/rajudandigam/agent-inspect/blob/main/docs/community/EXTENSION-SUBMISSION-TEMPLATE.md)
|
|
47
51
|
|
|
@@ -51,7 +55,8 @@ export const registration = createAdapterRegistration({
|
|
|
51
55
|
2. Document peer dependencies
|
|
52
56
|
3. No network in adapter code path
|
|
53
57
|
4. Add conformance tests
|
|
54
|
-
5.
|
|
58
|
+
5. Run the privacy checklist and review exported artifacts before sharing
|
|
59
|
+
6. Use the extension submission template before proposing registry inclusion
|
|
55
60
|
|
|
56
61
|
## Version
|
|
57
62
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agent-inspect/adapter-sdk",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.1.0",
|
|
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": "
|
|
37
|
+
"agent-inspect": "4.1.0"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {},
|
|
40
40
|
"publishConfig": {
|