impel-cli 0.20.21 → 0.20.22

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,15 +187,16 @@ 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 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.
190
+ This path loads a generated, tenant-bound profile with Luna at low reasoning
191
+ for the thin adapter turns, a read-only local sandbox, the exact fixed MCP
192
+ binding, and only that binding's answer/run, resume, and recovery tools. It
193
+ omits unrelated local repository, app, collaboration, permission, and
194
+ environment prompt context; the selected Eve agent still performs the
195
+ substantive work. The path also omits the normal parent specialist
196
+ instructions, so there is no parent spawn, parent wait, or relay turn. Model,
197
+ profile, developer-instruction, MCP, approval, sandbox, and feature overrides
198
+ are rejected with `--agent`. The selected tenant and profile integrity must
199
+ match before Codex starts. Ordinary `impel codex` passthrough is unchanged.
199
200
 
200
201
  ## Remote Fargate sessions
201
202
 
package/RELEASE_NOTES.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release notes
2
2
 
3
+ ## 0.20.22 — Minimal-context Codex adapters
4
+
5
+ - Returns fixed-binding adapters to Luna's deterministic direct-only MCP route
6
+ and removes unrelated repository, app, collaboration, permission, and
7
+ environment context from their two thin host turns.
8
+ - Advances the managed profile manifest so existing CLI and Desktop adapters
9
+ refresh immediately onto the smaller prompt and exact direct structure.
10
+
3
11
  ## 0.20.21 — Faster Codex adapter turns
4
12
 
5
13
  - Uses the ultra-fast Codex Spark model at low reasoning for generated
@@ -29,15 +29,16 @@ is treated as an eager host.
29
29
  phase timestamps, counts, durations, build identifiers, and terminal classes
30
30
  only.
31
31
  - Top-level direct profiles exist only in Impel-isolated Codex and managed
32
- ChatGPT homes. Bare/native Codex homes do not receive the 0.146.0-only key or
33
- the new top-level profiles. `impel codex` resolves only the reviewed pinned
34
- binary; an older or newer unqualified build must be updated and re-qualified
35
- rather than receiving an unknown configuration key.
32
+ ChatGPT homes. Bare/native Codex homes do not receive the qualified feature
33
+ settings or the new top-level profiles. `impel codex` resolves only the
34
+ reviewed pinned binary; an older or newer unqualified build must be updated
35
+ and re-qualified rather than receiving unknown configuration.
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
+ - Generated Codex fixed-binding adapters use Luna at low reasoning for the
39
+ thin tool-selection and terminal-relay turns, with unrelated local host
40
+ context disabled. The selected Eve agent, not this wrapper model, still owns
41
+ the substantive task.
41
42
 
42
43
  ## Requalification
43
44
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impel-cli",
3
- "version": "0.20.21",
3
+ "version": "0.20.22",
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,12 +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 = 13;
55
+ export const MANAGED_AGENT_MANIFEST_VERSION = 14;
56
56
 
57
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";
58
+ // result. Luna preserves deterministic direct-only code-mode routing while the
59
+ // selected Eve agent remains responsible for the substantive work.
60
+ const CODEX_AGENT_ADAPTER_MODEL = "gpt-5.6-luna";
61
61
 
62
62
  const NATIVE_AGENT_TOOL_NAMES = [
63
63
  NATIVE_AGENT_RUN_TOOL,
@@ -778,6 +778,11 @@ function renderCodexConfiguration({
778
778
  `model = ${JSON.stringify(CODEX_AGENT_ADAPTER_MODEL)}`,
779
779
  'model_reasoning_effort = "low"',
780
780
  'sandbox_mode = "read-only"',
781
+ "project_doc_max_bytes = 0",
782
+ "include_permissions_instructions = false",
783
+ "include_apps_instructions = false",
784
+ "include_collaboration_mode_instructions = false",
785
+ "include_environment_context = false",
781
786
  `developer_instructions = ${JSON.stringify(recoveryOnly ? retiredAdapterInstructions(tenantId, agent) : codexAdapterInstructions(tenantId, agent))}`,
782
787
  "",
783
788
  ...(directCodeMode ? [