oh-my-claude-sisyphus 3.7.11 → 3.7.12

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.
@@ -10,7 +10,7 @@
10
10
  {
11
11
  "name": "oh-my-claudecode",
12
12
  "description": "Claude Code native multi-agent orchestration with intelligent model routing, 28 agent variants, and 30 powerful skills. Zero learning curve. Maximum power.",
13
- "version": "3.7.11",
13
+ "version": "3.7.12",
14
14
  "author": {
15
15
  "name": "Yeachan Heo",
16
16
  "email": "hurrc04@gmail.com"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oh-my-claudecode",
3
- "version": "3.7.11",
3
+ "version": "3.7.12",
4
4
  "description": "Multi-agent orchestration system for Claude Code",
5
5
  "skills": "./skills/",
6
6
  "mcpServers": "./.mcp.json"
package/.mcp.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "mcpServers": {
3
3
  "omc-tools": {
4
- "command": "node",
5
- "args": ["${CLAUDE_PLUGIN_ROOT}/bridge/mcp-server.cjs"]
4
+ "command": "bash",
5
+ "args": ["${CLAUDE_PLUGIN_ROOT}/bridge/run-mcp-server.sh"]
6
6
  }
7
7
  }
8
8
  }
@@ -0,0 +1,13 @@
1
+ #!/bin/bash
2
+ # MCP Server wrapper that ensures global npm modules are resolvable
3
+ # This enables @ast-grep/napi and other globally-installed native modules
4
+
5
+ SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
6
+
7
+ # Add global npm modules to NODE_PATH for native module resolution
8
+ GLOBAL_NPM_ROOT="$(npm root -g 2>/dev/null)"
9
+ if [ -n "$GLOBAL_NPM_ROOT" ]; then
10
+ export NODE_PATH="${GLOBAL_NPM_ROOT}:${NODE_PATH:-}"
11
+ fi
12
+
13
+ exec node "$SCRIPT_DIR/mcp-server.cjs"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oh-my-claude-sisyphus",
3
- "version": "3.7.11",
3
+ "version": "3.7.12",
4
4
  "description": "Multi-agent orchestration system for Claude Code - Inspired by oh-my-opencode",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",