@swarmvaultai/cli 0.1.23 → 0.1.25

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
@@ -227,7 +227,7 @@ Start the local graph workspace backed by `state/graph.json`, `/api/search`, `/a
227
227
 
228
228
  ### `swarmvault graph query "<question>" [--dfs] [--budget <n>]`
229
229
 
230
- Run a deterministic local graph traversal seeded from local search and graph labels.
230
+ Run a deterministic local graph traversal seeded from local search, graph labels, and matching group patterns.
231
231
 
232
232
  ### `swarmvault graph path <from> <to>`
233
233
 
@@ -235,7 +235,7 @@ Return the shortest high-confidence path between two graph targets.
235
235
 
236
236
  ### `swarmvault graph explain <target>`
237
237
 
238
- Inspect graph metadata, community membership, neighbors, and provenance for a node or page.
238
+ Inspect graph metadata, community membership, neighbors, provenance, and group-pattern membership for a node or page.
239
239
 
240
240
  ### `swarmvault graph god-nodes [--limit <n>]`
241
241
 
package/dist/index.js CHANGED
@@ -48,9 +48,9 @@ program.name("swarmvault").description("SwarmVault is a local-first LLM wiki com
48
48
  function readCliVersion() {
49
49
  try {
50
50
  const packageJson = JSON.parse(readFileSync(new URL("../package.json", import.meta.url), "utf8"));
51
- return typeof packageJson.version === "string" && packageJson.version.trim() ? packageJson.version : "0.1.22";
51
+ return typeof packageJson.version === "string" && packageJson.version.trim() ? packageJson.version : "0.1.25";
52
52
  } catch {
53
- return "0.1.22";
53
+ return "0.1.25";
54
54
  }
55
55
  }
56
56
  function isJson() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swarmvaultai/cli",
3
- "version": "0.1.23",
3
+ "version": "0.1.25",
4
4
  "description": "Global CLI for SwarmVault.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -37,17 +37,17 @@
37
37
  "engines": {
38
38
  "node": ">=24.0.0"
39
39
  },
40
+ "scripts": {
41
+ "build": "tsup src/index.ts --format esm --dts",
42
+ "test": "node -e \"process.exit(0)\"",
43
+ "typecheck": "tsc --noEmit"
44
+ },
40
45
  "dependencies": {
41
- "commander": "^14.0.1",
42
- "@swarmvaultai/engine": "0.1.23"
46
+ "@swarmvaultai/engine": "0.1.25",
47
+ "commander": "^14.0.1"
43
48
  },
44
49
  "devDependencies": {
45
50
  "@types/node": "^24.6.0",
46
51
  "tsup": "^8.5.0"
47
- },
48
- "scripts": {
49
- "build": "tsup src/index.ts --format esm --dts",
50
- "test": "node -e \"process.exit(0)\"",
51
- "typecheck": "tsc --noEmit"
52
52
  }
53
- }
53
+ }
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2026 SwarmVault
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.