@swarmvaultai/cli 0.6.1 → 0.6.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 +1 -1
- package/dist/index.js +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -109,7 +109,7 @@ Ingest a local file path, directory path, or URL into immutable source storage a
|
|
|
109
109
|
- URL ingest still localizes remote image references by default
|
|
110
110
|
- local file ingest supports markdown, text, reStructuredText, HTML, PDF, DOCX, images, and code
|
|
111
111
|
- add `--guide` when you want a resumable source session, source brief, source review, source guide, and approval-bundled canonical page edits when `profile.guidedSessionMode` is `canonical_review`, with `wiki/insights/` fallback for `insights_only`
|
|
112
|
-
- code-aware directory ingest currently covers JavaScript, JSX, TypeScript, TSX, Python, Go, Rust, Java, Kotlin, Scala, Lua, Zig, C#, C, C++, PHP, Ruby, and PowerShell
|
|
112
|
+
- code-aware directory ingest currently covers JavaScript, JSX, TypeScript, TSX, Bash/shell scripts, Python, Go, Rust, Java, Kotlin, Scala, Dart, Lua, Zig, C#, C, C++, PHP, Ruby, and PowerShell
|
|
113
113
|
|
|
114
114
|
Useful flags:
|
|
115
115
|
|
package/dist/index.js
CHANGED
|
@@ -228,9 +228,9 @@ program.name("swarmvault").description("SwarmVault is a local-first knowledge co
|
|
|
228
228
|
function readCliVersion() {
|
|
229
229
|
try {
|
|
230
230
|
const packageJson = JSON.parse(readFileSync(new URL("../package.json", import.meta.url), "utf8"));
|
|
231
|
-
return typeof packageJson.version === "string" && packageJson.version.trim() ? packageJson.version : "0.6.
|
|
231
|
+
return typeof packageJson.version === "string" && packageJson.version.trim() ? packageJson.version : "0.6.2";
|
|
232
232
|
} catch {
|
|
233
|
-
return "0.6.
|
|
233
|
+
return "0.6.2";
|
|
234
234
|
}
|
|
235
235
|
}
|
|
236
236
|
function parsePositiveInt(value, fallback) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swarmvaultai/cli",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.2",
|
|
4
4
|
"description": "Global CLI for SwarmVault.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"typecheck": "tsc --noEmit"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@swarmvaultai/engine": "0.6.
|
|
46
|
+
"@swarmvaultai/engine": "0.6.2",
|
|
47
47
|
"commander": "^14.0.1"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|