@agentvault/agentvault 0.17.4 → 0.17.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/dist/cli.js +19 -21
- package/dist/cli.js.map +4 -4
- package/dist/index.js +52 -54
- package/dist/index.js.map +4 -4
- package/dist/openclaw-entry.js +396 -16184
- package/dist/openclaw-entry.js.map +4 -4
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/dist/_cp.d.ts +0 -10
- package/dist/_cp.d.ts.map +0 -1
- package/dist/account-config.d.ts +0 -20
- package/dist/account-config.d.ts.map +0 -1
- package/dist/channel.d.ts +0 -358
- package/dist/channel.d.ts.map +0 -1
- package/dist/cli.d.ts +0 -2
- package/dist/cli.d.ts.map +0 -1
- package/dist/create-agent.d.ts +0 -28
- package/dist/create-agent.d.ts.map +0 -1
- package/dist/crypto-helpers.d.ts +0 -2
- package/dist/crypto-helpers.d.ts.map +0 -1
- package/dist/doctor.d.ts +0 -41
- package/dist/doctor.d.ts.map +0 -1
- package/dist/fetch-interceptor.d.ts +0 -32
- package/dist/fetch-interceptor.d.ts.map +0 -1
- package/dist/gateway-send.d.ts +0 -98
- package/dist/gateway-send.d.ts.map +0 -1
- package/dist/http-handlers.d.ts +0 -49
- package/dist/http-handlers.d.ts.map +0 -1
- package/dist/index.d.ts +0 -25
- package/dist/index.d.ts.map +0 -1
- package/dist/mcp-handlers.d.ts +0 -26
- package/dist/mcp-handlers.d.ts.map +0 -1
- package/dist/mcp-proxy-helpers.d.ts +0 -9
- package/dist/mcp-proxy-helpers.d.ts.map +0 -1
- package/dist/mcp-server.d.ts +0 -90
- package/dist/mcp-server.d.ts.map +0 -1
- package/dist/openclaw-compat.d.ts +0 -33
- package/dist/openclaw-compat.d.ts.map +0 -1
- package/dist/openclaw-entry.d.ts +0 -27
- package/dist/openclaw-entry.d.ts.map +0 -1
- package/dist/openclaw-plugin.d.ts +0 -102
- package/dist/openclaw-plugin.d.ts.map +0 -1
- package/dist/openclaw-types.d.ts +0 -155
- package/dist/openclaw-types.d.ts.map +0 -1
- package/dist/policy-enforcer.d.ts +0 -78
- package/dist/policy-enforcer.d.ts.map +0 -1
- package/dist/setup.d.ts +0 -27
- package/dist/setup.d.ts.map +0 -1
- package/dist/skill-invoker.d.ts +0 -30
- package/dist/skill-invoker.d.ts.map +0 -1
- package/dist/skill-manifest.d.ts +0 -25
- package/dist/skill-manifest.d.ts.map +0 -1
- package/dist/skill-telemetry.d.ts +0 -36
- package/dist/skill-telemetry.d.ts.map +0 -1
- package/dist/skills-publish.d.ts +0 -8
- package/dist/skills-publish.d.ts.map +0 -1
- package/dist/state.d.ts +0 -32
- package/dist/state.d.ts.map +0 -1
- package/dist/transport.d.ts +0 -24
- package/dist/transport.d.ts.map +0 -1
- package/dist/types.d.ts +0 -379
- package/dist/types.d.ts.map +0 -1
- package/dist/workspace-handlers.d.ts +0 -62
- package/dist/workspace-handlers.d.ts.map +0 -1
package/dist/cli.js
CHANGED
|
@@ -50639,6 +50639,18 @@ var init_fetch_interceptor = __esm({
|
|
|
50639
50639
|
}
|
|
50640
50640
|
});
|
|
50641
50641
|
|
|
50642
|
+
// src/openclaw-entry.ts
|
|
50643
|
+
var init_openclaw_entry = __esm({
|
|
50644
|
+
"src/openclaw-entry.ts"() {
|
|
50645
|
+
"use strict";
|
|
50646
|
+
init_account_config();
|
|
50647
|
+
init_fetch_interceptor();
|
|
50648
|
+
init_http_handlers();
|
|
50649
|
+
init_openclaw_compat();
|
|
50650
|
+
init_types();
|
|
50651
|
+
}
|
|
50652
|
+
});
|
|
50653
|
+
|
|
50642
50654
|
// ../../node_modules/zod/v3/helpers/util.js
|
|
50643
50655
|
var util, objectUtil, ZodParsedType, getParsedType;
|
|
50644
50656
|
var init_util = __esm({
|
|
@@ -70995,6 +71007,13 @@ var init_mcp_server2 = __esm({
|
|
|
70995
71007
|
}
|
|
70996
71008
|
});
|
|
70997
71009
|
|
|
71010
|
+
// src/mcp-handlers.ts
|
|
71011
|
+
var init_mcp_handlers = __esm({
|
|
71012
|
+
"src/mcp-handlers.ts"() {
|
|
71013
|
+
"use strict";
|
|
71014
|
+
}
|
|
71015
|
+
});
|
|
71016
|
+
|
|
70998
71017
|
// src/skill-manifest.ts
|
|
70999
71018
|
function parseSkillMd(content) {
|
|
71000
71019
|
const lines = content.split("\n");
|
|
@@ -71100,27 +71119,6 @@ var init_skill_manifest = __esm({
|
|
|
71100
71119
|
}
|
|
71101
71120
|
});
|
|
71102
71121
|
|
|
71103
|
-
// src/openclaw-entry.ts
|
|
71104
|
-
var init_openclaw_entry = __esm({
|
|
71105
|
-
"src/openclaw-entry.ts"() {
|
|
71106
|
-
"use strict";
|
|
71107
|
-
init_account_config();
|
|
71108
|
-
init_fetch_interceptor();
|
|
71109
|
-
init_http_handlers();
|
|
71110
|
-
init_openclaw_compat();
|
|
71111
|
-
init_types();
|
|
71112
|
-
init_mcp_server2();
|
|
71113
|
-
init_skill_manifest();
|
|
71114
|
-
}
|
|
71115
|
-
});
|
|
71116
|
-
|
|
71117
|
-
// src/mcp-handlers.ts
|
|
71118
|
-
var init_mcp_handlers = __esm({
|
|
71119
|
-
"src/mcp-handlers.ts"() {
|
|
71120
|
-
"use strict";
|
|
71121
|
-
}
|
|
71122
|
-
});
|
|
71123
|
-
|
|
71124
71122
|
// src/skill-invoker.ts
|
|
71125
71123
|
var init_skill_invoker = __esm({
|
|
71126
71124
|
"src/skill-invoker.ts"() {
|