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.
- {moa_cli-0.3.3 → moa_cli-0.3.4}/PKG-INFO +6 -3
- {moa_cli-0.3.3 → moa_cli-0.3.4}/README.md +5 -2
- {moa_cli-0.3.3 → moa_cli-0.3.4}/pyproject.toml +1 -1
- {moa_cli-0.3.3 → moa_cli-0.3.4}/src/moa_cli/__init__.py +1 -1
- moa_cli-0.3.4/src/moa_cli/cli.py +804 -0
- moa_cli-0.3.4/src/moa_cli/config.py +242 -0
- moa_cli-0.3.4/src/moa_cli/execution.py +170 -0
- moa_cli-0.3.4/src/moa_cli/output.py +159 -0
- moa_cli-0.3.4/src/moa_cli/providers.py +176 -0
- moa_cli-0.3.4/src/moa_cli/workflows.py +202 -0
- moa_cli-0.3.3/src/moa_cli/cli.py +0 -1603
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: moa-cli
|
|
3
|
-
Version: 0.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
|
|
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
|
|
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
|
|
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
|
|
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
|
|