@agentvault/agentvault 0.13.7 → 0.13.8
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/dist/cli.js +11 -9
- package/dist/cli.js.map +2 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.js +47 -42
- package/dist/index.js.map +2 -2
- package/dist/openclaw-plugin.d.ts.map +1 -1
- package/dist/state.d.ts.map +1 -1
- package/openclaw.plugin.json +51 -4
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"openclaw-plugin.d.ts","sourceRoot":"","sources":["../src/openclaw-plugin.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAGH,OAAO,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAC7C,OAAO,EAAE,cAAc,EAAE,cAAc,EAAwB,MAAM,qBAAqB,CAAC;AAQ3F,wBAAgB,YAAY,CAAC,OAAO,EAAE,GAAG,GAAG,IAAI,CAE/C;AAED,wBAAgB,gBAAgB,CAAC,SAAS,SAAY,GAAG,aAAa,GAAG,SAAS,CAEjF;AAMD,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;4BAkBC,GAAG;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"openclaw-plugin.d.ts","sourceRoot":"","sources":["../src/openclaw-plugin.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAGH,OAAO,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAC7C,OAAO,EAAE,cAAc,EAAE,cAAc,EAAwB,MAAM,qBAAqB,CAAC;AAQ3F,wBAAgB,YAAY,CAAC,OAAO,EAAE,GAAG,GAAG,IAAI,CAE/C;AAED,wBAAgB,gBAAgB,CAAC,SAAS,SAAY,GAAG,aAAa,GAAG,SAAS,CAEjF;AAMD,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;4BAkBC,GAAG;;;;;;;;;;;mDA8F1B;YACD,IAAI,EAAE,MAAM,CAAC;YACb,SAAS,CAAC,EAAE,MAAM,CAAC;YACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;SACnB,KAAG,OAAO,CAAC;YAAE,EAAE,EAAE,OAAO,CAAC;YAAC,KAAK,CAAC,EAAE,MAAM,CAAA;SAAE,CAAC;;CAc/C,CAAC"}
|
package/dist/state.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"state.d.ts","sourceRoot":"","sources":["../src/state.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"state.d.ts","sourceRoot":"","sources":["../src/state.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;AASjD,wBAAsB,SAAS,CAC7B,OAAO,EAAE,MAAM,EACf,KAAK,EAAE,cAAc,GACpB,OAAO,CAAC,IAAI,CAAC,CAWf;AAED;;;;;;;GAOG;AACH,wBAAsB,SAAS,CAC7B,OAAO,EAAE,MAAM,GAEd,OAAO,CAAC,GAAG,GAAG,IAAI,CAAC,CAuBrB;AAED;;GAEG;AACH,wBAAsB,YAAY,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAepE;AAED;;;GAGG;AACH,wBAAsB,WAAW,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAWhE;AAED;;;GAGG;AACH,wBAAsB,YAAY,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAwBpE;AAED,wBAAsB,UAAU,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAS/D"}
|
package/openclaw.plugin.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "agentvault",
|
|
3
3
|
"name": "AgentVault",
|
|
4
4
|
"description": "End-to-end encrypted, zero-knowledge messaging between AI agent owners and their agents.",
|
|
5
|
-
"version": "0.13.
|
|
5
|
+
"version": "0.13.8",
|
|
6
6
|
"channels": ["agentvault"],
|
|
7
7
|
"outbound": {
|
|
8
8
|
"deliveryMode": "direct",
|
|
@@ -21,8 +21,55 @@
|
|
|
21
21
|
},
|
|
22
22
|
"configSchema": {
|
|
23
23
|
"type": "object",
|
|
24
|
-
"additionalProperties":
|
|
25
|
-
"properties": {
|
|
24
|
+
"additionalProperties": true,
|
|
25
|
+
"properties": {
|
|
26
|
+
"dataDir": {
|
|
27
|
+
"type": "string",
|
|
28
|
+
"description": "Directory for persisted enrollment state (single-agent mode)"
|
|
29
|
+
},
|
|
30
|
+
"apiUrl": {
|
|
31
|
+
"type": "string",
|
|
32
|
+
"description": "AgentVault API endpoint URL"
|
|
33
|
+
},
|
|
34
|
+
"agentName": {
|
|
35
|
+
"type": "string",
|
|
36
|
+
"description": "Display name for this agent"
|
|
37
|
+
},
|
|
38
|
+
"httpPort": {
|
|
39
|
+
"type": "number",
|
|
40
|
+
"description": "Local HTTP port for proactive sends (default: 18790)"
|
|
41
|
+
},
|
|
42
|
+
"accounts": {
|
|
43
|
+
"type": "object",
|
|
44
|
+
"description": "Multi-agent account map (keys are account IDs)",
|
|
45
|
+
"additionalProperties": {
|
|
46
|
+
"type": "object",
|
|
47
|
+
"properties": {
|
|
48
|
+
"dataDir": {
|
|
49
|
+
"type": "string",
|
|
50
|
+
"description": "Directory for persisted enrollment state"
|
|
51
|
+
},
|
|
52
|
+
"apiUrl": {
|
|
53
|
+
"type": "string",
|
|
54
|
+
"description": "AgentVault API endpoint URL"
|
|
55
|
+
},
|
|
56
|
+
"agentName": {
|
|
57
|
+
"type": "string",
|
|
58
|
+
"description": "Display name for this agent account"
|
|
59
|
+
},
|
|
60
|
+
"httpPort": {
|
|
61
|
+
"type": "number",
|
|
62
|
+
"description": "Local HTTP port for proactive sends"
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"required": ["dataDir"]
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
26
69
|
},
|
|
27
|
-
"uiHints": {
|
|
70
|
+
"uiHints": {
|
|
71
|
+
"dataDir": { "label": "Data Directory", "placeholder": "~/.openclaw/agentvault" },
|
|
72
|
+
"apiUrl": { "label": "API URL", "placeholder": "https://api.agentvault.chat" },
|
|
73
|
+
"agentName": { "label": "Agent Name", "placeholder": "My Agent" }
|
|
74
|
+
}
|
|
28
75
|
}
|