@swarmvaultai/cli 0.1.16 → 0.1.17

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|goose|pi|gemini>`
168
+ ### `swarmvault install --agent <codex|claude|cursor|goose|pi|gemini|opencode>`
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
@@ -314,7 +314,7 @@ program.command("mcp").description("Run SwarmVault as a local MCP server over st
314
314
  process.exit(0);
315
315
  });
316
316
  });
317
- 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) => {
317
+ program.command("install").description("Install SwarmVault instructions for an agent in the current project.").requiredOption("--agent <agent>", "codex, claude, cursor, goose, pi, gemini, or opencode").action(async (options) => {
318
318
  const target = await installAgent(process.cwd(), options.agent);
319
319
  if (isJson()) {
320
320
  emitJson({ agent: options.agent, target });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swarmvaultai/cli",
3
- "version": "0.1.16",
3
+ "version": "0.1.17",
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.16"
42
+ "@swarmvaultai/engine": "0.1.17"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@types/node": "^24.6.0",