clawvault 3.5.0 → 3.5.2
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 +33 -25
- package/bin/command-registration.test.js +179 -0
- package/bin/command-runtime.test.js +154 -0
- package/bin/help-contract.test.js +55 -0
- package/bin/register-config-route-commands.test.js +121 -0
- package/bin/register-core-commands.test.js +80 -0
- package/bin/register-kanban-commands.test.js +83 -0
- package/bin/register-project-commands.test.js +206 -0
- package/bin/register-query-commands.test.js +80 -0
- package/bin/register-resilience-commands.test.js +81 -0
- package/bin/register-task-commands.test.js +69 -0
- package/bin/register-template-commands.test.js +87 -0
- package/bin/test-helpers/cli-command-fixtures.js +120 -0
- package/dashboard/lib/graph-diff.test.js +75 -0
- package/dashboard/lib/vault-parser.test.js +254 -0
- package/dist/{chunk-DCF4KMFD.js → chunk-DPK6P6BO.js} +3 -3
- package/dist/{chunk-BLQXXX7Q.js → chunk-FNFP7N6A.js} +2 -2
- package/dist/{chunk-JI7VUQV7.js → chunk-IFUHSHN3.js} +146 -118
- package/dist/{chunk-QFWERBDP.js → chunk-J6DW6HBX.js} +1 -1
- package/dist/{chunk-VXAGOLDP.js → chunk-LCBHM3D6.js} +1 -1
- package/dist/{chunk-HGDDW24U.js → chunk-NTQD55S3.js} +3 -3
- package/dist/{chunk-QUFQBAHP.js → chunk-P35SHNAU.js} +93 -147
- package/dist/cli/index.js +8 -8
- package/dist/commands/compat.js +1 -1
- package/dist/commands/inject.js +2 -2
- package/dist/commands/maintain.js +2 -2
- package/dist/commands/observe.js +4 -4
- package/dist/commands/rebuild.js +3 -3
- package/dist/commands/replay.js +4 -4
- package/dist/commands/sleep.js +5 -5
- package/dist/commands/status.js +3 -3
- package/dist/index.d.ts +2 -2
- package/dist/index.js +17 -17
- package/dist/{openclaw-plugin--gqA2BZw.d.ts → openclaw-plugin-9M9qCZgl.d.ts} +2 -2
- package/dist/openclaw-plugin.d.ts +1 -1
- package/dist/openclaw-plugin.js +6 -1
- package/package.json +4 -26
- package/CHANGELOG.md +0 -543
- package/SKILL.md +0 -369
- package/docs/clawhub-security-release-playbook.md +0 -75
- package/docs/getting-started/installation.md +0 -99
- package/docs/openclaw-plugin-usage.md +0 -152
- package/dist/{chunk-7SWP5FKU.js → chunk-FSYISBTU.js} +4 -4
- package/dist/{chunk-D5U3Q4N5.js → chunk-IOKLQR4W.js} +4 -4
- package/dist/{chunk-OFOCU2V4.js → chunk-QL34TMGN.js} +3 -3
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
requestLlmCompletion,
|
|
3
|
-
resolveLlmProvider
|
|
4
|
-
} from "./chunk-DVOUSOR3.js";
|
|
5
1
|
import {
|
|
6
2
|
listProjects
|
|
7
3
|
} from "./chunk-4PY655YM.js";
|
|
@@ -10,6 +6,10 @@ import {
|
|
|
10
6
|
listRouteRules,
|
|
11
7
|
matchRouteRule
|
|
12
8
|
} from "./chunk-AXSJIFOJ.js";
|
|
9
|
+
import {
|
|
10
|
+
requestLlmCompletion,
|
|
11
|
+
resolveLlmProvider
|
|
12
|
+
} from "./chunk-DVOUSOR3.js";
|
|
13
13
|
import {
|
|
14
14
|
FactStore,
|
|
15
15
|
extractFactsLlm,
|
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
requestLlmCompletion,
|
|
3
|
-
resolveLlmProvider
|
|
4
|
-
} from "./chunk-DVOUSOR3.js";
|
|
5
1
|
import {
|
|
6
2
|
readInboxItems
|
|
7
3
|
} from "./chunk-2PKBIKDH.js";
|
|
@@ -12,6 +8,10 @@ import {
|
|
|
12
8
|
normalizeForDedup,
|
|
13
9
|
similarityScore
|
|
14
10
|
} from "./chunk-35JCYSRR.js";
|
|
11
|
+
import {
|
|
12
|
+
requestLlmCompletion,
|
|
13
|
+
resolveLlmProvider
|
|
14
|
+
} from "./chunk-DVOUSOR3.js";
|
|
15
15
|
import {
|
|
16
16
|
resolveVaultPath
|
|
17
17
|
} from "./chunk-GJO3CFUN.js";
|