impel-cli 0.20.22 → 0.20.23
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 +7 -7
- package/RELEASE_NOTES.md +8 -0
- package/docs/native-agent-host-capability-matrix.md +4 -4
- package/package.json +1 -1
- package/src/agents.js +4 -1
package/README.md
CHANGED
|
@@ -190,13 +190,13 @@ impel codex --agent research-agent exec "answer this question"
|
|
|
190
190
|
This path loads a generated, tenant-bound profile with Luna at low reasoning
|
|
191
191
|
for the thin adapter turns, a read-only local sandbox, the exact fixed MCP
|
|
192
192
|
binding, and only that binding's answer/run, resume, and recovery tools. It
|
|
193
|
-
omits unrelated local repository, app, collaboration, permission,
|
|
194
|
-
|
|
195
|
-
substantive work. The path also omits the normal parent specialist
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
193
|
+
omits unrelated local repository, app, collaboration, permission, environment,
|
|
194
|
+
and skill-catalog prompt context; the selected Eve agent still performs the
|
|
195
|
+
substantive work. The path also omits the normal parent specialist instructions,
|
|
196
|
+
so there is no parent spawn, parent wait, or relay turn. Model, profile,
|
|
197
|
+
developer-instruction, MCP, approval, sandbox, and feature overrides are rejected
|
|
198
|
+
with `--agent`. The selected tenant and profile integrity must match before
|
|
199
|
+
Codex starts. Ordinary `impel codex` passthrough is unchanged.
|
|
200
200
|
|
|
201
201
|
## Remote Fargate sessions
|
|
202
202
|
|
package/RELEASE_NOTES.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release notes
|
|
2
2
|
|
|
3
|
+
## 0.20.23 — Remove skill-catalog adapter overhead
|
|
4
|
+
|
|
5
|
+
- Removes the installed skill catalog from fixed-binding Codex adapter prompts;
|
|
6
|
+
these transport-only wrappers cannot use skills and the selected Eve agent
|
|
7
|
+
continues to own the substantive task.
|
|
8
|
+
- Advances the managed profile manifest so existing CLI and Desktop adapters
|
|
9
|
+
refresh onto the faster wrapper immediately.
|
|
10
|
+
|
|
3
11
|
## 0.20.22 — Minimal-context Codex adapters
|
|
4
12
|
|
|
5
13
|
- Returns fixed-binding adapters to Luna's deterministic direct-only MCP route
|
|
@@ -35,10 +35,10 @@ is treated as an eager host.
|
|
|
35
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
|
-
|
|
40
|
-
context disabled. The selected Eve agent, not this wrapper model,
|
|
41
|
-
the substantive task.
|
|
38
|
+
- Generated Codex fixed-binding adapters use Luna at low reasoning for the thin
|
|
39
|
+
tool-selection and terminal-relay turns, with unrelated local host and skill
|
|
40
|
+
catalog context disabled. The selected Eve agent, not this wrapper model,
|
|
41
|
+
still owns the substantive task.
|
|
42
42
|
|
|
43
43
|
## Requalification
|
|
44
44
|
|
package/package.json
CHANGED
package/src/agents.js
CHANGED
|
@@ -52,7 +52,7 @@ 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 = 15;
|
|
56
56
|
|
|
57
57
|
// The host model only selects the fixed MCP tool and faithfully returns its
|
|
58
58
|
// result. Luna preserves deterministic direct-only code-mode routing while the
|
|
@@ -785,6 +785,9 @@ function renderCodexConfiguration({
|
|
|
785
785
|
"include_environment_context = false",
|
|
786
786
|
`developer_instructions = ${JSON.stringify(recoveryOnly ? retiredAdapterInstructions(tenantId, agent) : codexAdapterInstructions(tenantId, agent))}`,
|
|
787
787
|
"",
|
|
788
|
+
"[skills]",
|
|
789
|
+
"include_instructions = false",
|
|
790
|
+
"",
|
|
788
791
|
...(directCodeMode ? [
|
|
789
792
|
"[features]",
|
|
790
793
|
"multi_agent = false",
|