@swarmvaultai/cli 3.2.0 → 3.3.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 +3 -0
- package/dist/index.js +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -125,6 +125,7 @@ Run a whole-vault health check before handing the workspace to an agent or openi
|
|
|
125
125
|
- emits suggested follow-up commands for warnings and errors
|
|
126
126
|
- supports `--json` for structured automation output
|
|
127
127
|
- add `--repair` to rebuild safe derived retrieval artifacts
|
|
128
|
+
- the live viewer workbench shows the same checks with details and copyable suggested commands
|
|
128
129
|
|
|
129
130
|
### `swarmvault source add|list|reload|review|guide|session|delete`
|
|
130
131
|
|
|
@@ -421,6 +422,8 @@ The MCP surface also exposes `swarmvault://schema`, `swarmvault://sessions`, `sw
|
|
|
421
422
|
|
|
422
423
|
Start the local graph workspace backed by `state/graph.json`, `/api/search`, `/api/page`, local graph query/path/explain endpoints, and the workbench APIs for doctor, retrieval repair, capture, context packs, task start, and source reload.
|
|
423
424
|
|
|
425
|
+
The workbench renders every vault doctor check with details, suggested commands that can be copied back to a terminal, safe one-click retrieval repair through `doctor --repair`, selectable capture modes (`ingest`, normalized `add`, or `inbox`), editable token budgets for context packs and task starts, and action receipts after workbench operations complete.
|
|
426
|
+
|
|
424
427
|
It also exposes `/api/bookmarklet` and `/api/clip`, so a running local viewer can capture the current browser URL, selected text, markdown, HTML excerpts, and tags through the workbench or bookmarklet without leaving the browser.
|
|
425
428
|
|
|
426
429
|
### `swarmvault graph query "<question>" [--dfs] [--budget <n>]`
|
package/dist/index.js
CHANGED
|
@@ -309,9 +309,9 @@ program.name("swarmvault").description("SwarmVault is a local-first knowledge co
|
|
|
309
309
|
function readCliVersion() {
|
|
310
310
|
try {
|
|
311
311
|
const packageJson = JSON.parse(readFileSync(new URL("../package.json", import.meta.url), "utf8"));
|
|
312
|
-
return typeof packageJson.version === "string" && packageJson.version.trim() ? packageJson.version : "3.
|
|
312
|
+
return typeof packageJson.version === "string" && packageJson.version.trim() ? packageJson.version : "3.3.0";
|
|
313
313
|
} catch {
|
|
314
|
-
return "3.
|
|
314
|
+
return "3.3.0";
|
|
315
315
|
}
|
|
316
316
|
}
|
|
317
317
|
function parsePositiveInt(value, fallback) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swarmvaultai/cli",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.0",
|
|
4
4
|
"description": "Global CLI for SwarmVault.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"prepublishOnly": "node ../../scripts/check-release-sync.mjs && node ../../scripts/check-published-manifests.mjs"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@swarmvaultai/engine": "3.
|
|
47
|
+
"@swarmvaultai/engine": "3.3.0",
|
|
48
48
|
"commander": "^14.0.1"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|