aiblueprint-cli 1.4.94 → 1.4.95

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.
Files changed (2) hide show
  1. package/dist/cli.js +7 -0
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -33019,6 +33019,13 @@ async function updateSettings(options, claudeDir) {
33019
33019
  };
33020
33020
  }
33021
33021
  }
33022
+ if (!settings.env || typeof settings.env !== "object" || Array.isArray(settings.env)) {
33023
+ settings.env = {};
33024
+ }
33025
+ if (settings.env.ANTHROPIC_DEFAULT_SONNET_MODEL === "claude-sonnet-4-6[1m]") {
33026
+ delete settings.env.ANTHROPIC_DEFAULT_SONNET_MODEL;
33027
+ }
33028
+ settings.env.CLAUDE_CODE_DISABLE_1M_CONTEXT = "1";
33022
33029
  if (!settings.permissions) {
33023
33030
  settings.permissions = {};
33024
33031
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aiblueprint-cli",
3
- "version": "1.4.94",
3
+ "version": "1.4.95",
4
4
  "description": "AIBlueprint CLI for setting up AI coding configurations",
5
5
  "author": "AIBlueprint",
6
6
  "license": "MIT",