@gengjiawen/os-init 1.16.0 → 1.17.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.17.0](https://github.com/gengjiawen/os-init/compare/v1.16.0...v1.17.0) (2026-03-07)
4
+
5
+
6
+ ### Features
7
+
8
+ * add plan_mode_reasoning_effort to Codex config template ([e2b8192](https://github.com/gengjiawen/os-init/commit/e2b8192fe88b64dcd0b43a7026befe6ffd87ca52))
9
+
3
10
  ## [1.16.0](https://github.com/gengjiawen/os-init/compare/v1.15.0...v1.16.0) (2026-03-06)
4
11
 
5
12
 
package/build/codex.js CHANGED
@@ -12,7 +12,8 @@ function getCodexConfigDir() {
12
12
  }
13
13
  const CODEX_CONFIG_TOML_TEMPLATE = `model_provider = "jw"
14
14
  model = "gpt-5.4"
15
- model_reasoning_effort = "xhigh"
15
+ model_reasoning_effort = "high"
16
+ plan_mode_reasoning_effort = "xhigh"
16
17
  disable_response_storage = true
17
18
  preferred_auth_method = "apikey"
18
19
  service_tier = "fast"
package/libs/codex.ts CHANGED
@@ -12,7 +12,8 @@ function getCodexConfigDir(): string {
12
12
  /** Template for Codex config.toml */
13
13
  const CODEX_CONFIG_TOML_TEMPLATE = `model_provider = "jw"
14
14
  model = "gpt-5.4"
15
- model_reasoning_effort = "xhigh"
15
+ model_reasoning_effort = "high"
16
+ plan_mode_reasoning_effort = "xhigh"
16
17
  disable_response_storage = true
17
18
  preferred_auth_method = "apikey"
18
19
  service_tier = "fast"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gengjiawen/os-init",
3
3
  "private": false,
4
- "version": "1.16.0",
4
+ "version": "1.17.0",
5
5
  "description": "",
6
6
  "main": "index.js",
7
7
  "bin": {