@swarmvaultai/cli 0.1.31 → 0.1.33

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
@@ -2,7 +2,7 @@
2
2
 
3
3
  `@swarmvaultai/cli` is the global command-line entry point for SwarmVault.
4
4
 
5
- It gives you the `swarmvault` command for building a local-first knowledge vault from files, DOCX documents, URLs, browser clips, saved query outputs, and guided exploration runs.
5
+ It gives you the `swarmvault` command for building a local-first knowledge vault from files, reStructuredText and DOCX documents, URLs, browser clips, saved query outputs, and guided exploration runs.
6
6
 
7
7
  ## Install
8
8
 
@@ -71,8 +71,8 @@ Ingest a local file path, directory path, or URL into immutable source storage a
71
71
  - directory ingest respects `.gitignore` unless you pass `--no-gitignore`
72
72
  - repo-aware directory ingest records `repoRelativePath` and later compile writes `state/code-index.json`
73
73
  - URL ingest still localizes remote image references by default
74
- - local file ingest supports markdown, text, HTML, PDF, DOCX, images, and code
75
- - code-aware directory ingest currently covers JavaScript, TypeScript, Python, Go, Rust, Java, C#, C, C++, PHP, Ruby, and PowerShell
74
+ - local file ingest supports markdown, text, reStructuredText, HTML, PDF, DOCX, images, and code
75
+ - code-aware directory ingest currently covers JavaScript, TypeScript, Python, Go, Rust, Java, C#, C, C++, PHP, Ruby, PowerShell, Kotlin, and Scala
76
76
 
77
77
  Useful flags:
78
78
 
@@ -89,6 +89,8 @@ Useful flags:
89
89
 
90
90
  Repo ingest defaults to `first_party` material. The extra `--include-*` flags opt dependency trees, resource bundles, and generated output back in when you actually want them in the vault.
91
91
 
92
+ Large repo ingest now emits low-noise progress on materially large batches, and parser compatibility failures stay local to the affected source instead of aborting unrelated analysis.
93
+
92
94
  ### `swarmvault add <url>`
93
95
 
94
96
  Capture supported URLs through a normalized markdown layer before ingesting them into the vault.
package/dist/index.js CHANGED
@@ -217,9 +217,9 @@ program.name("swarmvault").description("SwarmVault is a local-first LLM wiki com
217
217
  function readCliVersion() {
218
218
  try {
219
219
  const packageJson = JSON.parse(readFileSync(new URL("../package.json", import.meta.url), "utf8"));
220
- return typeof packageJson.version === "string" && packageJson.version.trim() ? packageJson.version : "0.1.31";
220
+ return typeof packageJson.version === "string" && packageJson.version.trim() ? packageJson.version : "0.1.33";
221
221
  } catch {
222
- return "0.1.31";
222
+ return "0.1.33";
223
223
  }
224
224
  }
225
225
  function parsePositiveInt(value, fallback) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swarmvaultai/cli",
3
- "version": "0.1.31",
3
+ "version": "0.1.33",
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.1.31",
46
+ "@swarmvaultai/engine": "0.1.33",
47
47
  "commander": "^14.0.1"
48
48
  },
49
49
  "devDependencies": {