claudmax 1.0.10 → 1.0.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.
- package/index.js +3 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -231,7 +231,7 @@ function configureSystem(apiKey) {
|
|
|
231
231
|
apiKey,
|
|
232
232
|
baseUrl: API_BASE,
|
|
233
233
|
configuredAt: new Date().toISOString(),
|
|
234
|
-
version: '1.0.
|
|
234
|
+
version: '1.0.12',
|
|
235
235
|
});
|
|
236
236
|
console.log(` ${CHECK} Saved config to ${C.magenta(CONFIG_FILE)}`);
|
|
237
237
|
console.log(` ${INFO} ${C.dim('Claude Code CLI uses settings.json — no shell profile modification needed.')}`);
|
|
@@ -253,12 +253,13 @@ function configureClaudeCLI(apiKey) {
|
|
|
253
253
|
const settings = deepMerge(existing, {
|
|
254
254
|
env: {
|
|
255
255
|
ANTHROPIC_AUTH_TOKEN: apiKey,
|
|
256
|
-
ANTHROPIC_BASE_URL: `${API_BASE}
|
|
256
|
+
ANTHROPIC_BASE_URL: `${API_BASE}`,
|
|
257
257
|
ANTHROPIC_MODEL: 'Opus 4.6',
|
|
258
258
|
ANTHROPIC_SMALL_FAST_MODEL: 'Haiku 4.5',
|
|
259
259
|
ANTHROPIC_DEFAULT_SONNET_MODEL: 'Sonnet 4.5',
|
|
260
260
|
ANTHROPIC_DEFAULT_OPUS_MODEL: 'Opus 4.6',
|
|
261
261
|
ANTHROPIC_DEFAULT_HAIKU_MODEL: 'Haiku 4.5',
|
|
262
|
+
CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC: '1',
|
|
262
263
|
},
|
|
263
264
|
hasCompletedOnboarding: true,
|
|
264
265
|
});
|
package/package.json
CHANGED