@swarmvaultai/cli 0.2.0 → 0.2.1

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 CHANGED
@@ -97,7 +97,7 @@ Ingest a local file path, directory path, or URL into immutable source storage a
97
97
  - use `source add` instead when the same local directory, public GitHub repo root, or docs hub should stay registered and reloadable
98
98
  - URL ingest still localizes remote image references by default
99
99
  - local file ingest supports markdown, text, reStructuredText, HTML, PDF, DOCX, images, and code
100
- - code-aware directory ingest currently covers JavaScript, TypeScript, Python, Go, Rust, Java, C#, C, C++, PHP, Ruby, PowerShell, Kotlin, and Scala
100
+ - 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
101
101
 
102
102
  Useful flags:
103
103
 
package/dist/index.js CHANGED
@@ -221,9 +221,9 @@ program.name("swarmvault").description("SwarmVault is a local-first LLM wiki com
221
221
  function readCliVersion() {
222
222
  try {
223
223
  const packageJson = JSON.parse(readFileSync(new URL("../package.json", import.meta.url), "utf8"));
224
- return typeof packageJson.version === "string" && packageJson.version.trim() ? packageJson.version : "0.2.0";
224
+ return typeof packageJson.version === "string" && packageJson.version.trim() ? packageJson.version : "0.2.1";
225
225
  } catch {
226
- return "0.2.0";
226
+ return "0.2.1";
227
227
  }
228
228
  }
229
229
  function parsePositiveInt(value, fallback) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swarmvaultai/cli",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Global CLI for SwarmVault.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -38,7 +38,7 @@
38
38
  "node": ">=24.0.0"
39
39
  },
40
40
  "dependencies": {
41
- "@swarmvaultai/engine": "0.2.0",
41
+ "@swarmvaultai/engine": "0.2.1",
42
42
  "commander": "^14.0.1"
43
43
  },
44
44
  "devDependencies": {