impel-cli 0.20.42 → 0.20.44
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 -0
- package/package.json +1 -1
- package/scripts/profile-native-codex.mjs +604 -57
- package/src/agents.js +217 -21
- package/src/cli.js +1 -0
- package/src/commands/agents.js +1 -0
- package/src/commands/launch.js +31 -7
- package/src/managedProfileVersion.js +1 -1
- package/src/nativeAgentTransport.js +9 -2
- package/src/selfInvocation.js +20 -1
package/README.md
CHANGED
|
@@ -188,6 +188,16 @@ impel claude --agent research-agent --print "answer this question"
|
|
|
188
188
|
impel codex --agent research-agent exec "answer this question"
|
|
189
189
|
```
|
|
190
190
|
|
|
191
|
+
Claude profiles also generate `/ask-<agent>` commands for synchronized,
|
|
192
|
+
read-only agents that support direct answers. The generated command invokes
|
|
193
|
+
the exact tenant-bound agent, attributes the response, and returns its answer
|
|
194
|
+
verbatim; the ordinary relay subagent remains available. To suppress these
|
|
195
|
+
additive commands and remove previously generated ones on the next sync, run:
|
|
196
|
+
|
|
197
|
+
```sh
|
|
198
|
+
IMPEL_NATIVE_SLASH_COMMANDS=0 impel agents sync claude
|
|
199
|
+
```
|
|
200
|
+
|
|
191
201
|
Both managed paths verify the selected tenant manifest and generated adapter
|
|
192
202
|
bytes, resolve the canonical native agent name, and omit the normal parent
|
|
193
203
|
specialist instructions. Claude Code receives the explicit 2.1.220 opt-in and
|