omnilane 0.21.0 → 0.32.0

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.
@@ -31,9 +31,9 @@ trap cleanup_temp_files EXIT
31
31
  voter_spec() { # vendor -> "model<TAB>effort"
32
32
  case "$1" in
33
33
  codex) printf 'gpt-5.6-sol\thigh' ;;
34
- claude) printf 'claude-opus-5\thigh' ;;
35
- gemini) printf 'Gemini 3.1 Pro (High)\t-' ;;
36
- grok) printf 'grok-4.5\t-' ;;
34
+ claude) printf 'claude-fable-5-1\thigh' ;;
35
+ gemini) printf 'Gemini 3.7 Flash (High)\t-' ;;
36
+ grok) printf 'grok-4.6\t-' ;;
37
37
  *) return 1 ;;
38
38
  esac
39
39
  }
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: omnilane
3
- description: 'Universal model-routing table + cross-vendor dispatch for ANY harness (Claude Code, Codex, Grok Build, Antigravity). Use when delegating subtasks, choosing a model for work, planning multi-part tasks, or when asked about model routing, delegate, dispatch, which model, tier selection, escalate, 派工, 模型路由. One routing table; the main loop self-executes its own lane and shells out to every other vendor via dispatch.sh.'
3
+ description: 'Universal model-routing table + cross-vendor dispatch for ANY harness (Claude Code, Codex, Grok Build, Antigravity). Use when delegating subtasks, choosing a model for work, planning multi-part tasks, or when asked about model routing, delegate, dispatch, which model, tier selection, escalate, 派工, 模型路由. One routing table; implementation work dispatches by default via dispatch.sh — the main loop self-executes only reserved commander items.'
4
4
  ---
5
5
 
6
6
  # omnilane — one routing table, every harness
@@ -9,7 +9,11 @@ You (the main loop) may be Claude, GPT, Grok, or Gemini. The procedure is identi
9
9
 
10
10
  1. **Identify your main model.** You know which model you are running as.
11
11
  2. **Split the work into subtasks and classify each into a lane** (table below).
12
- 3. **If the lane's model is you, self-execute.** Otherwise dispatch:
12
+ 3. **Dispatch implementation work by default — even when the lane's model is
13
+ you.** Self-execute only reserved commander items: planning and
14
+ decomposition, writing task briefs, reviewing reports, acceptance checks,
15
+ replies to the operator, git commit/push, read-only verification, and
16
+ fixes of one line or less. Dispatch:
13
17
  `<repo>/scripts/dispatch.sh [--vendor V] [--mode work] [--workdir DIR] <lane> "<task>"`
14
18
  Add `--background` for long tasks; poll with `scripts/jobs.sh status|result <id>`.
15
19
  Before changing lane order from anecdotal outcomes, run
@@ -46,28 +50,26 @@ what dispatch picks when the first-choice vendor CLI is not installed.
46
50
 
47
51
  | Lane | First choice | Backup | When |
48
52
  |---|---|---|---|
49
- | hardest-coding | GPT-5.6 Sol (xhigh) | Claude Opus 5 (xhigh) | Hardest implementation, deep root-cause debug, correctness-critical edits |
50
- | bulk-mechanical | GPT-5.6 Terra (max) | Claude Sonnet 5 (high) | Refactors, migrations, tests, review sweeps — mechanical endurance |
51
- | triage | GPT-5.6 Luna (medium) | Gemini 3.6 Flash (Low) | High-volume scans, first-pass filtering |
52
- | hard-judgment | Claude Opus 5 (xhigh) | GPT-5.6 Sol (max) | Architecture arbitration, deep reasoning, second opinions |
53
- | taste-final | Claude Opus 5 (high) | GPT-5.6 Sol (max) | User-facing prose, prompt/doc polish, Chinese phrasing, style arbitration |
54
- | consult | Explicit named vendor/model | — (no fallback) | Direct natural-language consultation; always keep `--vendor` |
55
- | ui-draft | GPT-5.6 Sol (xhigh) | Claude Opus 5 (high) | UI drafts only WITH a design system / reference images; open-ended visual taste goes to taste-final |
56
- | long-context | Gemini 3.1 Pro (High) | GPT-5.6 Sol (high) | 1M-token synthesis; Pro is agentic-capable, while fast repeated loops prefer Flash on speed/cost |
57
- | fast-agentic | GPT-5.6 Luna (max) | Gemini 3.6 Flash (High) | Fast multi-step agentic loops, multimodal checks |
58
- | live-search | Grok 4.5 | — (off) | Realtime X/web search and social context |
59
- | coding-overflow | Grok 4.5 | Kimi K3 → Qwen3 Coder Plus → OpenCode | Codex-quota relief valve for mid-tier coding; verify factual claims |
53
+ | hardest-coding | Claude Fable 5.1 (xhigh) | GPT-5.6 Sol (xhigh) | Hardest implementation, deep root-cause debug, correctness-critical edits |
54
+ | bulk-mechanical | GPT-5.6 Sol (high) | Gemini 3.7 Flash (High) → Claude Sonnet 5 (high) | Refactors, migrations, tests, review sweeps — mechanical endurance |
55
+ | triage | GPT-5.6 Luna (high) | Gemini 3.7 Flash (Low) → Claude Haiku 4.5 | High-volume scans, first-pass filtering |
56
+ | hard-judgment | Claude Fable 5.1 (xhigh) | GPT-5.6 Sol (max) → Grok 4.6 | Architecture arbitration, deep reasoning, second opinions |
57
+ | taste-final | Claude Fable 5.1 (high) | GPT-5.6 Sol (max) | User-facing prose, prompt/doc polish, Chinese phrasing, style arbitration |
58
+ | consult | GPT-5.6 Sol (max) | Claude Fable 5.1 (high) → Grok 4.6 → Gemini 3.7 Flash (High) | Direct named-model consultation; always keep `--vendor` |
59
+ | ui-draft | GPT-5.6 Sol (xhigh) | Claude Fable 5.1 (high) | UI drafts only WITH a design system / reference images; open-ended visual taste goes to taste-final |
60
+ | long-context | Gemini 3.7 Flash (Medium) | GPT-5.6 Terra (max) → Claude Opus 5 (medium) | Long-context synthesis ordered on AA-LCR, then cost and throughput |
61
+ | fast-agentic | Gemini 3.7 Flash (Medium) | GPT-5.6 Luna (high) | Fast multi-step agentic loops, multimodal checks |
62
+ | live-search | Grok 4.6 | — (off) | Realtime X/web search and social context |
63
+ | coding-overflow | Grok 4.6 | Gemini 3.7 Flash (High) → Kimi K3 → Qwen3 Coder Plus → OpenCode | Codex-quota relief valve for mid-tier coding; verify factual claims |
60
64
  | arbitrate | off (opt-in vote panel) | — | Disabled by default. Enable with `arbitrate: vote codex,claude,grok -` in routing.local.yaml or via the configurator (any 1-4 voters). One quota hit PER VOTER PER ROUND; you chair: read the opinions and own the decision. Effort field 2 = debate round (voters rebut each other) |
61
65
 
62
- Claude Fable 5 (`claude-fable-5`) is absent from the defaults on purpose: the
63
- top Claude tier is usually the main loop itself, not a dispatched worker, and
64
- it prices at twice Opus 5. This is a cost / guardrail / main-loop policy choice,
65
- not a capability verdict — Artificial Analysis calls Opus 5 (61) and Fable 5 (60)
66
- "effectively tied" on the Intelligence Index, but Opus 5 leads AA-Briefcase by
67
- 146 Elo at 20% lower cost per task. Fable 5 keeps the lead on factual breadth
68
- (AA-Omniscience), so name it explicitly for recall-heavy consults. To route to
69
- it anyway, select it in the configurator or override a lane in
70
- `~/.omnilane/routing.local.yaml` (e.g. `taste-final: claude claude-fable-5 high`).
66
+ Claude Fable 5.1 (`claude-fable-5-1`) is in the judgment, taste, and
67
+ hardest-coding defaults because it leads Opus 5 on every Artificial Analysis
68
+ axis at the same effort. It is not in bulk or triage because it prices at twice
69
+ Opus 5 per token and consumes the most subscription quota per turn. Opus 5
70
+ remains the lower-hallucination, lower-price Claude choice and can return to any
71
+ lane via `~/.omnilane/routing.local.yaml`, for example:
72
+ `hard-judgment: claude claude-opus-5 xhigh`.
71
73
 
72
74
  ## Natural-language consultation
73
75
 
@@ -87,15 +89,15 @@ Users may speak normally; they do not need lane names.
87
89
  | Alias | Vendor | Model | Effort |
88
90
  |---|---|---|---|
89
91
  | Opus | claude | claude-opus-5 | high |
90
- | Fable | claude | claude-fable-5 | high |
92
+ | Fable 5.1 | claude | claude-fable-5-1 | high |
91
93
  | Sonnet | claude | claude-sonnet-5 | high |
92
94
  | Haiku | claude | claude-haiku-4-5 | - |
93
95
  | Sol | codex | gpt-5.6-sol | max |
94
96
  | Terra | codex | gpt-5.6-terra | max |
95
- | Luna | codex | gpt-5.6-luna | medium |
96
- | Grok 4.5 | grok | grok-4.5 | - |
97
- | Gemini Pro | gemini | Gemini 3.1 Pro (High) | - |
98
- | Gemini Flash | gemini | Gemini 3.6 Flash (High) | - |
97
+ | Luna | codex | gpt-5.6-luna | high |
98
+ | Grok 4.6 | grok | grok-4.6 | - |
99
+ | Gemini 3.1 Pro | gemini | Gemini 3.1 Pro (High) | - |
100
+ | Gemini 3.7 Flash | gemini | Gemini 3.7 Flash (High) | - |
99
101
  | Kimi | kimi | kimi-k3 | - |
100
102
  | Qwen | qwen | qwen3-coder-plus | - |
101
103
  | OpenCode | opencode | provider/model form, or `-` for its own default | - |
@@ -155,18 +157,24 @@ dispatch stay in this skill and the CLI. Manage the local board with
155
157
 
156
158
  ## Per-model notes (apply the row matching YOUR main model)
157
159
 
158
- - **Claude (Fable/Opus main)**: top judgment and taste are yours — self-execute;
159
- push mechanical coding volume out to the codex lanes.
160
+ - **Claude Fable 5.1 main**: hard judgment, taste finalization, and the hardest
161
+ coding are yours. Dispatch bulk work to Sol high and long-context or fast
162
+ loops to Gemini 3.7 Flash.
163
+ - **Claude Opus 5 main**: judgment and taste remain strong self-execute lanes;
164
+ use local overrides when its lower hallucination rate or price is preferred.
160
165
  - **Claude Sonnet main**: coordination/tools/mid-tier coding only; never
161
166
  self-assign top judgment or hardest implementation.
162
167
  - **GPT Sol main**: hardest coding + hard judgment are yours (use max for
163
168
  judgment turns, xhigh for coding); cross to taste-final for style calls.
164
- - **GPT Terra main**: bulk work is yours at max; escalate the genuinely hardest
165
- pieces to Sol instead of grinding.
166
- - **Grok 4.5 main**: mid-tier coding + live-search are yours; verify every API
167
- signature and cited fact before shipping (measured high hallucination rate).
168
- - **Gemini Flash main**: fast agentic/multimodal loops are yours; never
169
- self-assign top judgment.
170
- - **Gemini 3.1 Pro main**: 1M-context synthesis and context-heavy agentic work
171
- are yours. Prefer Gemini Flash for fast repeated tool loops on speed/cost;
172
- route hardest coding and judgment to the stronger codex lanes.
169
+ - **GPT Terra main**: long-context Codex fallback work is yours at max;
170
+ bulk-mechanical now defaults to Sol high, and genuinely hardest pieces
171
+ escalate to Sol xhigh.
172
+ - **Grok 4.6 main**: live-search and coding overflow are yours; its measured
173
+ hallucination rate is the lowest among the frontier rows, but still verify
174
+ every API signature and cited fact before shipping.
175
+ - **Gemini 3.7 Flash main**: long-context and fast agentic/multimodal loops
176
+ are yours at the lane's configured effort; bulk and overflow use the high row.
177
+ Never self-assign top judgment.
178
+ - **Gemini 3.1 Pro main**: it remains directly selectable, but the default
179
+ long-context lane now prefers Gemini 3.7 Flash on LCR, cost, and throughput;
180
+ route hardest coding and judgment to the stronger Codex and Claude lanes.