impel-cli 0.20.20 → 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 +6 -3
- package/RELEASE_NOTES.md +16 -0
- package/docs/native-agent-host-capability-matrix.md +8 -4
- package/package.json +1 -1
- package/src/agents.js +12 -2
package/README.md
CHANGED
|
@@ -187,9 +187,12 @@ 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
|
|
191
|
-
read-only local sandbox, the exact fixed MCP
|
|
192
|
-
answer/run, resume, and recovery tools. It
|
|
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
|
|
193
196
|
instructions, so there is no parent spawn, parent wait, or relay turn. Model,
|
|
194
197
|
profile, developer-instruction, MCP, approval, sandbox, and feature overrides
|
|
195
198
|
are rejected with `--agent`. The selected tenant and profile integrity must
|
package/RELEASE_NOTES.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
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
|
+
|
|
11
|
+
## 0.20.21 — Faster Codex adapter turns
|
|
12
|
+
|
|
13
|
+
- Uses the ultra-fast Codex Spark model at low reasoning for generated
|
|
14
|
+
fixed-binding adapters; the selected Eve agent still owns the substantive
|
|
15
|
+
task and model choice.
|
|
16
|
+
- Advances the managed profile manifest so existing CLI and Desktop adapters
|
|
17
|
+
refresh immediately onto the faster wrapper model.
|
|
18
|
+
|
|
3
19
|
## 0.20.20 — Minimal Codex adapter tool surface
|
|
4
20
|
|
|
5
21
|
- Disables Codex's stable multi-agent feature inside qualified managed adapter
|
|
@@ -29,12 +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 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.
|
|
38
42
|
|
|
39
43
|
## Requalification
|
|
40
44
|
|
package/package.json
CHANGED
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 =
|
|
55
|
+
export const MANAGED_AGENT_MANIFEST_VERSION = 14;
|
|
56
|
+
|
|
57
|
+
// The host model only selects the fixed MCP tool and faithfully returns its
|
|
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";
|
|
56
61
|
|
|
57
62
|
const NATIVE_AGENT_TOOL_NAMES = [
|
|
58
63
|
NATIVE_AGENT_RUN_TOOL,
|
|
@@ -770,9 +775,14 @@ function renderCodexConfiguration({
|
|
|
770
775
|
`name = ${JSON.stringify(name)}`,
|
|
771
776
|
`description = ${JSON.stringify(description)}`,
|
|
772
777
|
] : []),
|
|
773
|
-
|
|
778
|
+
`model = ${JSON.stringify(CODEX_AGENT_ADAPTER_MODEL)}`,
|
|
774
779
|
'model_reasoning_effort = "low"',
|
|
775
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",
|
|
776
786
|
`developer_instructions = ${JSON.stringify(recoveryOnly ? retiredAdapterInstructions(tenantId, agent) : codexAdapterInstructions(tenantId, agent))}`,
|
|
777
787
|
"",
|
|
778
788
|
...(directCodeMode ? [
|