@rnbsolucoes/axion-code 0.1.22 → 0.1.24

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. The subagent returns findings/action feedback instead of joining the main context by default.
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
 
@@ -292,15 +294,16 @@ provider as a follow-up `tool_result` continuation turn, so the agent can use
292
294
  the evidence before answering. Unsupported tools remain explicitly pending until
293
295
  a dedicated adapter exists.
294
296
 
295
- `axion tool run` exposes the first guarded dispatcher surface. The CLI and TUI
297
+ `axion tool run` exposes the guarded dispatcher surface. The CLI and TUI
296
298
  currently support workspace-local `Read`, `Glob`, `Grep`, `Write` and `Edit`,
297
- plus governed `Shell`/`Bash`/`PowerShell` commands that run from a workspace
298
- directory with timeout and bounded output. Provider tool aliases such as
299
- `read_file`, `write_file` and `run_command` are normalized to native tool names
300
- before approval/execution. When the active permission mode requires approval,
301
- execution is allowed only if the supplied approval is already approved and
302
- matches the exact redacted tool request. MCP, browser, process and unknown tools
303
- remain unsupported even when an approval exists.
299
+ governed `Shell`/`Bash`/`PowerShell` commands that run from a workspace
300
+ directory with timeout and bounded output, and enabled stdio MCP tools named as
301
+ `mcp__<server-id>__<tool-name>`. Provider tool aliases such as `read_file`,
302
+ `write_file` and `run_command` are normalized to native tool names before
303
+ approval/execution. When the active permission mode requires approval, execution
304
+ is allowed only if the supplied approval is already approved and matches the
305
+ exact redacted tool request. Remote MCP transports, browser, process and
306
+ unknown tools remain unsupported even when an approval exists.
304
307
 
305
308
  Examples:
306
309
 
@@ -314,6 +317,8 @@ axion permission resolve <approval-id> --deny --reason "not needed" --json
314
317
  axion tool run Read "{\"path\":\"README.md\"}" --mode full_permission --json
315
318
  axion tool run Write "{\"path\":\"notes/out.txt\",\"content\":\"approved\"}" --session smoke --turn turn-1 --approval <approval-id> --mode request_permission --json
316
319
  axion tool run Shell "{\"command\":\"echo axion-shell\"}" --session smoke --turn turn-1 --approval <approval-id> --mode request_permission --json
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
317
322
  ```
318
323
 
319
324
  Security invariants:
@@ -327,6 +332,8 @@ Security invariants:
327
332
  - unknown native tools are default-deny until they are classified.
328
333
  - MCP tools are mutating by default; only read-shaped names such as `find_*`,
329
334
  `get_*`, `list_*`, `search_*` and `*_overview` are downgraded to read-only.
335
+ The dispatcher validates that enabled stdio MCP servers advertise the target
336
+ tool through `tools/list` before calling `tools/call`.
330
337
 
331
338
  Provider menu actions:
332
339
 
@@ -364,11 +371,11 @@ This is a functional direction MVP, not the full harness:
364
371
  - terminal logo uses Sixel when available and falls back to width-bounded ANSI/block rendering;
365
372
  - initial chat splash shows the Axion logo and system name until the first interaction;
366
373
  - guarded dispatcher execution is limited to workspace-local `Read`, `Glob`,
367
- `Grep`, `Write` and `Edit`, plus governed workspace-scoped shell commands;
374
+ `Grep`, `Write` and `Edit`, governed workspace-scoped shell commands and
375
+ enabled stdio MCP tools;
368
376
  the TUI executes these after approval and shows the result, then feeds
369
377
  successful supported results back into the provider as an iterative
370
378
  `tool_result` continuation turn;
371
- - MCP, browser, process and unknown tools remain blocked;
379
+ - remote MCP transports, browser, process and unknown tools remain blocked;
372
380
  - no executable Pi RPC bridge yet;
373
- - no MCP transport execution yet;
374
- - native subagent execution is prompt-isolated and provider/model-inherited; richer multi-subagent orchestration, streaming and budget telemetry remain next-cycle items.
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rnbsolucoes/axion-code",
3
- "version": "0.1.22",
3
+ "version": "0.1.24",
4
4
  "description": "Axion Code CLI harness for the Axion ecosystem.",
5
5
  "type": "module",
6
6
  "repository": {