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.
|
|
13
|
+
"version": "3.7.12",
|
|
14
14
|
"author": {
|
|
15
15
|
"name": "Yeachan Heo",
|
|
16
16
|
"email": "hurrc04@gmail.com"
|
package/.mcp.json
CHANGED
|
@@ -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"
|