impel-cli 0.20.32 → 0.20.33
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 +11 -10
- package/RELEASE_NOTES.md +11 -0
- package/docs/native-agent-host-capability-matrix.md +4 -4
- package/package.json +1 -1
- package/src/agents.js +4 -4
package/README.md
CHANGED
|
@@ -187,16 +187,17 @@ 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
|
-
for the thin adapter turns, a read-only local
|
|
192
|
-
binding, and only that binding's answer/run,
|
|
193
|
-
omits unrelated local repository, app,
|
|
194
|
-
and skill-catalog prompt context; the
|
|
195
|
-
substantive work. The path also omits
|
|
196
|
-
so there is no parent spawn, parent
|
|
197
|
-
developer-instruction, MCP, approval,
|
|
198
|
-
with `--agent`. The selected
|
|
199
|
-
Codex starts. Ordinary `impel
|
|
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. It omits unrelated local repository, app,
|
|
194
|
+
collaboration, permission, environment, and skill-catalog prompt context; the
|
|
195
|
+
selected Eve agent still performs the substantive work. The path also omits
|
|
196
|
+
the normal parent specialist instructions, so there is no parent spawn, parent
|
|
197
|
+
wait, or relay turn. Model, profile, developer-instruction, MCP, approval,
|
|
198
|
+
sandbox, and feature overrides are rejected with `--agent`. The selected
|
|
199
|
+
tenant and profile integrity must match before Codex starts. Ordinary `impel
|
|
200
|
+
codex` passthrough is unchanged.
|
|
200
201
|
|
|
201
202
|
## Remote Fargate sessions
|
|
202
203
|
|
package/RELEASE_NOTES.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Release notes
|
|
2
2
|
|
|
3
|
+
## 0.20.33 — Faster Codex native-agent relay
|
|
4
|
+
|
|
5
|
+
- Uses the ultra-fast Codex Spark model at low reasoning for fixed-binding
|
|
6
|
+
native-agent adapter turns; the selected Eve agent still owns the substantive
|
|
7
|
+
task and model choice.
|
|
8
|
+
- Preserves the direct-only MCP allowlist, read-only sandbox, durable
|
|
9
|
+
continuation recovery, and minimal host prompt while reducing long-answer
|
|
10
|
+
relay latency.
|
|
11
|
+
- Advances the managed profile manifest so existing CLI and Desktop adapters
|
|
12
|
+
refresh immediately on update.
|
|
13
|
+
|
|
3
14
|
## 0.20.32 — Recover transient managed access misses
|
|
4
15
|
|
|
5
16
|
- Retries one exact MCP request when the gateway reports its specific managed
|
|
@@ -37,10 +37,10 @@ is treated as an eager host.
|
|
|
37
37
|
and re-qualified rather than receiving unknown configuration.
|
|
38
38
|
- `mcp__impel_agent` is the native tool namespace. The server id
|
|
39
39
|
`impel_agent` is not equivalent and does not qualify as direct exposure.
|
|
40
|
-
- Generated Codex fixed-binding adapters use
|
|
41
|
-
tool-selection and terminal-relay turns, with
|
|
42
|
-
catalog context disabled. The selected Eve
|
|
43
|
-
still owns the substantive task.
|
|
40
|
+
- Generated Codex fixed-binding adapters use the ultra-fast Codex Spark model
|
|
41
|
+
at low reasoning for the thin tool-selection and terminal-relay turns, with
|
|
42
|
+
unrelated local host and skill-catalog context disabled. The selected Eve
|
|
43
|
+
agent, not this wrapper model, still owns the substantive task.
|
|
44
44
|
|
|
45
45
|
## Requalification
|
|
46
46
|
|
package/package.json
CHANGED
package/src/agents.js
CHANGED
|
@@ -55,12 +55,12 @@ export const NATIVE_AGENT_RESUME_TOOL = "resume_native_agent_run";
|
|
|
55
55
|
export const NATIVE_AGENT_RECOVER_TOOL = "recover_native_agent_runs";
|
|
56
56
|
export const NATIVE_AGENT_CONTINUATION_SCHEMA = "impel.native-agent-continuation.v1";
|
|
57
57
|
export const MANAGED_AGENT_MCP_SERVER = "impel_agent";
|
|
58
|
-
export const MANAGED_AGENT_MANIFEST_VERSION =
|
|
58
|
+
export const MANAGED_AGENT_MANIFEST_VERSION = 19;
|
|
59
59
|
|
|
60
60
|
// The host model only selects the fixed MCP tool and faithfully returns its
|
|
61
|
-
// result.
|
|
62
|
-
//
|
|
63
|
-
const CODEX_AGENT_ADAPTER_MODEL = "gpt-5.
|
|
61
|
+
// result. Spark minimizes those transport-only turns while the selected Eve
|
|
62
|
+
// agent remains responsible for the substantive work.
|
|
63
|
+
const CODEX_AGENT_ADAPTER_MODEL = "gpt-5.3-codex-spark";
|
|
64
64
|
|
|
65
65
|
const NATIVE_AGENT_TOOL_NAMES = [
|
|
66
66
|
NATIVE_AGENT_RUN_TOOL,
|