omnilane 0.31.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.
- package/.claude-plugin/marketplace.json +2 -2
- package/.claude-plugin/plugin.json +1 -1
- package/CHANGELOG.md +25 -1
- package/README.ja.md +51 -65
- package/README.ko.md +51 -64
- package/README.md +52 -66
- package/README.zh-CN.md +50 -61
- package/README.zh-TW.md +51 -62
- package/VERSION +1 -1
- package/package.json +1 -1
- package/plugin.json +1 -1
- package/routing.local.yaml.example +4 -4
- package/routing.yaml +22 -24
- package/scripts/configure.sh +3 -3
- package/scripts/runners/run-vote.sh +3 -3
- package/skills/omnilane/SKILL.md +40 -37
|
@@ -6,14 +6,14 @@
|
|
|
6
6
|
},
|
|
7
7
|
"metadata": {
|
|
8
8
|
"description": "One routing table, cross-vendor dispatch, foreman completion inbox.",
|
|
9
|
-
"version": "0.
|
|
9
|
+
"version": "0.32.0"
|
|
10
10
|
},
|
|
11
11
|
"plugins": [
|
|
12
12
|
{
|
|
13
13
|
"name": "omnilane",
|
|
14
14
|
"source": "./",
|
|
15
15
|
"description": "Route each subtask to the model that fits, dispatch it to any vendor CLI, and have finished dispatches report back into the foreman's next prompt.",
|
|
16
|
-
"version": "0.
|
|
16
|
+
"version": "0.32.0",
|
|
17
17
|
"category": "development",
|
|
18
18
|
"keywords": [
|
|
19
19
|
"routing",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "omnilane",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.32.0",
|
|
4
4
|
"description": "One routing table, every harness: classify subtasks into lanes and auto-dispatch each lane to the best vendor CLI (Codex, Claude Code, Grok Build, Antigravity) with background jobs, depth guard, and serialized codex dispatch.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Seraphim0916"
|
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,29 @@ semantic version tags.
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.32.0] - 2026-09-02
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- Re-evaluated the full routing table against the Artificial Analysis 2026-09 snapshot; the dated figures and method now live in `docs/model-capabilities-2026-09.md`.
|
|
14
|
+
- `hardest-coding`: Claude Fable 5.1 xhigh now leads GPT-5.6 Sol xhigh on coding capability.
|
|
15
|
+
- `bulk-mechanical`: GPT-5.6 Sol high replaces Terra max, followed by Gemini 3.7 Flash High and Claude Sonnet 5 high.
|
|
16
|
+
- `triage`: GPT-5.6 Luna moves from medium to high; Gemini 3.7 Flash Low replaces 3.6 Flash Low.
|
|
17
|
+
- `hard-judgment`: Claude Fable 5.1 xhigh replaces Opus 5 xhigh; GPT-5.6 Sol max remains second and Grok 4.6 joins third.
|
|
18
|
+
- `taste-final`: Claude Fable 5.1 high replaces Opus 5 high ahead of GPT-5.6 Sol max.
|
|
19
|
+
- `consult`: the Claude slot moves to Fable 5.1 high and the Gemini slot to 3.7 Flash High.
|
|
20
|
+
- `ui-draft`: Claude Fable 5.1 high replaces Opus 5 high behind GPT-5.6 Sol xhigh.
|
|
21
|
+
- `long-context`: Gemini 3.7 Flash Medium replaces 3.1 Pro, GPT-5.6 Terra max replaces Sol high, and Claude Opus 5 moves to medium.
|
|
22
|
+
- `fast-agentic`: Gemini 3.7 Flash Medium takes the lead; GPT-5.6 Luna high becomes the fallback.
|
|
23
|
+
- `coding-overflow`: Gemini 3.7 Flash High joins behind Grok 4.6 and ahead of Kimi, Qwen, OpenCode, and off.
|
|
24
|
+
- Synced configurator catalogs with current CLI surfaces: added `claude-fable-5-1` and Gemini 3.7 Flash effort rows, and removed Gemini 3.5 Flash rows.
|
|
25
|
+
- Synced the vote runner's Claude voter to Fable 5.1 high and Gemini voter to 3.7 Flash High.
|
|
26
|
+
|
|
27
|
+
### Fixed
|
|
28
|
+
|
|
29
|
+
- Routing and the vote runner no longer pin `grok-4.5`, a model id xAI retired. The `consult`, `live-search`, and `coding-overflow` lanes and the arbitrate grok voter now target `grok-4.6`. A dead model id severs the lane instead of falling through it, because the fallback chain tests whether a vendor CLI is installed, not whether the call succeeded.
|
|
30
|
+
- Corrected the `coding-overflow` comment: Artificial Analysis measures Grok 4.6 at the lowest hallucination rate among the frontier rows, the inverse of the previous claim.
|
|
31
|
+
|
|
9
32
|
## [0.31.0] - 2026-09-01
|
|
10
33
|
|
|
11
34
|
### Changed
|
|
@@ -690,7 +713,8 @@ work to the wrong model, and records the evidence behind the shipped defaults.
|
|
|
690
713
|
- Initial shared routing table, cross-vendor dispatcher, runners, installer,
|
|
691
714
|
and baseline lint fixes.
|
|
692
715
|
|
|
693
|
-
[Unreleased]: https://github.com/Seraphim0916/omnilane/compare/v0.
|
|
716
|
+
[Unreleased]: https://github.com/Seraphim0916/omnilane/compare/v0.32.0...HEAD
|
|
717
|
+
[0.32.0]: https://github.com/Seraphim0916/omnilane/compare/v0.31.0...v0.32.0
|
|
694
718
|
|
|
695
719
|
[0.31.0]: https://github.com/Seraphim0916/omnilane/compare/v0.30.0...v0.31.0
|
|
696
720
|
|
package/README.ja.md
CHANGED
|
@@ -78,11 +78,11 @@ omnilane は、**どの** agentic CLI のメインループでも、サブタス
|
|
|
78
78
|
```mermaid
|
|
79
79
|
flowchart LR
|
|
80
80
|
M["メインループ<br/><i>任意の CLI</i>"] --> T{{"routing.yaml<br/>一枚の共有テーブル"}}
|
|
81
|
-
T -->|hardest-coding| C1["
|
|
82
|
-
T -->|bulk-mechanical| C2["Codex — GPT-5.6
|
|
83
|
-
T -->|taste-final| C3["Claude —
|
|
84
|
-
T -->|long-context| C4["Gemini — 3.
|
|
85
|
-
T -->|live-search| C5["Grok — 4.
|
|
81
|
+
T -->|hardest-coding| C1["Claude — Fable 5.1"]
|
|
82
|
+
T -->|bulk-mechanical| C2["Codex — GPT-5.6 Sol"]
|
|
83
|
+
T -->|taste-final| C3["Claude — Fable 5.1"]
|
|
84
|
+
T -->|long-context| C4["Gemini — 3.7 Flash"]
|
|
85
|
+
T -->|live-search| C5["Grok — 4.6"]
|
|
86
86
|
T -->|"arbitrate(オプトイン)"| C6["vote — 1-4 モデルパネル"]
|
|
87
87
|
```
|
|
88
88
|
|
|
@@ -112,25 +112,24 @@ flowchart LR
|
|
|
112
112
|
|
|
113
113
|
| レーン | 第一候補 | バックアップ | 用途 |
|
|
114
114
|
|---|---|---|---|
|
|
115
|
-
| 🔥 hardest-coding |
|
|
116
|
-
| 🏗️ bulk-mechanical | GPT-5.6
|
|
117
|
-
| 🧹 triage | GPT-5.6 Luna (
|
|
118
|
-
| ⚖️ hard-judgment | Claude
|
|
119
|
-
| ✒️ taste-final | Claude
|
|
120
|
-
| 💬 consult |
|
|
121
|
-
| 🎨 ui-draft | GPT-5.6 Sol (xhigh) | Claude
|
|
122
|
-
| 📚 long-context | Gemini 3.
|
|
123
|
-
| ⚡ fast-agentic |
|
|
124
|
-
| 📡 live-search | Grok 4.
|
|
125
|
-
| 🚰 coding-overflow | Grok 4.
|
|
126
|
-
| 🗳️ arbitrate | off
|
|
115
|
+
| 🔥 hardest-coding | Claude Fable 5.1 (xhigh) | GPT-5.6 Sol (xhigh) | 最難関の実装、深い根本原因調査、正確性が重要な修正 |
|
|
116
|
+
| 🏗️ bulk-mechanical | GPT-5.6 Sol (high) | Gemini 3.7 Flash (High) → Claude Sonnet 5 (high) | リファクタリング、移行、テスト、大規模レビュー——機械的な持久作業 |
|
|
117
|
+
| 🧹 triage | GPT-5.6 Luna (high) | Gemini 3.7 Flash (Low) → Claude Haiku 4.5 | 大量スキャン、一次選別 |
|
|
118
|
+
| ⚖️ hard-judgment | Claude Fable 5.1 (xhigh) | GPT-5.6 Sol (max) → Grok 4.6 | アーキテクチャ判断、深い推論、セカンドオピニオン |
|
|
119
|
+
| ✒️ taste-final | Claude Fable 5.1 (high) | GPT-5.6 Sol (max) | ユーザー向け文章、プロンプト/文書の仕上げ、文体判断 |
|
|
120
|
+
| 💬 consult | GPT-5.6 Sol (max) | Claude Fable 5.1 (high) → Grok 4.6 → Gemini 3.7 Flash (High) | 指名モデルへの直接相談。フォールバック防止のため `--vendor` を維持 |
|
|
121
|
+
| 🎨 ui-draft | GPT-5.6 Sol (xhigh) | Claude Fable 5.1 (high) | デザインシステム/参照画像がある場合だけの UI ドラフト |
|
|
122
|
+
| 📚 long-context | Gemini 3.7 Flash (Medium) | GPT-5.6 Terra (max) → Claude Opus 5 (medium) | 長文書の抽出と統合。AA-LCR、コスト、スループット順 |
|
|
123
|
+
| ⚡ fast-agentic | Gemini 3.7 Flash (Medium) | GPT-5.6 Luna (high) | 高速なマルチステップ agentic ループ、マルチモーダル確認 |
|
|
124
|
+
| 📡 live-search | Grok 4.6 | — (`off`) | リアルタイム X/Web 検索とソーシャル文脈 |
|
|
125
|
+
| 🚰 coding-overflow | Grok 4.6 | Gemini 3.7 Flash (High) → Kimi K3 → Qwen3 Coder Plus → OpenCode | Codex クォータ不足時の中級コーディング逃がし弁 |
|
|
126
|
+
| 🗳️ arbitrate | `off`(オプトイン) | — | 重大判断用の内蔵意見パネル。デフォルト無効、`routing.local.yaml` で有効化し、投票者・ラウンドごとに 1 コール |
|
|
127
127
|
|
|
128
128
|
**バックアップ**はチェーンの次の候補——第一候補のベンダー CLI が未インストールの
|
|
129
129
|
ときにディスパッチが降格する先です。どのレーンもこうしたチェーンで、チェーン内に
|
|
130
130
|
何もインストールされていなければレーンは `off` に降格します。
|
|
131
131
|
|
|
132
|
-
> **
|
|
133
|
-
> 実測データは [FAQ](#-faq) にまとめてあります。
|
|
132
|
+
> **Fable 5.1 はデフォルトに入りました——Opus 5 が今も適する場所。** 3 者比較と Opus の override は [FAQ](#-faq) を参照してください。
|
|
134
133
|
|
|
135
134
|
### 自然言語コンサルテーション
|
|
136
135
|
|
|
@@ -156,12 +155,12 @@ flowchart LR
|
|
|
156
155
|
なので追加コールなし)、どれを**ディスパッチ**するか。CLI の `omnilane` スキルが
|
|
157
156
|
該当行を自動適用します。これはその人間向けビューです。
|
|
158
157
|
|
|
159
|
-
- **Claude Code · Fable 5
|
|
160
|
-
- **Claude Code · Opus 5
|
|
161
|
-
- **Codex · Sol
|
|
162
|
-
- **Codex · Terra
|
|
163
|
-
- **Grok Build · Grok 4.
|
|
164
|
-
- **Antigravity · Gemini
|
|
158
|
+
- **Claude Code · Fable 5.1**——自分で実行:hard-judgment、taste-final、hardest-coding。ディスパッチ:bulk → Codex Sol high、long-context/高速ループ → Gemini 3.7 Flash、live-search → Grok。
|
|
159
|
+
- **Claude Code · Opus 5**——低いハルシネーション率や価格を優先するときは hard-judgment と taste-final を自分で実行。最難関コーディング → Fable 5.1 または Sol、bulk → Sol high、long-context/高速ループ → Gemini 3.7 Flash、live-search → Grok。
|
|
160
|
+
- **Codex · Sol**——自分で実行:hardest-coding、bulk-mechanical、hard-judgment、ui-draft。ディスパッチ:taste-final → Claude、long-context/高速ループ → Gemini 3.7 Flash、live-search → Grok。
|
|
161
|
+
- **Codex · Terra**——long-context の Codex フォールバックを自分で実行。bulk-mechanical のデフォルトは Sol high に移動。最難関は Sol xhigh、taste → Claude、高速ループ → Gemini 3.7 Flash、live-search → Grok。
|
|
162
|
+
- **Grok Build · Grok 4.6**——live-search と coding-overflow を自分で実行。難しいコーディング/判断/文章は Codex、Claude、Gemini へ送り、API シグネチャと引用事実は検証します。
|
|
163
|
+
- **Antigravity · Gemini 3.7 Flash**——Medium の long-context/高速ループ、High の bulk/overflow、Low の triage を自分で実行。最難関のコーディング/判断/文章は Codex、Claude、live-search は Grok へ。
|
|
165
164
|
|
|
166
165
|
</details>
|
|
167
166
|
|
|
@@ -429,49 +428,30 @@ advise 専用で、ファイルを編集しません。
|
|
|
429
428
|
</details>
|
|
430
429
|
|
|
431
430
|
<details>
|
|
432
|
-
<summary><b>
|
|
431
|
+
<summary><b>Fable 5.1 はデフォルトに入りました——Opus 5 が今も適する場所</b></summary>
|
|
433
432
|
|
|
434
433
|
<br/>
|
|
435
434
|
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
一回増えるだけで得るものがありません——だからこそ上の「メインモデルを選ぶ」一覧では
|
|
440
|
-
Fable 5 に**ドライバー**として独立した行があり、hard-judgment、taste-final、
|
|
441
|
-
正確性が要の最難関修正を自分で処理します。
|
|
442
|
-
|
|
443
|
-
**計測データもワーカーとしての採用を支持しません。** Artificial Analysis の
|
|
444
|
-
Intelligence Index(2026-07-24)では Opus 5(max)が 61、Fable 5(max)が 60 —— AA 自身が
|
|
445
|
-
「実質的に同点」と表現し、Epoch AI の Capability Index は順位が逆です
|
|
446
|
-
(Fable 5 161、Opus 5 159)。総合的な知能は引き分けと見てよいでしょう。差が付くのは
|
|
447
|
-
エージェント的な専門アウトプットで、その差は小さくありません:
|
|
448
|
-
|
|
449
|
-
| ベンチマーク | Claude Opus 5 (max) | Claude Fable 5 | |
|
|
450
|
-
|---|---:|---:|---|
|
|
451
|
-
| AA-Briefcase(エージェント的知識労働、Elo) | 1720 | 1574 | **+146** |
|
|
452
|
-
| GDPval-AA v2(Elo) | 1861 | 1747 | **+114** |
|
|
453
|
-
| AA-Briefcase の 1 タスク単価 | $17.79 | $22.30 | **-20%** |
|
|
454
|
-
| API 価格、入力/出力 1M あたり | $5 / $25 | $10 / $50 | **半額** |
|
|
455
|
-
|
|
456
|
-
Opus 5 の max・xhigh・high の三ティアが AA-Briefcase の上位三席を占め、`high`
|
|
457
|
-
ティアですら 1 タスク単価が半分以下で Fable 5 を上回ります。つまり Fable 5 は
|
|
458
|
-
価格が二倍でありながら、レーンが重視するどの軸でも優位を買えていません。
|
|
459
|
-
|
|
460
|
-
**Fable 5 が実際に優れている点**:知識の広さです。AA-Omniscience では今も Opus 5 を
|
|
461
|
-
上回っており(モデルのサイズクラスから見て妥当)、一方の Opus 5 は不確かなときでも
|
|
462
|
-
答えがちで、ハルシネーション率は 50%(Opus 4.8 比 +14 ポイント)です。実行より
|
|
463
|
-
想起が中心のタスクなら、明示的に指名してください:
|
|
435
|
+
Fable 5.1 は現在 `hardest-coding`、`hard-judgment`、`taste-final` の
|
|
436
|
+
第一候補です。同じ xhigh では知能、agentic 作業、コーディングで Opus 5 を
|
|
437
|
+
上回ります。Sol max は、はるかに安価な別ベンダーの判断用フォールバックです。
|
|
464
438
|
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
439
|
+
| 評価(AA、2026-09-02 取得) | Claude Fable 5.1 (xhigh) | Claude Opus 5 (xhigh) | GPT-5.6 Sol (max) |
|
|
440
|
+
|---|---:|---:|---:|
|
|
441
|
+
| Intelligence | 64.8 | 62.5 | 60.9 |
|
|
442
|
+
| Agentic | 59.8 | 58.4 | 57.8 |
|
|
443
|
+
| Coding | 80.7 | 77.0 | 77.4 |
|
|
444
|
+
| ハルシネーション率(低いほど良い) | .71 | **.60** | .92 |
|
|
445
|
+
| AA $/task | $2.65 | $1.80 | **$0.95** |
|
|
468
446
|
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
447
|
+
Fable 5.1 は bulk と triage のデフォルトではありません。トークン単価が
|
|
448
|
+
Opus 5 の 2 倍で、Claude Code のサブスクリプションクォータも 1 ターン当たり
|
|
449
|
+
最も多く消費するためです。Opus 5 は低ハルシネーション・低価格の Claude
|
|
450
|
+
選択肢として medium で `long-context` に残り、次の
|
|
451
|
+
`~/.omnilane/routing.local.yaml` で任意のレーンへ戻せます。
|
|
472
452
|
|
|
473
453
|
```yaml
|
|
474
|
-
|
|
454
|
+
hard-judgment: claude claude-opus-5 xhigh
|
|
475
455
|
```
|
|
476
456
|
|
|
477
457
|
</details>
|
|
@@ -534,7 +514,7 @@ scripts/dispatch.sh --dry-run hardest-coding "…" # 解決済みプラン、
|
|
|
534
514
|
(AA サイトの生レコードと各社公式価格ページで照合済み)と公開の比較レビューに
|
|
535
515
|
基づきます。これは意見であって法則ではありません——設定メニューと
|
|
536
516
|
`routing.local.yaml` はそのためにあります。ベンチマークごとの但し書きを含む
|
|
537
|
-
作業ノートは [`docs/model-capabilities-2026-
|
|
517
|
+
作業ノートは [`docs/model-capabilities-2026-09.md`](docs/model-capabilities-2026-09.md) にあります。
|
|
538
518
|
|
|
539
519
|
## ⚠️ 既知の制限
|
|
540
520
|
|
|
@@ -550,6 +530,12 @@ scripts/dispatch.sh --dry-run hardest-coding "…" # 解決済みプラン、
|
|
|
550
530
|
|
|
551
531
|
## 📜 リリース履歴
|
|
552
532
|
|
|
533
|
+
## v0.32.0 の新機能
|
|
534
|
+
|
|
535
|
+
- **AA 2026-09 スナップショットで全ルーティングを再評価。** Fable 5.1 と Gemini 3.7 Flash がデフォルトに入り、数値は新しい日付付き文書に集約しました。
|
|
536
|
+
- **モデルカタログを現在の CLI に同期。** Fable 5.1 を追加し、agy から消えた Gemini 3.5 Flash を削除し、投票ランナーも更新しました。
|
|
537
|
+
- **Opus 5 は引き続き利用可能。** `long-context` に残り、`routing.local.yaml` で任意のレーンを上書きできます。
|
|
538
|
+
|
|
553
539
|
## v0.31.0 の新機能
|
|
554
540
|
|
|
555
541
|
- **ゴール予算はデフォルトで無制限。** `budget_jobs` と `budget_seconds` は JSON `null` として保存され、`unlimited` と表示されるようになりました。従来の暗黙的な 8 ジョブと 900 秒の上限は廃止され、`--budget-jobs N` または `--budget-seconds S` を指定した場合にのみ厳格な上限が有効になります。同一失敗のヒューズは予算ではなく、デフォルトで引き続き有効です。
|
|
@@ -634,7 +620,7 @@ scripts/dispatch.sh --dry-run hardest-coding "…" # 解決済みプラン、
|
|
|
634
620
|
タスクあたりコストがごく僅か。Flash に残る優位はスループットのみ — レイテンシ律速の
|
|
635
621
|
ループならローカル設定で先頭に戻すこと。
|
|
636
622
|
- **レーンのコメントから数値を排除。** `routing.yaml` は各順序の「理由」だけを述べ、
|
|
637
|
-
スコア・価格・スループットは取得日とともに `docs/model-capabilities-2026-
|
|
623
|
+
スコア・価格・スループットは取得日とともに `docs/model-capabilities-2026-09.md` に
|
|
638
624
|
集約。数値が古くなってもルーティング表の編集は不要になった。
|
|
639
625
|
- **value プロファイル**を `routing.local.yaml.example` に追加 — Intelligence Index
|
|
640
626
|
約 1 ポイントと引き換えに、タスクあたりコストを 30〜40% 削減。
|
|
@@ -688,7 +674,7 @@ scripts/dispatch.sh --dry-run hardest-coding "…" # 解決済みプラン、
|
|
|
688
674
|
ファイル内の `claude-opus-4-8` をすべて `claude-opus-5`(レーンに応じた努力度付き)
|
|
689
675
|
に、Gemini 3.5 Flash 候補を 3.6 Flash に更新し、0.10.0 以降のデフォルトと揃えました。
|
|
690
676
|
- **Intelligence Index の数値を出典に照合して訂正**
|
|
691
|
-
(`docs/model-capabilities-2026-
|
|
677
|
+
(`docs/model-capabilities-2026-09.md`):パーセントではなく指数ポイントです。
|
|
692
678
|
AA-Briefcase / GDPval-AA v2 の比較を追加し、デフォルトと逆向きの二つの結果も
|
|
693
679
|
記録しました:事実知識では Fable 5 が、プレゼン品質では GPT-5.6 Sol が上回ります。
|
|
694
680
|
|
|
@@ -733,7 +719,7 @@ scripts/dispatch.sh --dry-run hardest-coding "…" # 解決済みプラン、
|
|
|
733
719
|
- **OpenAI 互換の direct-API ベンダーを 5 つ追加** — `deepseek`、`zai`(GLM)、
|
|
734
720
|
`mistral`、`groq`、`cerebras` が `openrouter` と同じく CLI 不要のレーンに
|
|
735
721
|
(curl と `<VENDOR>_API_KEY` だけ)。`lib/common.sh` のレジストリに 1 行で
|
|
736
|
-
追加でき、モデル能力の比較は [`docs/model-capabilities-2026-
|
|
722
|
+
追加でき、モデル能力の比較は [`docs/model-capabilities-2026-09.md`](docs/model-capabilities-2026-09.md) を参照。
|
|
737
723
|
- **Fish シェル補完** — `omnilane completion fish | source`。
|
|
738
724
|
|
|
739
725
|
## v0.8.3 の新機能
|
package/README.ko.md
CHANGED
|
@@ -77,11 +77,11 @@ API 키 하나로 직접 연결):
|
|
|
77
77
|
```mermaid
|
|
78
78
|
flowchart LR
|
|
79
79
|
M["메인 루프<br/><i>아무 CLI</i>"] --> T{{"routing.yaml<br/>공유 테이블 하나"}}
|
|
80
|
-
T -->|hardest-coding| C1["
|
|
81
|
-
T -->|bulk-mechanical| C2["Codex — GPT-5.6
|
|
82
|
-
T -->|taste-final| C3["Claude —
|
|
83
|
-
T -->|long-context| C4["Gemini — 3.
|
|
84
|
-
T -->|live-search| C5["Grok — 4.
|
|
80
|
+
T -->|hardest-coding| C1["Claude — Fable 5.1"]
|
|
81
|
+
T -->|bulk-mechanical| C2["Codex — GPT-5.6 Sol"]
|
|
82
|
+
T -->|taste-final| C3["Claude — Fable 5.1"]
|
|
83
|
+
T -->|long-context| C4["Gemini — 3.7 Flash"]
|
|
84
|
+
T -->|live-search| C5["Grok — 4.6"]
|
|
85
85
|
T -->|"arbitrate(옵트인)"| C6["vote — 1-4 모델 패널"]
|
|
86
86
|
```
|
|
87
87
|
|
|
@@ -110,25 +110,24 @@ flowchart LR
|
|
|
110
110
|
|
|
111
111
|
| 레인 | 1순위 모델 | 백업 | 용도 |
|
|
112
112
|
|---|---|---|---|
|
|
113
|
-
| 🔥 hardest-coding |
|
|
114
|
-
| 🏗️ bulk-mechanical | GPT-5.6
|
|
115
|
-
| 🧹 triage | GPT-5.6 Luna (
|
|
116
|
-
| ⚖️ hard-judgment | Claude
|
|
117
|
-
| ✒️ taste-final | Claude
|
|
118
|
-
| 💬 consult |
|
|
119
|
-
| 🎨 ui-draft | GPT-5.6 Sol (xhigh) | Claude
|
|
120
|
-
| 📚 long-context | Gemini 3.
|
|
121
|
-
| ⚡ fast-agentic |
|
|
122
|
-
| 📡 live-search | Grok 4.
|
|
123
|
-
| 🚰 coding-overflow | Grok 4.
|
|
124
|
-
| 🗳️ arbitrate | off(옵트인) | — | 내장 의견
|
|
113
|
+
| 🔥 hardest-coding | Claude Fable 5.1 (xhigh) | GPT-5.6 Sol (xhigh) | 가장 어려운 구현, 근본 원인 디버깅, 정확성이 핵심인 수정 |
|
|
114
|
+
| 🏗️ bulk-mechanical | GPT-5.6 Sol (high) | Gemini 3.7 Flash (High) → Claude Sonnet 5 (high) | 리팩터링, 마이그레이션, 테스트, 대량 스윕——기계적 지구력 작업 |
|
|
115
|
+
| 🧹 triage | GPT-5.6 Luna (high) | Gemini 3.7 Flash (Low) → Claude Haiku 4.5 | 대량 스캔과 1차 선별 |
|
|
116
|
+
| ⚖️ hard-judgment | Claude Fable 5.1 (xhigh) | GPT-5.6 Sol (max) → Grok 4.6 | 아키텍처 판정, 심층 추론, 2차 의견 |
|
|
117
|
+
| ✒️ taste-final | Claude Fable 5.1 (high) | GPT-5.6 Sol (max) | 사용자 대상 문장, 프롬프트/문서 다듬기, 스타일 판정 |
|
|
118
|
+
| 💬 consult | GPT-5.6 Sol (max) | Claude Fable 5.1 (high) → Grok 4.6 → Gemini 3.7 Flash (High) | 지정 모델 직접 상담. 폴백 방지를 위해 `--vendor` 유지 |
|
|
119
|
+
| 🎨 ui-draft | GPT-5.6 Sol (xhigh) | Claude Fable 5.1 (high) | 디자인 시스템/참조 이미지가 있을 때만 UI 초안 |
|
|
120
|
+
| 📚 long-context | Gemini 3.7 Flash (Medium) | GPT-5.6 Terra (max) → Claude Opus 5 (medium) | 장문 추출과 종합. AA-LCR, 비용, 처리량 순 |
|
|
121
|
+
| ⚡ fast-agentic | Gemini 3.7 Flash (Medium) | GPT-5.6 Luna (high) | 빠른 멀티스텝 agentic 루프, 멀티모달 확인 |
|
|
122
|
+
| 📡 live-search | Grok 4.6 | — (`off`) | 실시간 X/웹 검색과 소셜 맥락 |
|
|
123
|
+
| 🚰 coding-overflow | Grok 4.6 | Gemini 3.7 Flash (High) → Kimi K3 → Qwen3 Coder Plus → OpenCode | Codex 쿼터 소진 시 중급 코딩 안전 밸브 |
|
|
124
|
+
| 🗳️ arbitrate | `off`(옵트인) | — | 중대한 판단을 위한 내장 의견 패널. 기본 비활성, `routing.local.yaml` 에서 활성화하며 투표자·라운드당 1회 호출 |
|
|
125
125
|
|
|
126
126
|
**백업**은 체인의 다음 후보입니다——1순위 벤더 CLI 가 설치되지 않았을 때
|
|
127
127
|
디스패치가 강등되는 대상입니다. 모든 레인이 이런 체인이며, 체인에 아무것도
|
|
128
128
|
설치되어 있지 않으면 레인은 `off` 로 강등됩니다.
|
|
129
129
|
|
|
130
|
-
> **
|
|
131
|
-
> 이유와 실측 데이터는 [FAQ](#-faq) 에 정리했습니다.
|
|
130
|
+
> **Fable 5.1 은 기본값에 포함됩니다——그리고 Opus 5 가 여전히 맞는 자리.** 세 모델 비교와 Opus override 는 [FAQ](#-faq) 에 있습니다.
|
|
132
131
|
|
|
133
132
|
### 자연어 상담
|
|
134
133
|
|
|
@@ -154,12 +153,12 @@ flowchart LR
|
|
|
154
153
|
추가 호출 없음)와 **디스패치**하는지입니다. CLI 의 `omnilane` 스킬이 해당
|
|
155
154
|
행을 자동 적용하며, 이것은 사람이 보는 버전입니다.
|
|
156
155
|
|
|
157
|
-
- **Claude Code · Fable 5
|
|
158
|
-
- **Claude Code · Opus 5
|
|
159
|
-
- **Codex · Sol
|
|
160
|
-
- **Codex · Terra
|
|
161
|
-
- **Grok Build · Grok 4.
|
|
162
|
-
- **Antigravity · Gemini
|
|
156
|
+
- **Claude Code · Fable 5.1**——직접 실행: hard-judgment, taste-final, hardest-coding. 디스패치: bulk → Codex Sol high, long-context/빠른 루프 → Gemini 3.7 Flash, live-search → Grok.
|
|
157
|
+
- **Claude Code · Opus 5**——더 낮은 환각률이나 가격이 중요할 때 hard-judgment 와 taste-final 을 직접 실행. 최고난도 코딩 → Fable 5.1 또는 Sol, bulk → Sol high, long-context/빠른 루프 → Gemini 3.7 Flash, live-search → Grok.
|
|
158
|
+
- **Codex · Sol**——직접 실행: hardest-coding, bulk-mechanical, hard-judgment, ui-draft. 디스패치: taste-final → Claude, long-context/빠른 루프 → Gemini 3.7 Flash, live-search → Grok.
|
|
159
|
+
- **Codex · Terra**——long-context 의 Codex 폴백을 직접 실행. bulk-mechanical 기본값은 Sol high 로 이동했습니다. 최고난도는 Sol xhigh, taste → Claude, 빠른 루프 → Gemini 3.7 Flash, live-search → Grok.
|
|
160
|
+
- **Grok Build · Grok 4.6**——live-search 와 coding-overflow 를 직접 실행. 어려운 코딩/판단/문장은 Codex, Claude, Gemini 로 보내고 API 시그니처와 인용 사실을 검증합니다.
|
|
161
|
+
- **Antigravity · Gemini 3.7 Flash**——Medium 의 long-context/빠른 루프, High 의 bulk/overflow, Low 의 triage 를 직접 실행. 최고난도 코딩/판단/문장은 Codex, Claude 로, live-search 는 Grok 으로 보냅니다.
|
|
163
162
|
|
|
164
163
|
</details>
|
|
165
164
|
|
|
@@ -415,48 +414,30 @@ Codex 중심, Codex 없음)이 들어 있습니다.
|
|
|
415
414
|
</details>
|
|
416
415
|
|
|
417
416
|
<details>
|
|
418
|
-
<summary><b>
|
|
417
|
+
<summary><b>Fable 5.1 은 기본값에 포함됩니다——그리고 Opus 5 가 여전히 맞는 자리</b></summary>
|
|
419
418
|
|
|
420
419
|
<br/>
|
|
421
420
|
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
늘 뿐 얻는 것이 없습니다——그래서 위의 "메인 모델 고르기" 목록에서 Fable 5 는
|
|
426
|
-
**드라이버**로 독립된 줄을 가지며, hard-judgment, taste-final, 정확성이 핵심인
|
|
427
|
-
가장 어려운 수정을 직접 처리합니다.
|
|
428
|
-
|
|
429
|
-
**측정 데이터도 워커로 쓰는 쪽을 지지하지 않습니다.** Artificial Analysis
|
|
430
|
-
Intelligence Index(2026-07-24)에서 Opus 5(max)는 61점, Fable 5(max)는 60점 ——
|
|
431
|
-
AA 자신이 "사실상 동점"이라 표현했고, Epoch AI 의 Capability Index 는 순위가
|
|
432
|
-
반대입니다(Fable 5 161, Opus 5 159). 종합 지능은 무승부로 보면 됩니다. 실제로
|
|
433
|
-
벌어지는 곳은 에이전트형 전문 산출물이며, 그 격차는 작지 않습니다:
|
|
434
|
-
|
|
435
|
-
| 벤치마크 | Claude Opus 5 (max) | Claude Fable 5 | |
|
|
436
|
-
|---|---:|---:|---|
|
|
437
|
-
| AA-Briefcase(에이전트형 지식 노동, Elo) | 1720 | 1574 | **+146** |
|
|
438
|
-
| GDPval-AA v2(Elo) | 1861 | 1747 | **+114** |
|
|
439
|
-
| AA-Briefcase 작업당 비용 | $17.79 | $22.30 | **-20%** |
|
|
440
|
-
| API 가격, 입력/출력 1M 당 | $5 / $25 | $10 / $50 | **절반** |
|
|
441
|
-
|
|
442
|
-
Opus 5 의 max, xhigh, high 세 티어가 AA-Briefcase 상위 세 자리를 차지하며,
|
|
443
|
-
`high` 티어조차 작업당 비용 절반 이하로 Fable 5 를 이깁니다. 즉 Fable 5 는 가격이
|
|
444
|
-
두 배이면서 레인이 중시하는 어떤 축에서도 우위를 사지 못합니다.
|
|
445
|
-
|
|
446
|
-
**Fable 5 가 실제로 더 나은 지점**: 사실 지식의 폭입니다. AA-Omniscience 에서는
|
|
447
|
-
여전히 Opus 5 를 앞서며(두 모델의 규모 차이를 감안하면 당연), 반대로 Opus 5 는
|
|
448
|
-
확신이 없을 때도 답하는 경향이 있어 환각률이 50%(Opus 4.8 대비 +14 포인트)입니다.
|
|
449
|
-
실행보다 회상이 중심인 작업이라면 명시적으로 지목하세요:
|
|
421
|
+
Fable 5.1 은 이제 `hardest-coding`, `hard-judgment`, `taste-final`의
|
|
422
|
+
1순위입니다. 같은 xhigh 에서 지능, agentic 작업, 코딩 모두 Opus 5 를
|
|
423
|
+
앞섭니다. Sol max 는 훨씬 저렴한 타 벤더 판단 폴백으로 남습니다.
|
|
450
424
|
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
425
|
+
| 평가(AA, 2026-09-02 수집) | Claude Fable 5.1 (xhigh) | Claude Opus 5 (xhigh) | GPT-5.6 Sol (max) |
|
|
426
|
+
|---|---:|---:|---:|
|
|
427
|
+
| Intelligence | 64.8 | 62.5 | 60.9 |
|
|
428
|
+
| Agentic | 59.8 | 58.4 | 57.8 |
|
|
429
|
+
| Coding | 80.7 | 77.0 | 77.4 |
|
|
430
|
+
| 환각률(낮을수록 좋음) | .71 | **.60** | .92 |
|
|
431
|
+
| AA $/task | $2.65 | $1.80 | **$0.95** |
|
|
454
432
|
|
|
455
|
-
|
|
456
|
-
|
|
433
|
+
Fable 5.1 은 bulk 나 triage 기본값이 아닙니다. 토큰 가격이 Opus 5 의
|
|
434
|
+
2배이고 Claude Code 구독 쿼터도 턴당 가장 많이 소비하기 때문입니다.
|
|
435
|
+
Opus 5 는 더 낮은 환각률과 가격의 Claude 선택지로 medium
|
|
436
|
+
`long-context`에 남으며, 다음 `~/.omnilane/routing.local.yaml` 설정으로
|
|
437
|
+
어느 레인에든 다시 넣을 수 있습니다.
|
|
457
438
|
|
|
458
439
|
```yaml
|
|
459
|
-
|
|
440
|
+
hard-judgment: claude claude-opus-5 xhigh
|
|
460
441
|
```
|
|
461
442
|
|
|
462
443
|
</details>
|
|
@@ -518,7 +499,7 @@ scripts/dispatch.sh --dry-run hardest-coding "…" # 완전히 해석된 계
|
|
|
518
499
|
각사 공식 가격 페이지로 교차 검증)과 공개 비교 리뷰에 근거합니다.
|
|
519
500
|
이는 의견이지 법칙이 아닙니다——설정 메뉴와 `routing.local.yaml` 이
|
|
520
501
|
그래서 존재합니다. 벤치마크별 단서를 포함한 작업 노트는
|
|
521
|
-
[`docs/model-capabilities-2026-
|
|
502
|
+
[`docs/model-capabilities-2026-09.md`](docs/model-capabilities-2026-09.md) 에 있습니다.
|
|
522
503
|
|
|
523
504
|
## ⚠️ 알려진 제한
|
|
524
505
|
|
|
@@ -533,6 +514,12 @@ scripts/dispatch.sh --dry-run hardest-coding "…" # 완전히 해석된 계
|
|
|
533
514
|
|
|
534
515
|
## 📜 릴리스 기록
|
|
535
516
|
|
|
517
|
+
## v0.32.0 새 기능
|
|
518
|
+
|
|
519
|
+
- **AA 2026-09 스냅샷으로 전체 라우팅을 재평가했습니다.** Fable 5.1 과 Gemini 3.7 Flash 가 기본값에 들어가고 수치는 새 날짜별 문서에 모았습니다.
|
|
520
|
+
- **모델 카탈로그를 현재 CLI 표면과 동기화했습니다.** Fable 5.1 을 추가하고 agy 에서 사라진 Gemini 3.5 Flash 를 제거했으며 투표 러너도 갱신했습니다.
|
|
521
|
+
- **Opus 5 는 계속 사용할 수 있습니다.** `long-context`에 남고 `routing.local.yaml`로 어느 레인이든 덮어쓸 수 있습니다.
|
|
522
|
+
|
|
536
523
|
## v0.31.0 새 기능
|
|
537
524
|
|
|
538
525
|
- **목표 예산은 기본적으로 무제한입니다.** `budget_jobs`와 `budget_seconds`는 이제 JSON `null`로 저장되고 `unlimited`로 표시됩니다. 이전의 암묵적인 8개 작업 및 900초 상한은 제거되었으며, `--budget-jobs N` 또는 `--budget-seconds S`를 지정할 때만 엄격한 상한이 활성화됩니다. 반복 실패 퓨즈는 예산이 아니며 기본적으로 계속 활성화됩니다.
|
|
@@ -615,7 +602,7 @@ scripts/dispatch.sh --dry-run hardest-coding "…" # 완전히 해석된 계
|
|
|
615
602
|
극히 낮다. Flash에 남은 우위는 처리량뿐 — 레이턴시가 병목인 루프라면 로컬 설정에서
|
|
616
603
|
다시 앞에 두면 된다.
|
|
617
604
|
- **레인 주석에서 수치 제거.** `routing.yaml`은 각 순서가 성립하는 "이유"만 서술하고,
|
|
618
|
-
점수·가격·처리량은 조회 날짜와 함께 `docs/model-capabilities-2026-
|
|
605
|
+
점수·가격·처리량은 조회 날짜와 함께 `docs/model-capabilities-2026-09.md`에만 둔다.
|
|
619
606
|
수치가 낡아도 라우팅 표를 고칠 필요가 없다.
|
|
620
607
|
- **value 프로파일** 추가(`routing.local.yaml.example`) — Intelligence Index 약 1점을
|
|
621
608
|
내주고 태스크당 비용을 30~40% 절감.
|
|
@@ -668,7 +655,7 @@ scripts/dispatch.sh --dry-run hardest-coding "…" # 완전히 해석된 계
|
|
|
668
655
|
`claude-opus-4-8` 을 모두 `claude-opus-5`(레인에 맞는 노력 수준 포함)로,
|
|
669
656
|
Gemini 3.5 Flash 후보를 3.6 Flash 로 바꿔 0.10.0 이후 기본값과 맞췄습니다.
|
|
670
657
|
- **Intelligence Index 수치를 원본과 대조해 정정**
|
|
671
|
-
(`docs/model-capabilities-2026-
|
|
658
|
+
(`docs/model-capabilities-2026-09.md`): 퍼센트가 아니라 지수 점수입니다.
|
|
672
659
|
AA-Briefcase / GDPval-AA v2 비교를 추가하고, 기본값과 반대 방향인 두 결과도
|
|
673
660
|
기록했습니다: 사실 지식은 Fable 5 가, 표현 품질은 GPT-5.6 Sol 이 앞섭니다.
|
|
674
661
|
|
|
@@ -713,7 +700,7 @@ scripts/dispatch.sh --dry-run hardest-coding "…" # 완전히 해석된 계
|
|
|
713
700
|
- **OpenAI 호환 direct-API 벤더 5개 추가** — `deepseek`, `zai` (GLM), `mistral`,
|
|
714
701
|
`groq`, `cerebras` 가 `openrouter` 처럼 CLI 없는 레인으로 추가(curl 과
|
|
715
702
|
`<VENDOR>_API_KEY` 만 필요). `lib/common.sh` 레지스트리에 한 줄로 추가되며,
|
|
716
|
-
모델 능력 비교는 [`docs/model-capabilities-2026-
|
|
703
|
+
모델 능력 비교는 [`docs/model-capabilities-2026-09.md`](docs/model-capabilities-2026-09.md) 참고.
|
|
717
704
|
- **Fish 셸 자동완성** — `omnilane completion fish | source`.
|
|
718
705
|
|
|
719
706
|
## v0.8.3 새 기능
|