@iamdevlinph/codex-kit 1.0.18 → 1.0.20

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 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 does not modify the
12
- Codex model configuration; configuration is a separate, explicit command.
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 configure` sets these defaults while preserving unrelated settings:
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 = "medium"
77
+ model_reasoning_effort = "low"
77
78
  plan_mode_reasoning_effort = "high"
78
79
  ```
79
80
 
@@ -121,12 +121,16 @@ conditional procedures into validated project skills.
121
121
 
122
122
  ## Structure
123
123
 
124
- - Follow the repository's organization and naming. Prefer focused files and
125
- split mixed responsibilities when readability improves.
124
+ - Follow the repository's organization and naming. Organize feature-specific
125
+ code under the feature's existing directory; when a feature contains multiple
126
+ substantial UI pieces, place them in a `<feature>/components` subdirectory.
127
+ Keep broadly reused code in the repository's established shared locations.
126
128
  - Keep route and page files focused on page-level composition, data loading, and
127
129
  orchestration. Extract substantial self-contained UI sections and complex
128
- page-specific logic into colocated feature components or modules. Keep small
129
- one-use markup inline; do not create components solely to reduce line count.
130
+ page-specific logic into focused files colocated with the feature. Split large
131
+ or mixed-responsibility files by cohesive behavior so each file remains easy
132
+ to read, navigate, test, and review. Keep small one-use markup or logic inline;
133
+ do not create files or components solely to reduce line count.
130
134
  - Use intent-revealing domain names. A reader should understand what a variable
131
135
  contains or what a helper guarantees at the call site without opening its
132
136
  implementation. Avoid vague transformation names such as `normalized`,
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: "medium",
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: medium).
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 medium --plan-reasoning-effort high
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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iamdevlinph/codex-kit",
3
- "version": "1.0.18",
3
+ "version": "1.0.20",
4
4
  "description": "Portable Codex subagents and project AGENTS.md defaults.",
5
5
  "type": "module",
6
6
  "bin": {