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 +10 -9
- package/RELEASE_NOTES.md +8 -0
- package/docs/native-agent-host-capability-matrix.md +8 -7
- package/package.json +1 -1
- package/src/agents.js +9 -4
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
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
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
|
|
33
|
-
the new top-level profiles. `impel codex` resolves only the
|
|
34
|
-
binary; an older or newer unqualified build must be updated
|
|
35
|
-
rather than receiving
|
|
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
|
|
39
|
-
|
|
40
|
-
Eve agent, not this wrapper model, still owns
|
|
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
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 =
|
|
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.
|
|
59
|
-
// remains responsible for the substantive work.
|
|
60
|
-
const CODEX_AGENT_ADAPTER_MODEL = "gpt-5.
|
|
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 ? [
|