impel-cli 0.20.20 → 0.20.21

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
@@ -187,13 +187,15 @@ it by exact agent ID (preferred) or unique exact title:
187
187
  impel codex --agent research-agent exec "answer this question"
188
188
  ```
189
189
 
190
- This path loads a generated, tenant-bound profile with Luna/low reasoning, a
191
- read-only local sandbox, the exact fixed MCP binding, and only that binding's
192
- answer/run, resume, and recovery tools. It omits the normal parent specialist
193
- instructions, so there is no parent spawn, parent wait, or relay turn. Model,
194
- profile, developer-instruction, MCP, approval, sandbox, and feature overrides
195
- are rejected with `--agent`. The selected tenant and profile integrity must
196
- match before Codex starts. Ordinary `impel codex` passthrough is unchanged.
190
+ This path loads a generated, tenant-bound profile with the ultra-fast Codex
191
+ Spark model at low reasoning for the thin adapter turns, a read-only local
192
+ sandbox, the exact fixed MCP binding, and only that binding's answer/run,
193
+ resume, and recovery tools. The selected Eve agent still performs the
194
+ substantive work. The path omits the normal parent specialist instructions, so
195
+ there is no parent spawn, parent wait, or relay turn. Model, profile,
196
+ developer-instruction, MCP, approval, sandbox, and feature overrides are
197
+ rejected with `--agent`. The selected tenant and profile integrity must match
198
+ before Codex starts. Ordinary `impel codex` passthrough is unchanged.
197
199
 
198
200
  ## Remote Fargate sessions
199
201
 
package/RELEASE_NOTES.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release notes
2
2
 
3
+ ## 0.20.21 — Faster Codex adapter turns
4
+
5
+ - Uses the ultra-fast Codex Spark model at low reasoning for generated
6
+ fixed-binding adapters; the selected Eve agent still owns the substantive
7
+ task and model choice.
8
+ - Advances the managed profile manifest so existing CLI and Desktop adapters
9
+ refresh immediately onto the faster wrapper model.
10
+
3
11
  ## 0.20.20 — Minimal Codex adapter tool surface
4
12
 
5
13
  - Disables Codex's stable multi-agent feature inside qualified managed adapter
@@ -35,6 +35,9 @@ is treated as an eager host.
35
35
  rather than receiving an unknown configuration key.
36
36
  - `mcp__impel_agent` is the native tool namespace. The server id
37
37
  `impel_agent` is not equivalent and does not qualify as direct exposure.
38
+ - Generated Codex fixed-binding adapters use `gpt-5.3-codex-spark` at low
39
+ reasoning for the thin tool-selection and terminal-relay turns. The selected
40
+ Eve agent, not this wrapper model, still owns the substantive task.
38
41
 
39
42
  ## Requalification
40
43
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impel-cli",
3
- "version": "0.20.20",
3
+ "version": "0.20.21",
4
4
  "description": "Prepare isolated Claude and Codex workspaces for every accessible Impel tenant",
5
5
  "type": "module",
6
6
  "bin": {
package/src/agents.js CHANGED
@@ -52,7 +52,12 @@ export const NATIVE_AGENT_RUN_TOOL = "run_native_agent";
52
52
  export const NATIVE_AGENT_RESUME_TOOL = "resume_native_agent_run";
53
53
  export const NATIVE_AGENT_RECOVER_TOOL = "recover_native_agent_runs";
54
54
  export const MANAGED_AGENT_MCP_SERVER = "impel_agent";
55
- export const MANAGED_AGENT_MANIFEST_VERSION = 12;
55
+ export const MANAGED_AGENT_MANIFEST_VERSION = 13;
56
+
57
+ // The host model only selects the fixed MCP tool and faithfully returns its
58
+ // result. Spark minimizes those two wrapper turns while the selected Eve agent
59
+ // remains responsible for the substantive work.
60
+ const CODEX_AGENT_ADAPTER_MODEL = "gpt-5.3-codex-spark";
56
61
 
57
62
  const NATIVE_AGENT_TOOL_NAMES = [
58
63
  NATIVE_AGENT_RUN_TOOL,
@@ -770,7 +775,7 @@ function renderCodexConfiguration({
770
775
  `name = ${JSON.stringify(name)}`,
771
776
  `description = ${JSON.stringify(description)}`,
772
777
  ] : []),
773
- 'model = "gpt-5.6-luna"',
778
+ `model = ${JSON.stringify(CODEX_AGENT_ADAPTER_MODEL)}`,
774
779
  'model_reasoning_effort = "low"',
775
780
  'sandbox_mode = "read-only"',
776
781
  `developer_instructions = ${JSON.stringify(recoveryOnly ? retiredAdapterInstructions(tenantId, agent) : codexAdapterInstructions(tenantId, agent))}`,