From c0fbcbd31b8c95d2055e9fe42a449e631f50d0af Mon Sep 17 00:00:00 2001 From: pedrohcms2018 Date: Mon, 6 Apr 2026 11:12:21 -0300 Subject: [PATCH 1/2] feat(dispatch): add Gemini to dispatch skill. --- skills/dispatch.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/skills/dispatch.md b/skills/dispatch.md index b4ff853..b46e4d7 100644 --- a/skills/dispatch.md +++ b/skills/dispatch.md @@ -82,12 +82,13 @@ This is the only registry. If a persona is not listed there, it does not exist. Each row maps a provider to its `preferredModel` value, CLI tool, and concrete models per tier. Tier classes: **tier-1** = fast/cheap, **tier-2** = balanced, **tier-3** = reasoning/smartest. -| Provider | `preferredModel` | CLI | tier-1 | tier-2 | tier-3 | -| ----------- | ---------------- | -------------- | ------------------------------------ | ----------------- | ------------------------------ | -| Claude Code | `claude` | `claude` | Haiku | Sonnet | Opus | -| Codex CLI | `codex` | `codex` | `gpt-5.4-mini` | `gpt-5.3-codex` | `gpt-5.4` | -| Cursor CLI | `cursor` | `cursor-agent` | `auto` | `auto` | `auto` | +| Provider | `preferredModel` | CLI | tier-1 | tier-2 | tier-3 | +|-------------|------------------|----------------|--------------------------------------|----------------------------------|----------------------------------| +| Claude Code | `claude` | `claude` | Haiku | Sonnet | Opus | +| Codex CLI | `codex` | `codex` | `gpt-5.4-mini` | `gpt-5.3-codex` | `gpt-5.4` | +| Cursor CLI | `cursor` | `cursor-agent` | `auto` | `auto` | `auto` | | Qwen | `qwen` | `opencode` | bailian-coding-plan/qwen3-coder-next | bailian-coding-plan/qwen3.5-plus | bailian-coding-plan/qwen3.5-plus | +| Gemini | `gemini` | `gemini` | gemini-2.5-flash | gemini-2.5-pro | gemini-3.1-pro-preview | ## CLI Dispatch @@ -105,6 +106,7 @@ Provider-specific flags (add entries as you integrate providers): - **`codex`**: `exec - --model [model] --sandbox workspace-write --skip-git-repo-check -C [workspace]`. Add `--full-auto` only when safety boundaries are already enforced by the environment. - **`cursor-agent`**: `--model [model]`. Add `--workspace [workspace]` only when explicitly provided. Add `--trust` only under externally enforced safety controls. - **`opencode`**: `OPENCODE_EXPERIMENTAL_BASH_DEFAULT_TIMEOUT_MS=600000 opencode run --model [provider/model]`. The env var raises the bash timeout from 120s to 600s. Optional: `--thinking` (shows thinking blocks). +- **`gemini`**: `gemini --model [model] --prompt [prompt]` ## Guardrails From 46084467e825f926909df9d9ac96397b511e58cf Mon Sep 17 00:00:00 2001 From: pedrohcms2018 Date: Mon, 6 Apr 2026 11:12:51 -0300 Subject: [PATCH 2/2] feat(changelog): Update change log with Gemini in dispatch skill --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a995be3..76f3f5b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Changelog ```log +0.4.4 - 2026/04/06 +feat(dispatch): add Gemini as provider to routing matrix + 0.4.3 - 2026/04/03 feat(maestro): add plan review gate — dedicated step between Parse and Dispatch ensures plans pass review before implementation