@iamdevlinph/codex-kit 1.0.18 → 1.0.19
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/README.md +6 -5
- package/bin/codex-kit.js +4 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,8 +8,9 @@ Portable Codex setup for new devices and multiple projects. It provides:
|
|
|
8
8
|
- a package-owned `codex-kit-reconcile-agents` skill for semantic reconciliation
|
|
9
9
|
- safe commands for global setup, project synchronization, and reconciliation
|
|
10
10
|
|
|
11
|
-
The package contains no credentials. Global installation
|
|
12
|
-
|
|
11
|
+
The package contains no credentials. Global installation configures the Codex
|
|
12
|
+
root orchestrator to `gpt-5.6-sol` with low normal reasoning and high Plan-mode
|
|
13
|
+
reasoning. Use the separate configuration command to override these defaults.
|
|
13
14
|
|
|
14
15
|
## Install on a device
|
|
15
16
|
|
|
@@ -18,7 +19,6 @@ No npm or GitHub login is required. For regular use, install the CLI globally:
|
|
|
18
19
|
```sh
|
|
19
20
|
pnpm add --global @iamdevlinph/codex-kit@latest
|
|
20
21
|
codex-kit global install
|
|
21
|
-
codex-kit global configure
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
Start a new Codex task or restart the client after installation. Codex may ask
|
|
@@ -69,11 +69,12 @@ do not justify duplicate agents.
|
|
|
69
69
|
selected by the default automatic route. The root reuses delegated test evidence
|
|
70
70
|
and normally performs only lightweight integration checks.
|
|
71
71
|
|
|
72
|
-
`global
|
|
72
|
+
`global install` sets these defaults while preserving unrelated settings;
|
|
73
|
+
`global configure` can override them:
|
|
73
74
|
|
|
74
75
|
```toml
|
|
75
76
|
model = "gpt-5.6-sol"
|
|
76
|
-
model_reasoning_effort = "
|
|
77
|
+
model_reasoning_effort = "low"
|
|
77
78
|
plan_mode_reasoning_effort = "high"
|
|
78
79
|
```
|
|
79
80
|
|
package/bin/codex-kit.js
CHANGED
|
@@ -456,6 +456,7 @@ function installGlobal(options) {
|
|
|
456
456
|
next.globalAgents = { target: globalAgents };
|
|
457
457
|
next.hooks = installRoutingHooks(home, prior.hooks);
|
|
458
458
|
saveState(home, next);
|
|
459
|
+
configureGlobal(options);
|
|
459
460
|
const commitPusher = join5(home, "agents", "commit-pusher.toml");
|
|
460
461
|
if (existsSync5(commitPusher))
|
|
461
462
|
console.warn(
|
|
@@ -819,7 +820,7 @@ function parse(argv) {
|
|
|
819
820
|
cwd: process.cwd(),
|
|
820
821
|
codexHome: resolve2(process.env.CODEX_HOME || join7(homedir(), ".codex")),
|
|
821
822
|
orchestrator: "gpt-5.6-sol",
|
|
822
|
-
reasoningEffort: "
|
|
823
|
+
reasoningEffort: "low",
|
|
823
824
|
planReasoningEffort: "high",
|
|
824
825
|
force: false,
|
|
825
826
|
positionals: []
|
|
@@ -877,7 +878,7 @@ Options by command:
|
|
|
877
878
|
--force Replace modified config managed by codex-kit.
|
|
878
879
|
--orchestrator MODEL Set the root/orchestrator model (default: gpt-5.6-sol).
|
|
879
880
|
--model MODEL Alias for --orchestrator.
|
|
880
|
-
--reasoning-effort LEVEL Set normal reasoning effort (default:
|
|
881
|
+
--reasoning-effort LEVEL Set normal reasoning effort (default: low).
|
|
881
882
|
--plan-reasoning-effort LEVEL Set Plan-mode reasoning effort (default: high).
|
|
882
883
|
|
|
883
884
|
global list, global uninstall
|
|
@@ -892,7 +893,7 @@ Options by command:
|
|
|
892
893
|
|
|
893
894
|
Examples:
|
|
894
895
|
codex-kit global install --force
|
|
895
|
-
codex-kit global configure --reasoning-effort
|
|
896
|
+
codex-kit global configure --reasoning-effort low --plan-reasoning-effort high
|
|
896
897
|
codex-kit project sync --cwd /path/to/project --force
|
|
897
898
|
codex-kit project status --cwd /path/to/project`);
|
|
898
899
|
}
|