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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mumucc",
3
- "version": "0.1.8",
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
@@ -4,7 +4,7 @@
4
4
  */
5
5
 
6
6
  ;(globalThis as any).MACRO = {
7
- VERSION: '0.1.8-mumucc',
7
+ VERSION: '0.1.9-mumucc',
8
8
  VERSION_CHANGELOG: '{}',
9
9
  BUILD_TIME: new Date().toISOString(),
10
10
  PACKAGE_URL: 'https://github.com/mumuxsy/mumucc',
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
- return join(process.env.CLAUDE_CONFIG_DIR || homedir(), filename)
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> => {