@rnbsolucoes/axion-code 0.1.23 → 0.1.25
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
CHANGED
|
@@ -61,6 +61,7 @@ axion-code mcp import .\mcp-servers.json
|
|
|
61
61
|
axion-code plugins list --json
|
|
62
62
|
axion-code agents list --json
|
|
63
63
|
axion-code agents run bug-hunter "review this login flow"
|
|
64
|
+
axion-code agents run-many bug-hunter,performance-reviewer "review this login flow"
|
|
64
65
|
axion-code learn --json
|
|
65
66
|
axion-code package inspect <path>
|
|
66
67
|
```
|
|
@@ -222,6 +223,7 @@ The interactive TUI supports:
|
|
|
222
223
|
/plugins
|
|
223
224
|
/agents
|
|
224
225
|
/agents run <id> <prompt>
|
|
226
|
+
/agents run-many <id,id,...> <prompt>
|
|
225
227
|
```
|
|
226
228
|
|
|
227
229
|
Slash palette behavior: `↑/↓` selects, `Tab` completes the selected command, `Enter` executes the selected command, `Esc` closes active menus/wizards.
|
|
@@ -237,7 +239,7 @@ unchanged.
|
|
|
237
239
|
|
|
238
240
|
`/mcp` opens an inline MCP list. Enabled servers can be disabled, disabled servers can be enabled, and non-native servers can be uninstalled while preserving valid `mcp-servers.json` formatting.
|
|
239
241
|
|
|
240
|
-
`/agents` lists the native isolated subagents. `/agents run <id> <prompt>` calls one with an isolated prompt while inheriting the active provider/model from the main agent.
|
|
242
|
+
`/agents` lists the native isolated subagents. `/agents run <id> <prompt>` calls one with an isolated prompt while inheriting the active provider/model from the main agent. `/agents run-many <id,id,...> <prompt>` runs up to eight isolated subagents in parallel, then returns their individual outputs plus a compact comparison and aggregate token usage.
|
|
241
243
|
|
|
242
244
|
## MCP, Plugins And Subagents
|
|
243
245
|
|
|
@@ -315,7 +317,8 @@ axion permission resolve <approval-id> --deny --reason "not needed" --json
|
|
|
315
317
|
axion tool run Read "{\"path\":\"README.md\"}" --mode full_permission --json
|
|
316
318
|
axion tool run Write "{\"path\":\"notes/out.txt\",\"content\":\"approved\"}" --session smoke --turn turn-1 --approval <approval-id> --mode request_permission --json
|
|
317
319
|
axion tool run Shell "{\"command\":\"echo axion-shell\"}" --session smoke --turn turn-1 --approval <approval-id> --mode request_permission --json
|
|
318
|
-
|
|
320
|
+
# Shape: replace server/tool with an enabled MCP tool advertised by tools/list.
|
|
321
|
+
axion tool run mcp__your-server__list_items "{\"query\":\"PREVC\"}" --mode full_permission --json
|
|
319
322
|
```
|
|
320
323
|
|
|
321
324
|
Security invariants:
|
|
@@ -375,4 +378,4 @@ This is a functional direction MVP, not the full harness:
|
|
|
375
378
|
`tool_result` continuation turn;
|
|
376
379
|
- remote MCP transports, browser, process and unknown tools remain blocked;
|
|
377
380
|
- no executable Pi RPC bridge yet;
|
|
378
|
-
- native subagent execution is prompt-isolated and provider/model-inherited;
|
|
381
|
+
- native subagent execution is prompt-isolated and provider/model-inherited; `agents run-many` provides parallel fan-out, compact comparison and aggregate usage. Streaming subagent deltas and budget ceilings remain next-cycle items.
|
|
Binary file
|
|
Binary file
|