verus-pm 0.2.13 → 0.2.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
@@ -178,9 +178,10 @@ verus skill sync # Sync skills to AI platforms
178
178
  ```bash
179
179
  verus sync agents # Update AGENTS.md, GEMINI.md, CLAUDE.md
180
180
  verus sync agents --platform claude # Sync for specific platform
181
- verus sync mcp # Setup MCP in .mcp.json + Claude Code
182
- verus sync mcp --project # Only create .mcp.json
183
- verus sync mcp --global # Only setup Claude Code CLI
181
+ verus sync mcp # Setup MCP for all platforms
182
+ verus sync mcp --project # Only create workspace configs (.mcp.json, etc.)
183
+ verus sync mcp --global # Only setup user-level configs (Claude, Codex, Antigravity)
184
+ verus sync mcp --platform antigravity # Sync specific platform only
184
185
  verus sync skills # Sync skills from .agent/skills/ to .verus/skills/
185
186
  ```
186
187
 
@@ -243,6 +244,18 @@ The most common way to connect — `verus init` auto-generates `.mcp.json`:
243
244
 
244
245
  The MCP server auto-detects the project from the working directory set by your IDE.
245
246
 
247
+ For **Antigravity** (which doesn't set `cwd`), `verus sync mcp` automatically registers per-project named entries (`verus--<project-name>`) with explicit `--root` flags in the global config, supporting multiple projects simultaneously.
248
+
249
+ ### Platform Support
250
+
251
+ | Platform | Config | Multi-Project |
252
+ |----------|--------|:-------------:|
253
+ | Claude Code | `.mcp.json` (per-workspace) | ✅ Auto |
254
+ | Cursor | `.cursor/mcp.json` (per-workspace) | ✅ Auto |
255
+ | Gemini CLI | `.gemini/settings.json` (per-workspace) | ✅ Auto |
256
+ | Antigravity | `~/.gemini/antigravity/mcp_config.json` | ✅ `verus--<name>` |
257
+ | Codex | User-level via CLI | ✅ Auto |
258
+
246
259
  ### HTTP SSE Transport
247
260
 
248
261
  For multi-process setups or debugging:
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "verus-pm",
3
- "version": "0.2.13",
3
+ "version": "0.2.15",
4
4
  "description": "AI-powered project management — CLI + Web Dashboard in one command",
5
5
  "bin": {
6
6
  "verus": "./bin/verus.js",