mumucc 0.4.1 → 0.4.2
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/bin/mumucc +3 -0
- package/package.json +2 -2
package/bin/mumucc
CHANGED
|
@@ -67,5 +67,8 @@ export CLAUDE_CODE_TEAMMATE_COMMAND="$PROJECT_ROOT/scripts/teammate-wrapper.sh"
|
|
|
67
67
|
# ── Timeout (third-party providers may respond slower) ──
|
|
68
68
|
export API_TIMEOUT_MS=${API_TIMEOUT_MS:-300000}
|
|
69
69
|
|
|
70
|
+
# ── Ensure bun is in PATH (installed via ~/.bun/bin) ──
|
|
71
|
+
export PATH="$HOME/.bun/bin:$HOME/.nvm/versions/node/$(node -v 2>/dev/null)/bin:$PATH"
|
|
72
|
+
|
|
70
73
|
# Launch with absolute paths
|
|
71
74
|
exec bun --preload "$PROJECT_ROOT/shims/globals.ts" "$PROJECT_ROOT/src/entrypoints/cli.tsx" "$@"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mumucc",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"description": "Open-source AI coding assistant CLI with multi-model support (Anthropic, OpenAI/GPT, DeepSeek, GLM, Ollama, etc.), MCP integration, agent swarms, and out-of-the-box developer experience.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -153,4 +153,4 @@
|
|
|
153
153
|
"bun-types": "*",
|
|
154
154
|
"typescript": "^5"
|
|
155
155
|
}
|
|
156
|
-
}
|
|
156
|
+
}
|