moa-cli 0.3.3__tar.gz → 0.3.4__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: moa-cli
3
- Version: 0.3.3
3
+ Version: 0.3.4
4
4
  Summary: Ask one question to multiple local AI coding CLIs in parallel and collect their answers.
5
5
  Keywords: llm,agents,cli,claude,codex,agy,opencode,peer-review
6
6
  Author: Paul-Louis Pröve
@@ -280,12 +280,15 @@ Invocations below show the default (read-only) flags; `--yolo` swaps in each too
280
280
 
281
281
  | Provider | CLI | Invocation (read-only default) |
282
282
  | ----------- | ---------- | ------------------------------------------------------------------- |
283
- | `claude` | `claude` | `claude --model opus --permission-mode plan -p PROMPT` |
283
+ | `claude` | `claude` | `claude --model opus --permission-mode default -p PROMPT` |
284
284
  | `codex` | `codex` | `codex exec -m gpt-5.5 --skip-git-repo-check -s read-only PROMPT` |
285
285
  | `agy` | `agy` | `agy --sandbox --model "Gemini 3.1 Pro (High)" -p PROMPT` (partial: shell only - can still edit files) |
286
286
  | `opencode` | `opencode` | `opencode run --agent plan PROMPT` |
287
287
 
288
- Adding a new agent is a single entry in the `PROVIDERS` table in `src/moa_cli/cli.py` (executable, default model, command builder, permission flags); it then participates in detection, `-n` selection, and `distill` automatically.
288
+ Adding a new agent is a single entry in the `PROVIDERS` table in
289
+ `src/moa_cli/providers.py` (executable, default model, command builder,
290
+ permission flags); it then participates in detection, `-n` selection, and
291
+ `distill` automatically.
289
292
 
290
293
  ## Agent skill
291
294
 
@@ -269,12 +269,15 @@ Invocations below show the default (read-only) flags; `--yolo` swaps in each too
269
269
 
270
270
  | Provider | CLI | Invocation (read-only default) |
271
271
  | ----------- | ---------- | ------------------------------------------------------------------- |
272
- | `claude` | `claude` | `claude --model opus --permission-mode plan -p PROMPT` |
272
+ | `claude` | `claude` | `claude --model opus --permission-mode default -p PROMPT` |
273
273
  | `codex` | `codex` | `codex exec -m gpt-5.5 --skip-git-repo-check -s read-only PROMPT` |
274
274
  | `agy` | `agy` | `agy --sandbox --model "Gemini 3.1 Pro (High)" -p PROMPT` (partial: shell only - can still edit files) |
275
275
  | `opencode` | `opencode` | `opencode run --agent plan PROMPT` |
276
276
 
277
- Adding a new agent is a single entry in the `PROVIDERS` table in `src/moa_cli/cli.py` (executable, default model, command builder, permission flags); it then participates in detection, `-n` selection, and `distill` automatically.
277
+ Adding a new agent is a single entry in the `PROVIDERS` table in
278
+ `src/moa_cli/providers.py` (executable, default model, command builder,
279
+ permission flags); it then participates in detection, `-n` selection, and
280
+ `distill` automatically.
278
281
 
279
282
  ## Agent skill
280
283
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "moa-cli"
3
- version = "0.3.3"
3
+ version = "0.3.4"
4
4
  description = "Ask one question to multiple local AI coding CLIs in parallel and collect their answers."
5
5
  readme = "README.md"
6
6
  authors = [
@@ -1,3 +1,3 @@
1
1
  """MOA CLI package."""
2
2
 
3
- __version__ = "0.3.3"
3
+ __version__ = "0.3.4"