@swarmvaultai/cli 0.1.14 → 0.1.15

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
@@ -165,7 +165,7 @@ Start the local graph workspace backed by `state/graph.json`, `/api/search`, and
165
165
 
166
166
  Export the graph workspace as a standalone HTML file with embedded graph and page data for offline sharing.
167
167
 
168
- ### `swarmvault install --agent <codex|claude|cursor>`
168
+ ### `swarmvault install --agent <codex|claude|cursor|goose|pi|gemini>`
169
169
 
170
170
  Install agent-specific rules into the current project so an agent understands the SwarmVault workspace contract and workflow.
171
171
 
package/dist/index.js CHANGED
@@ -304,7 +304,7 @@ program.command("mcp").description("Run SwarmVault as a local MCP server over st
304
304
  process.exit(0);
305
305
  });
306
306
  });
307
- program.command("install").description("Install SwarmVault instructions for an agent in the current project.").requiredOption("--agent <agent>", "codex, claude, or cursor").action(async (options) => {
307
+ program.command("install").description("Install SwarmVault instructions for an agent in the current project.").requiredOption("--agent <agent>", "codex, claude, cursor, goose, pi, or gemini").action(async (options) => {
308
308
  const target = await installAgent(process.cwd(), options.agent);
309
309
  if (isJson()) {
310
310
  emitJson({ agent: options.agent, target });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swarmvaultai/cli",
3
- "version": "0.1.14",
3
+ "version": "0.1.15",
4
4
  "description": "Global CLI for SwarmVault.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -39,7 +39,7 @@
39
39
  },
40
40
  "dependencies": {
41
41
  "commander": "^14.0.1",
42
- "@swarmvaultai/engine": "0.1.14"
42
+ "@swarmvaultai/engine": "0.1.15"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@types/node": "^24.6.0",