@autohq/cli 0.1.317 → 0.1.318

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.
@@ -23431,7 +23431,7 @@ Object.assign(lookup, {
23431
23431
  // package.json
23432
23432
  var package_default = {
23433
23433
  name: "@autohq/cli",
23434
- version: "0.1.317",
23434
+ version: "0.1.318",
23435
23435
  license: "SEE LICENSE IN README.md",
23436
23436
  publishConfig: {
23437
23437
  access: "public"
@@ -63599,6 +63599,8 @@ var CODEX_EXECUTABLE_PATH = "codex";
63599
63599
  var CODEX_DEFAULT_MODEL = "gpt-5.3-codex";
63600
63600
  var CODEX_HTTP_PROVIDER_ID = "openai-responses-http";
63601
63601
  var CODEX_OPENROUTER_PROVIDER_ID = "openrouter-responses-http";
63602
+ var CODEX_APPROVAL_POLICY = "never";
63603
+ var CODEX_SANDBOX_MODE = "danger-full-access";
63602
63604
  var CODEX_OPENAI_BASE_URL = "https://api.openai.com/v1";
63603
63605
  var CODEX_OPENROUTER_BASE_URL = "https://openrouter.ai/api/v1";
63604
63606
  var CODEX_API_KEY_ENV = "OPENAI_API_KEY";
@@ -63634,6 +63636,8 @@ function renderCodexConfigToml(config2) {
63634
63636
  `model_reasoning_effort = ${tomlString(config2.reasoningEffort)}`
63635
63637
  );
63636
63638
  }
63639
+ lines.push(`approval_policy = ${tomlString(CODEX_APPROVAL_POLICY)}`);
63640
+ lines.push(`sandbox_mode = ${tomlString(CODEX_SANDBOX_MODE)}`);
63637
63641
  lines.push("");
63638
63642
  lines.push(`[model_providers.${CODEX_HTTP_PROVIDER_ID}]`);
63639
63643
  lines.push('name = "OpenAI"');
package/dist/index.js CHANGED
@@ -27066,7 +27066,7 @@ var init_package = __esm({
27066
27066
  "package.json"() {
27067
27067
  package_default = {
27068
27068
  name: "@autohq/cli",
27069
- version: "0.1.317",
27069
+ version: "0.1.318",
27070
27070
  license: "SEE LICENSE IN README.md",
27071
27071
  publishConfig: {
27072
27072
  access: "public"
@@ -41145,6 +41145,8 @@ var CODEX_EXECUTABLE_PATH = "codex";
41145
41145
  var CODEX_DEFAULT_MODEL = "gpt-5.3-codex";
41146
41146
  var CODEX_HTTP_PROVIDER_ID = "openai-responses-http";
41147
41147
  var CODEX_OPENROUTER_PROVIDER_ID = "openrouter-responses-http";
41148
+ var CODEX_APPROVAL_POLICY = "never";
41149
+ var CODEX_SANDBOX_MODE = "danger-full-access";
41148
41150
  var CODEX_OPENAI_BASE_URL = "https://api.openai.com/v1";
41149
41151
  var CODEX_OPENROUTER_BASE_URL = "https://openrouter.ai/api/v1";
41150
41152
  var CODEX_API_KEY_ENV = "OPENAI_API_KEY";
@@ -41180,6 +41182,8 @@ function renderCodexConfigToml(config2) {
41180
41182
  `model_reasoning_effort = ${tomlString(config2.reasoningEffort)}`
41181
41183
  );
41182
41184
  }
41185
+ lines.push(`approval_policy = ${tomlString(CODEX_APPROVAL_POLICY)}`);
41186
+ lines.push(`sandbox_mode = ${tomlString(CODEX_SANDBOX_MODE)}`);
41183
41187
  lines.push("");
41184
41188
  lines.push(`[model_providers.${CODEX_HTTP_PROVIDER_ID}]`);
41185
41189
  lines.push('name = "OpenAI"');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autohq/cli",
3
- "version": "0.1.317",
3
+ "version": "0.1.318",
4
4
  "license": "SEE LICENSE IN README.md",
5
5
  "publishConfig": {
6
6
  "access": "public"