mumucc 0.1.8 → 0.1.9
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/package.json +1 -1
- package/shims/globals.ts +1 -1
- package/src/utils/env.ts +4 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mumucc",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.9",
|
|
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",
|
package/shims/globals.ts
CHANGED
package/src/utils/env.ts
CHANGED
|
@@ -22,7 +22,10 @@ export const getGlobalClaudeFile = memoize((): string => {
|
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
const filename = `.mumucc${fileSuffixForOauthConfig()}.json`
|
|
25
|
-
|
|
25
|
+
// Always keep global config inside the mumucc config dir (~/.mumucc/.mumucc.json)
|
|
26
|
+
// to avoid polluting HOME root and to prevent any overlap with standard Claude Code
|
|
27
|
+
// config (~/.claude.json). CLAUDE_CONFIG_DIR override is still respected.
|
|
28
|
+
return join(process.env.CLAUDE_CONFIG_DIR || getClaudeConfigHomeDir(), filename)
|
|
26
29
|
})
|
|
27
30
|
|
|
28
31
|
const hasInternetAccess = memoize(async (): Promise<boolean> => {
|