omnilane 0.32.0 → 0.34.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 +62 -1
- package/README.ja.md +35 -18
- package/README.ko.md +35 -18
- package/README.md +37 -20
- package/README.zh-CN.md +33 -18
- package/README.zh-TW.md +33 -18
- package/VERSION +1 -1
- package/completions/_omnilane +2 -1
- package/completions/omnilane.bash +2 -2
- package/completions/omnilane.fish +2 -0
- package/hooks/report-completions.sh +36 -5
- package/hooks/routing-instruction.md +25 -10
- package/package.json +1 -1
- package/plugin.json +1 -1
- package/routing.yaml +13 -13
- package/scripts/dispatch.sh +336 -48
- package/scripts/doctor.sh +1 -1
- package/scripts/jobs.sh +74 -30
- package/scripts/lib/common.sh +88 -0
- package/scripts/lib/job-worker.sh +0 -28
- package/scripts/provider-probe.sh +1 -1
- package/scripts/release-audit.sh +1 -1
- package/scripts/runners/run-claude.sh +63 -4
- package/scripts/runners/run-codex.sh +31 -4
- package/scripts/runners/run-gemini.sh +49 -1
- package/scripts/runners/run-grok.sh +18 -2
- package/skills/omnilane/SKILL.md +70 -29
|
@@ -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.34.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.34.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.34.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,64 @@ semantic version tags.
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.34.0] - 2026-09-03
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- `hard-judgment`'s Claude slot swaps from Fable 5.1 (xhigh) to Opus 5
|
|
14
|
+
(xhigh): Opus returns 97.7% of Fable's agentic score (58.4 vs 59.8) at 68%
|
|
15
|
+
of the cost ($1.801 vs $2.651/task) with a lower hallucination rate (.60 vs
|
|
16
|
+
.71).
|
|
17
|
+
- A fallback-depth pass gives every active lane (`arbitrate` intentionally
|
|
18
|
+
excluded) at least three vendor candidates: `hardest-coding`,
|
|
19
|
+
`taste-final`, `ui-draft`, `fast-agentic`, and `live-search` each gain new
|
|
20
|
+
fallbacks; `live-search`'s added Gemini and Claude candidates use their own
|
|
21
|
+
web-search tools, not Grok's native X/web surface, so treat them as
|
|
22
|
+
best-effort only when Grok's CLI is unavailable.
|
|
23
|
+
|
|
24
|
+
## [0.33.0] - 2026-09-03
|
|
25
|
+
|
|
26
|
+
### Added
|
|
27
|
+
|
|
28
|
+
- `dispatch.sh --thread NAME` continues named Claude, Codex, Grok, and Gemini
|
|
29
|
+
conversations through each vendor's native session/resume primitive. Thread
|
|
30
|
+
state is written atomically under the private `$OMNILANE_HOME/threads/`
|
|
31
|
+
store and pins vendor, model, effort, and physical workdir; direct-API
|
|
32
|
+
vendors and `exec` refuse threading visibly.
|
|
33
|
+
- `jobs.sh threads`, `threads show NAME`, and `threads rm NAME` list, inspect,
|
|
34
|
+
and remove local thread state without deleting the vendor session.
|
|
35
|
+
- Threaded jobs record `thread` and `thread_turn` in `meta.json` and completion
|
|
36
|
+
inbox records; completion notices include `thread=NAME turn=N`.
|
|
37
|
+
- Three-turn live probes verified memory continuity for all four vendors and
|
|
38
|
+
verified cross-directory resume: Claude (`--session-id`/`--resume`), Codex
|
|
39
|
+
(`thread_id`/`exec resume`), Grok (`--session-id`/`--resume`), and Gemini
|
|
40
|
+
(`conversation_id`/`--conversation`). Workdir remains pinned because changing
|
|
41
|
+
trees mid-conversation is still an operator error worth catching.
|
|
42
|
+
|
|
43
|
+
### Changed
|
|
44
|
+
|
|
45
|
+
- The skill routing reminder and the persistent hook text now dispatch every task by default, withdrawing the read-only-verification and one-line-fix self-execute exceptions and naming the reserved commander actions (planning, task briefs, reading worker output, acceptance, replies to the operator, git commit/push, governance-file edits).
|
|
46
|
+
|
|
47
|
+
### Fixed
|
|
48
|
+
|
|
49
|
+
- A shared JSON escaper now fixes backslash handling for live prompts,
|
|
50
|
+
`jobs.sh send`, and completion inbox records; the standalone doctor,
|
|
51
|
+
provider-probe, and release-audit output paths use the same corrected behavior.
|
|
52
|
+
Backslashes, quotes, control characters, and multibyte text round-trip as valid
|
|
53
|
+
JSON everywhere.
|
|
54
|
+
|
|
55
|
+
## [0.32.1] - 2026-09-02
|
|
56
|
+
|
|
57
|
+
### Fixed
|
|
58
|
+
|
|
59
|
+
- Foremen could miss a completion forever when byte-based tail truncation split a UTF-8 character and the hook silently skipped the undecodable inbox record; writers now sanitise truncated tails, readers retry after repairing invalid bytes, and irrecoverable records are consumed with a FAILED unreadable-record notice.
|
|
60
|
+
- Claude Code Desktop foremen were never bound to their session because dispatch only searched process-tree records created for headless workers; dispatch now prefers a valid `CLAUDE_CODE_SESSION_ID`, preventing sessions that share a working directory, or use `/`, from taking each other's notices.
|
|
61
|
+
|
|
62
|
+
### Changed
|
|
63
|
+
|
|
64
|
+
- The skill and the routing reminder now state the implementation dispatch parameters (`--mode work --workdir DIR --timeout 3600` or more) and record that the advise default is a read-only worker under a 600 s per-call watchdog that yields no output on implementation tasks.
|
|
65
|
+
- The skill gains a `Job lifecycle defaults` section covering the foreman completion inbox, the live mailbox (`jobs.sh send` / `jobs.sh close`), goal orchestration defaults (`omnilane goal`, unlimited budgets unless opted in), and read-only job hygiene commands.
|
|
66
|
+
|
|
9
67
|
## [0.32.0] - 2026-09-02
|
|
10
68
|
|
|
11
69
|
### Changed
|
|
@@ -713,7 +771,10 @@ work to the wrong model, and records the evidence behind the shipped defaults.
|
|
|
713
771
|
- Initial shared routing table, cross-vendor dispatcher, runners, installer,
|
|
714
772
|
and baseline lint fixes.
|
|
715
773
|
|
|
716
|
-
[Unreleased]: https://github.com/Seraphim0916/omnilane/compare/v0.
|
|
774
|
+
[Unreleased]: https://github.com/Seraphim0916/omnilane/compare/v0.34.0...HEAD
|
|
775
|
+
[0.34.0]: https://github.com/Seraphim0916/omnilane/compare/v0.33.0...v0.34.0
|
|
776
|
+
[0.33.0]: https://github.com/Seraphim0916/omnilane/compare/v0.32.1...v0.33.0
|
|
777
|
+
[0.32.1]: https://github.com/Seraphim0916/omnilane/compare/v0.32.0...v0.32.1
|
|
717
778
|
[0.32.0]: https://github.com/Seraphim0916/omnilane/compare/v0.31.0...v0.32.0
|
|
718
779
|
|
|
719
780
|
[0.31.0]: https://github.com/Seraphim0916/omnilane/compare/v0.30.0...v0.31.0
|
package/README.ja.md
CHANGED
|
@@ -112,16 +112,16 @@ flowchart LR
|
|
|
112
112
|
|
|
113
113
|
| レーン | 第一候補 | バックアップ | 用途 |
|
|
114
114
|
|---|---|---|---|
|
|
115
|
-
| 🔥 hardest-coding | Claude Fable 5.1 (xhigh) | GPT-5.6 Sol (xhigh) | 最難関の実装、深い根本原因調査、正確性が重要な修正 |
|
|
115
|
+
| 🔥 hardest-coding | Claude Fable 5.1 (xhigh) | GPT-5.6 Sol (xhigh) → Grok 4.6 → Gemini 3.7 Flash (High) | 最難関の実装、深い根本原因調査、正確性が重要な修正 |
|
|
116
116
|
| 🏗️ bulk-mechanical | GPT-5.6 Sol (high) | Gemini 3.7 Flash (High) → Claude Sonnet 5 (high) | リファクタリング、移行、テスト、大規模レビュー——機械的な持久作業 |
|
|
117
117
|
| 🧹 triage | GPT-5.6 Luna (high) | Gemini 3.7 Flash (Low) → Claude Haiku 4.5 | 大量スキャン、一次選別 |
|
|
118
|
-
| ⚖️ hard-judgment | Claude
|
|
119
|
-
| ✒️ taste-final | Claude Fable 5.1 (high) | GPT-5.6 Sol (max) | ユーザー向け文章、プロンプト/文書の仕上げ、文体判断 |
|
|
118
|
+
| ⚖️ hard-judgment | Claude Opus 5 (xhigh) | GPT-5.6 Sol (max) → Grok 4.6 | アーキテクチャ判断、深い推論、セカンドオピニオン |
|
|
119
|
+
| ✒️ taste-final | Claude Fable 5.1 (high) | GPT-5.6 Sol (max) → Grok 4.6 → Gemini 3.7 Flash (High) | ユーザー向け文章、プロンプト/文書の仕上げ、文体判断 |
|
|
120
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 ドラフト |
|
|
121
|
+
| 🎨 ui-draft | GPT-5.6 Sol (xhigh) | Claude Fable 5.1 (high) → Gemini 3.7 Flash (High) | デザインシステム/参照画像がある場合だけの UI ドラフト |
|
|
122
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 |
|
|
123
|
+
| ⚡ fast-agentic | Gemini 3.7 Flash (Medium) | GPT-5.6 Luna (high) → Claude Haiku 4.5 | 高速なマルチステップ agentic ループ、マルチモーダル確認 |
|
|
124
|
+
| 📡 live-search | Grok 4.6 | Gemini 3.7 Flash (High) → Claude Sonnet 5 (high) | リアルタイム X/Web 検索とソーシャル文脈 |
|
|
125
125
|
| 🚰 coding-overflow | Grok 4.6 | Gemini 3.7 Flash (High) → Kimi K3 → Qwen3 Coder Plus → OpenCode | Codex クォータ不足時の中級コーディング逃がし弁 |
|
|
126
126
|
| 🗳️ arbitrate | `off`(オプトイン) | — | 重大判断用の内蔵意見パネル。デフォルト無効、`routing.local.yaml` で有効化し、投票者・ラウンドごとに 1 コール |
|
|
127
127
|
|
|
@@ -155,12 +155,12 @@ flowchart LR
|
|
|
155
155
|
なので追加コールなし)、どれを**ディスパッチ**するか。CLI の `omnilane` スキルが
|
|
156
156
|
該当行を自動適用します。これはその人間向けビューです。
|
|
157
157
|
|
|
158
|
-
- **Claude Code · Fable 5.1**——自分で実行:
|
|
159
|
-
- **Claude Code · Opus 5
|
|
158
|
+
- **Claude Code · Fable 5.1**——自分で実行:taste-final、hardest-coding。ディスパッチ:hard-judgment → Opus 5、bulk → Codex Sol high、long-context/高速ループ → Gemini 3.7 Flash、live-search → Grok。
|
|
159
|
+
- **Claude Code · Opus 5**——自分で実行:hard-judgment(これがデフォルトのレーン)。低いハルシネーション率や価格を優先するときはローカル override で taste-final も担当。最難関コーディング → Fable 5.1 または Sol、bulk → Sol high、long-context/高速ループ → Gemini 3.7 Flash、live-search → Grok。
|
|
160
160
|
- **Codex · Sol**——自分で実行:hardest-coding、bulk-mechanical、hard-judgment、ui-draft。ディスパッチ:taste-final → Claude、long-context/高速ループ → Gemini 3.7 Flash、live-search → Grok。
|
|
161
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
|
|
163
|
-
- **Antigravity · Gemini 3.7 Flash**——Medium の long-context/高速ループ、High の bulk/overflow、Low の triage
|
|
162
|
+
- **Grok Build · Grok 4.6**——live-search と coding-overflow を自分で実行し、hardest-coding・hard-judgment・taste-final のフォールバックも兼任。第一候補が使えるときは難しいコーディング/判断/文章を Codex、Claude、Gemini へ送り、API シグネチャと引用事実は検証します。
|
|
163
|
+
- **Antigravity · Gemini 3.7 Flash**——Medium の long-context/高速ループ、High の bulk/overflow、Low の triage を自分で実行し、High で hardest-coding・taste-final・ui-draft・live-search のフォールバックも兼任。第一候補が使えるときは最難関のコーディング/判断/文章を Codex、Claude へ。
|
|
164
164
|
|
|
165
165
|
</details>
|
|
166
166
|
|
|
@@ -290,7 +290,7 @@ omnilane ui status # Live UI の稼働状態を表
|
|
|
290
290
|
omnilane ui url # 現在の認証済みローカル URL を表示
|
|
291
291
|
omnilane ui stop # Live UI を停止
|
|
292
292
|
omnilane doctor [--json] # ルーティングとローカル実行環境を読み取り専用で診断
|
|
293
|
-
dispatch.sh [--background] [--dry-run] [--mode advise|work|sysops] [--workdir DIR]
|
|
293
|
+
dispatch.sh [--background] [--dry-run] [--thread NAME] [--mode advise|work|sysops] [--workdir DIR]
|
|
294
294
|
[--vendor V] [--model M] [--effort E] [--timeout SEC] [--job-timeout SEC]
|
|
295
295
|
LANE "TASK" # "-" で stdin から読む
|
|
296
296
|
dispatch.sh [--json] --list [--json]
|
|
@@ -308,6 +308,11 @@ configure.sh # 対話式レーンメニ
|
|
|
308
308
|
configure.sh set|get|unset|list|diff LANE [SPEC] # routing.local.yaml を非対話で編集/確認
|
|
309
309
|
```
|
|
310
310
|
|
|
311
|
+
`--thread NAME` は単発ディスパッチ間で名前付きの Claude、Codex、Grok、
|
|
312
|
+
Gemini 会話を継続します。0.33.0 ではベンダー、モデル、effort、物理 workdir
|
|
313
|
+
を固定します。ローカル状態は `jobs.sh threads`、`threads show NAME`、
|
|
314
|
+
`threads rm NAME` で管理でき、削除してもベンダー側のセッションは残ります。
|
|
315
|
+
|
|
311
316
|
終了コード:`2` 使い方エラー(無効なベンダー、または指定ベンダーがレーンに
|
|
312
317
|
ない場合を含む)、`3` レーン無効(off)、`4` チェーン内に利用可能な CLI がない、
|
|
313
318
|
または設定済みの指定ベンダー CLI が利用不可、`5` Round 1 の成功投票者不足、
|
|
@@ -432,9 +437,12 @@ advise 専用で、ファイルを編集しません。
|
|
|
432
437
|
|
|
433
438
|
<br/>
|
|
434
439
|
|
|
435
|
-
Fable 5.1 は現在 `hardest-coding`、`
|
|
436
|
-
|
|
437
|
-
|
|
440
|
+
Fable 5.1 は現在 `hardest-coding`、`taste-final` の第一候補です。同じ xhigh
|
|
441
|
+
では知能、agentic 作業、コーディングで Opus 5 を上回ります。Sol max は、
|
|
442
|
+
はるかに安価な別ベンダーの判断用フォールバックです。`hard-judgment` 自体は
|
|
443
|
+
現在 Opus 5 xhigh がデフォルトです:Fable の agentic スコアの 97.7% を
|
|
444
|
+
コスト 68% で達成し、ハルシネーション率も低いため、このレーン自身の
|
|
445
|
+
コスト基準では安い方が勝ちます。
|
|
438
446
|
|
|
439
447
|
| 評価(AA、2026-09-02 取得) | Claude Fable 5.1 (xhigh) | Claude Opus 5 (xhigh) | GPT-5.6 Sol (max) |
|
|
440
448
|
|---|---:|---:|---:|
|
|
@@ -446,12 +454,12 @@ Fable 5.1 は現在 `hardest-coding`、`hard-judgment`、`taste-final` の
|
|
|
446
454
|
|
|
447
455
|
Fable 5.1 は bulk と triage のデフォルトではありません。トークン単価が
|
|
448
456
|
Opus 5 の 2 倍で、Claude Code のサブスクリプションクォータも 1 ターン当たり
|
|
449
|
-
最も多く消費するためです。Opus 5
|
|
450
|
-
|
|
451
|
-
|
|
457
|
+
最も多く消費するためです。Opus 5 は現在 `hard-judgment` のデフォルトを担い、
|
|
458
|
+
medium で `long-context` にも残り、`~/.omnilane/routing.local.yaml` で
|
|
459
|
+
任意のレーンへいつでも戻せます——例えば Fable を呼び戻すには:
|
|
452
460
|
|
|
453
461
|
```yaml
|
|
454
|
-
hard-judgment: claude claude-
|
|
462
|
+
hard-judgment: claude claude-fable-5-1 xhigh
|
|
455
463
|
```
|
|
456
464
|
|
|
457
465
|
</details>
|
|
@@ -530,6 +538,15 @@ scripts/dispatch.sh --dry-run hardest-coding "…" # 解決済みプラン、
|
|
|
530
538
|
|
|
531
539
|
## 📜 リリース履歴
|
|
532
540
|
|
|
541
|
+
## v0.33.0 の新機能
|
|
542
|
+
|
|
543
|
+
- **4 ベンダー対応スレッドディスパッチ。** `--thread NAME` はベンダー、
|
|
544
|
+
モデル、effort、workdir を固定し、Claude、Codex、Grok、Gemini の会話を
|
|
545
|
+
フォアグラウンドまたはバックグラウンドの単発ジョブ間で継続します。
|
|
546
|
+
direct-API ベンダー、`exec`、ライブモード、固定値の不一致は終了コード 2 で停止します。
|
|
547
|
+
- **スレッド状態の管理。** `jobs.sh threads`、`threads show NAME`、
|
|
548
|
+
`threads rm NAME` でローカル状態を一覧、表示、削除できます。
|
|
549
|
+
|
|
533
550
|
## v0.32.0 の新機能
|
|
534
551
|
|
|
535
552
|
- **AA 2026-09 スナップショットで全ルーティングを再評価。** Fable 5.1 と Gemini 3.7 Flash がデフォルトに入り、数値は新しい日付付き文書に集約しました。
|
package/README.ko.md
CHANGED
|
@@ -110,16 +110,16 @@ flowchart LR
|
|
|
110
110
|
|
|
111
111
|
| 레인 | 1순위 모델 | 백업 | 용도 |
|
|
112
112
|
|---|---|---|---|
|
|
113
|
-
| 🔥 hardest-coding | Claude Fable 5.1 (xhigh) | GPT-5.6 Sol (xhigh) | 가장 어려운 구현, 근본 원인 디버깅, 정확성이 핵심인 수정 |
|
|
113
|
+
| 🔥 hardest-coding | Claude Fable 5.1 (xhigh) | GPT-5.6 Sol (xhigh) → Grok 4.6 → Gemini 3.7 Flash (High) | 가장 어려운 구현, 근본 원인 디버깅, 정확성이 핵심인 수정 |
|
|
114
114
|
| 🏗️ bulk-mechanical | GPT-5.6 Sol (high) | Gemini 3.7 Flash (High) → Claude Sonnet 5 (high) | 리팩터링, 마이그레이션, 테스트, 대량 스윕——기계적 지구력 작업 |
|
|
115
115
|
| 🧹 triage | GPT-5.6 Luna (high) | Gemini 3.7 Flash (Low) → Claude Haiku 4.5 | 대량 스캔과 1차 선별 |
|
|
116
|
-
| ⚖️ hard-judgment | Claude
|
|
117
|
-
| ✒️ taste-final | Claude Fable 5.1 (high) | GPT-5.6 Sol (max) | 사용자 대상 문장, 프롬프트/문서 다듬기, 스타일 판정 |
|
|
116
|
+
| ⚖️ hard-judgment | Claude Opus 5 (xhigh) | GPT-5.6 Sol (max) → Grok 4.6 | 아키텍처 판정, 심층 추론, 2차 의견 |
|
|
117
|
+
| ✒️ taste-final | Claude Fable 5.1 (high) | GPT-5.6 Sol (max) → Grok 4.6 → Gemini 3.7 Flash (High) | 사용자 대상 문장, 프롬프트/문서 다듬기, 스타일 판정 |
|
|
118
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 초안 |
|
|
119
|
+
| 🎨 ui-draft | GPT-5.6 Sol (xhigh) | Claude Fable 5.1 (high) → Gemini 3.7 Flash (High) | 디자인 시스템/참조 이미지가 있을 때만 UI 초안 |
|
|
120
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 |
|
|
121
|
+
| ⚡ fast-agentic | Gemini 3.7 Flash (Medium) | GPT-5.6 Luna (high) → Claude Haiku 4.5 | 빠른 멀티스텝 agentic 루프, 멀티모달 확인 |
|
|
122
|
+
| 📡 live-search | Grok 4.6 | Gemini 3.7 Flash (High) → Claude Sonnet 5 (high) | 실시간 X/웹 검색과 소셜 맥락 |
|
|
123
123
|
| 🚰 coding-overflow | Grok 4.6 | Gemini 3.7 Flash (High) → Kimi K3 → Qwen3 Coder Plus → OpenCode | Codex 쿼터 소진 시 중급 코딩 안전 밸브 |
|
|
124
124
|
| 🗳️ arbitrate | `off`(옵트인) | — | 중대한 판단을 위한 내장 의견 패널. 기본 비활성, `routing.local.yaml` 에서 활성화하며 투표자·라운드당 1회 호출 |
|
|
125
125
|
|
|
@@ -153,12 +153,12 @@ flowchart LR
|
|
|
153
153
|
추가 호출 없음)와 **디스패치**하는지입니다. CLI 의 `omnilane` 스킬이 해당
|
|
154
154
|
행을 자동 적용하며, 이것은 사람이 보는 버전입니다.
|
|
155
155
|
|
|
156
|
-
- **Claude Code · Fable 5.1**——직접 실행:
|
|
157
|
-
- **Claude Code · Opus 5
|
|
156
|
+
- **Claude Code · Fable 5.1**——직접 실행: taste-final, hardest-coding. 디스패치: hard-judgment → Opus 5, 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
158
|
- **Codex · Sol**——직접 실행: hardest-coding, bulk-mechanical, hard-judgment, ui-draft. 디스패치: taste-final → Claude, long-context/빠른 루프 → Gemini 3.7 Flash, live-search → Grok.
|
|
159
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 를 직접
|
|
161
|
-
- **Antigravity · Gemini 3.7 Flash**——Medium 의 long-context/빠른 루프, High 의 bulk/overflow, Low 의 triage 를 직접
|
|
160
|
+
- **Grok Build · Grok 4.6**——live-search 와 coding-overflow 를 직접 실행하며, hardest-coding, hard-judgment, taste-final 의 폴백도 겸합니다. 1순위 후보를 쓸 수 있으면 어려운 코딩/판단/문장은 Codex, Claude, Gemini 로 보내고 API 시그니처와 인용 사실을 검증합니다.
|
|
161
|
+
- **Antigravity · Gemini 3.7 Flash**——Medium 의 long-context/빠른 루프, High 의 bulk/overflow, Low 의 triage 를 직접 실행하며, High 로 hardest-coding, taste-final, ui-draft, live-search 의 폴백도 겸합니다. 1순위 후보를 쓸 수 있으면 최고난도 코딩/판단/문장은 Codex, Claude 로 보냅니다.
|
|
162
162
|
|
|
163
163
|
</details>
|
|
164
164
|
|
|
@@ -282,7 +282,7 @@ omnilane ui status # Live UI 실행 상태 표시
|
|
|
282
282
|
omnilane ui url # 현재 인증된 로컬 URL 표시
|
|
283
283
|
omnilane ui stop # Live UI 중지
|
|
284
284
|
omnilane doctor [--json] # 라우팅과 로컬 실행 환경을 읽기 전용으로 진단
|
|
285
|
-
dispatch.sh [--background] [--dry-run] [--mode advise|work|sysops] [--workdir DIR]
|
|
285
|
+
dispatch.sh [--background] [--dry-run] [--thread NAME] [--mode advise|work|sysops] [--workdir DIR]
|
|
286
286
|
[--vendor V] [--model M] [--effort E] [--timeout SEC] [--job-timeout SEC]
|
|
287
287
|
LANE "TASK" # "-" 는 stdin 에서 읽기
|
|
288
288
|
dispatch.sh [--json] --list [--json]
|
|
@@ -300,6 +300,11 @@ configure.sh # 대화형 레인 메뉴
|
|
|
300
300
|
configure.sh set|get|unset|list|diff LANE [SPEC] # routing.local.yaml 비대화식 편집/확인
|
|
301
301
|
```
|
|
302
302
|
|
|
303
|
+
`--thread NAME`은 단발 디스패치 사이에서 이름이 있는 Claude, Codex, Grok,
|
|
304
|
+
Gemini 대화를 이어갑니다. 0.33.0에서는 벤더, 모델, effort, 실제 workdir를
|
|
305
|
+
고정합니다. 로컬 상태는 `jobs.sh threads`, `threads show NAME`,
|
|
306
|
+
`threads rm NAME`으로 관리하며, 상태를 삭제해도 벤더 세션은 남습니다.
|
|
307
|
+
|
|
303
308
|
종료 코드: `2` 사용법 오류(잘못된 벤더 또는 지정 벤더가 레인에 없는 경우 포함),
|
|
304
309
|
`3` 레인 비활성(off), `4` 체인에 사용 가능한 CLI 가 없거나 설정된 지정 벤더
|
|
305
310
|
CLI 를 사용할 수 없음, `5` 1라운드 성공 투표자 부족, `6` 2라운드 반박 전부 실패,
|
|
@@ -418,9 +423,12 @@ Codex 중심, Codex 없음)이 들어 있습니다.
|
|
|
418
423
|
|
|
419
424
|
<br/>
|
|
420
425
|
|
|
421
|
-
Fable 5.1 은 이제 `hardest-coding`, `
|
|
422
|
-
|
|
423
|
-
|
|
426
|
+
Fable 5.1 은 이제 `hardest-coding`, `taste-final`의 1순위입니다. 같은
|
|
427
|
+
xhigh 에서 지능, agentic 작업, 코딩 모두 Opus 5 를 앞섭니다. Sol max 는
|
|
428
|
+
훨씬 저렴한 타 벤더 판단 폴백으로 남습니다. `hard-judgment` 자체는 이제
|
|
429
|
+
Opus 5 xhigh 가 기본값입니다: Fable 의 agentic 점수 97.7%를 비용 68%에
|
|
430
|
+
얻으면서 환각률도 더 낮아, 이 레인 고유의 비용 기준으로는 더 저렴한
|
|
431
|
+
구성이 승리합니다.
|
|
424
432
|
|
|
425
433
|
| 평가(AA, 2026-09-02 수집) | Claude Fable 5.1 (xhigh) | Claude Opus 5 (xhigh) | GPT-5.6 Sol (max) |
|
|
426
434
|
|---|---:|---:|---:|
|
|
@@ -432,12 +440,12 @@ Fable 5.1 은 이제 `hardest-coding`, `hard-judgment`, `taste-final`의
|
|
|
432
440
|
|
|
433
441
|
Fable 5.1 은 bulk 나 triage 기본값이 아닙니다. 토큰 가격이 Opus 5 의
|
|
434
442
|
2배이고 Claude Code 구독 쿼터도 턴당 가장 많이 소비하기 때문입니다.
|
|
435
|
-
Opus 5 는
|
|
436
|
-
|
|
437
|
-
|
|
443
|
+
Opus 5 는 이제 `hard-judgment`의 기본값이며 medium 으로 `long-context`에도
|
|
444
|
+
남아 있고, `~/.omnilane/routing.local.yaml` 설정으로 어느 레인에든
|
|
445
|
+
언제든 다시 넣을 수 있습니다 — 예를 들어 Fable 을 되돌리려면:
|
|
438
446
|
|
|
439
447
|
```yaml
|
|
440
|
-
hard-judgment: claude claude-
|
|
448
|
+
hard-judgment: claude claude-fable-5-1 xhigh
|
|
441
449
|
```
|
|
442
450
|
|
|
443
451
|
</details>
|
|
@@ -514,6 +522,15 @@ scripts/dispatch.sh --dry-run hardest-coding "…" # 완전히 해석된 계
|
|
|
514
522
|
|
|
515
523
|
## 📜 릴리스 기록
|
|
516
524
|
|
|
525
|
+
## v0.33.0 새 기능
|
|
526
|
+
|
|
527
|
+
- **4개 벤더 스레드 디스패치.** `--thread NAME`은 벤더, 모델, effort,
|
|
528
|
+
workdir를 고정하고 Claude, Codex, Grok, Gemini 대화를 포그라운드 또는
|
|
529
|
+
백그라운드 단발 작업 사이에서 이어갑니다. direct-API 벤더, `exec`, 라이브
|
|
530
|
+
모드, 고정값 불일치는 종료 코드 2로 중단됩니다.
|
|
531
|
+
- **스레드 상태 관리.** `jobs.sh threads`, `threads show NAME`, `threads rm NAME`으로
|
|
532
|
+
로컬 상태를 나열하거나 확인하고 삭제할 수 있습니다.
|
|
533
|
+
|
|
517
534
|
## v0.32.0 새 기능
|
|
518
535
|
|
|
519
536
|
- **AA 2026-09 스냅샷으로 전체 라우팅을 재평가했습니다.** Fable 5.1 과 Gemini 3.7 Flash 가 기본값에 들어가고 수치는 새 날짜별 문서에 모았습니다.
|
package/README.md
CHANGED
|
@@ -115,16 +115,16 @@ actually resolves.
|
|
|
115
115
|
|
|
116
116
|
| Lane | First choice | Backup | When |
|
|
117
117
|
|---|---|---|---|
|
|
118
|
-
| 🔥 hardest-coding | Claude Fable 5.1 (xhigh) | GPT-5.6 Sol (xhigh) | Hardest implementation, deep root-cause debug, correctness-critical edits |
|
|
118
|
+
| 🔥 hardest-coding | Claude Fable 5.1 (xhigh) | GPT-5.6 Sol (xhigh) → Grok 4.6 → Gemini 3.7 Flash (High) | Hardest implementation, deep root-cause debug, correctness-critical edits |
|
|
119
119
|
| 🏗️ bulk-mechanical | GPT-5.6 Sol (high) | Gemini 3.7 Flash (High) → Claude Sonnet 5 (high) | Refactors, migrations, tests, review sweeps — mechanical endurance |
|
|
120
120
|
| 🧹 triage | GPT-5.6 Luna (high) | Gemini 3.7 Flash (Low) → Claude Haiku 4.5 | High-volume scans, first-pass filtering |
|
|
121
|
-
| ⚖️ hard-judgment | Claude
|
|
122
|
-
| ✒️ taste-final | Claude Fable 5.1 (high) | GPT-5.6 Sol (max) | User-facing prose, prompt/doc polish, style arbitration |
|
|
121
|
+
| ⚖️ hard-judgment | Claude Opus 5 (xhigh) | GPT-5.6 Sol (max) → Grok 4.6 | Architecture arbitration, deep reasoning, second opinions |
|
|
122
|
+
| ✒️ taste-final | Claude Fable 5.1 (high) | GPT-5.6 Sol (max) → Grok 4.6 → Gemini 3.7 Flash (High) | User-facing prose, prompt/doc polish, style arbitration |
|
|
123
123
|
| 💬 consult | GPT-5.6 Sol (max) | Claude Fable 5.1 (high) → Grok 4.6 → Gemini 3.7 Flash (High) | Direct named-model consultation; keep `--vendor` to prevent fallback |
|
|
124
|
-
| 🎨 ui-draft | GPT-5.6 Sol (xhigh) | Claude Fable 5.1 (high) | UI drafts only WITH a design system / reference images |
|
|
124
|
+
| 🎨 ui-draft | GPT-5.6 Sol (xhigh) | Claude Fable 5.1 (high) → Gemini 3.7 Flash (High) | UI drafts only WITH a design system / reference images |
|
|
125
125
|
| 📚 long-context | Gemini 3.7 Flash (Medium) | GPT-5.6 Terra (max) → Claude Opus 5 (medium) | Long-document retrieval and synthesis, ordered on AA-LCR, cost, and throughput |
|
|
126
|
-
| ⚡ fast-agentic | Gemini 3.7 Flash (Medium) | GPT-5.6 Luna (high) | Fast multi-step agentic loops, multimodal checks |
|
|
127
|
-
| 📡 live-search | Grok 4.6 |
|
|
126
|
+
| ⚡ fast-agentic | Gemini 3.7 Flash (Medium) | GPT-5.6 Luna (high) → Claude Haiku 4.5 | Fast multi-step agentic loops, multimodal checks |
|
|
127
|
+
| 📡 live-search | Grok 4.6 | Gemini 3.7 Flash (High) → Claude Sonnet 5 (high) | Realtime X/web search and social context |
|
|
128
128
|
| 🚰 coding-overflow | Grok 4.6 | Gemini 3.7 Flash (High) → Kimi K3 → Qwen3 Coder Plus → OpenCode | Codex-quota relief valve for mid-tier coding |
|
|
129
129
|
| 🗳️ arbitrate | off (opt-in vote panel) | — | Built-in opinion panel for big calls — disabled by default; enable it in `routing.local.yaml`, one call per voter per round |
|
|
130
130
|
|
|
@@ -157,12 +157,12 @@ with who is driving. What changes is which lanes you **self-execute** (you
|
|
|
157
157
|
already are that model, so no second call) versus **dispatch**. Your harness's
|
|
158
158
|
`omnilane` skill applies the right row automatically; this is the human view.
|
|
159
159
|
|
|
160
|
-
- **Claude Code · Fable 5.1** — self-execute:
|
|
161
|
-
- **Claude Code · Opus 5** — self-execute: hard-judgment
|
|
160
|
+
- **Claude Code · Fable 5.1** — self-execute: taste-final, hardest-coding. Dispatch hard-judgment → Opus 5; bulk → Codex Sol high; long-context and fast loops → Gemini 3.7 Flash; live-search → Grok.
|
|
161
|
+
- **Claude Code · Opus 5** — self-execute: hard-judgment, its default lane. Use a local override for taste-final when its lower hallucination rate or price is preferred. Dispatch hardest coding → Fable 5.1 or Sol, bulk → Sol high, long-context and fast loops → Gemini 3.7 Flash, live-search → Grok.
|
|
162
162
|
- **Codex · Sol** — self-execute: hardest-coding, bulk-mechanical, hard-judgment, ui-draft. Dispatch taste-final → Claude, long-context and fast loops → Gemini 3.7 Flash, live-search → Grok.
|
|
163
163
|
- **Codex · Terra** — self-execute: long-context as the Codex fallback. Bulk-mechanical now defaults to Sol high; escalate hardest pieces to Sol xhigh, taste → Claude, fast loops → Gemini 3.7 Flash, live-search → Grok.
|
|
164
|
-
- **Grok Build · Grok 4.6** — self-execute: live-search and coding-overflow. Dispatch hard coding/judgment/taste to Codex/Claude/Gemini; verify API signatures and cited facts.
|
|
165
|
-
- **Antigravity · Gemini 3.7 Flash** — self-execute: long-context and fast loops at Medium, bulk/overflow at High, triage at Low. Dispatch hardest coding/judgment/taste to Codex/Claude
|
|
164
|
+
- **Grok Build · Grok 4.6** — self-execute: live-search and coding-overflow, plus fallback duty in hardest-coding, hard-judgment, and taste-final. Dispatch primary hard coding/judgment/taste work to Codex/Claude/Gemini when available; verify API signatures and cited facts.
|
|
165
|
+
- **Antigravity · Gemini 3.7 Flash** — self-execute: long-context and fast loops at Medium, bulk/overflow at High, triage at Low, plus fallback duty (High) in hardest-coding, taste-final, ui-draft, and live-search. Dispatch primary hardest coding/judgment/taste to Codex/Claude when available.
|
|
166
166
|
|
|
167
167
|
</details>
|
|
168
168
|
|
|
@@ -321,7 +321,7 @@ omnilane ui url # print the current authenticated
|
|
|
321
321
|
omnilane ui stop # stop the Live UI
|
|
322
322
|
omnilane doctor [--json] [--strict] [--probe V] [--probe-timeout SEC] # live probe is opt-in
|
|
323
323
|
omnilane benchmark [--json] [--run] [--vendor V] [--cost-per-call V=USD] # dry-run by default
|
|
324
|
-
dispatch.sh [--background] [--dry-run] [--mode advise|work|sysops] [--workdir DIR]
|
|
324
|
+
dispatch.sh [--background] [--dry-run] [--thread NAME] [--mode advise|work|sysops] [--workdir DIR]
|
|
325
325
|
[--vendor V] [--model M] [--effort E] [--timeout SEC] [--job-timeout SEC]
|
|
326
326
|
LANE "TASK" # "-" reads task from stdin
|
|
327
327
|
dispatch.sh [--json] --list [--json]
|
|
@@ -340,6 +340,11 @@ configure.sh # interactive lane menu
|
|
|
340
340
|
configure.sh set|get|unset|list|diff LANE [SPEC] # script/inspect routing.local.yaml, no tty
|
|
341
341
|
```
|
|
342
342
|
|
|
343
|
+
`--thread NAME` continues named Claude, Codex, Grok, or Gemini conversations across
|
|
344
|
+
single-shot dispatches. In 0.33.0 it pins vendor, model, effort, and physical
|
|
345
|
+
workdir; use `jobs.sh threads`, `threads show NAME`, or `threads rm NAME` to
|
|
346
|
+
manage local state without deleting the vendor session.
|
|
347
|
+
|
|
343
348
|
`jobs recommend` reads only validated public metadata and exit codes. It ranks
|
|
344
349
|
eligible vendors by success rate, sample count, then name; the default minimum
|
|
345
350
|
is three completed jobs. It never reads task/result bodies or changes routing.
|
|
@@ -471,7 +476,7 @@ whose CLI is actually installed. With one subscription the whole table collapses
|
|
|
471
476
|
onto that vendor; lanes with nothing available turn off rather than failing.
|
|
472
477
|
`omnilane doctor` shows exactly what your machine can reach today, and
|
|
473
478
|
`routing.local.yaml.example` ships starter profiles for common situations
|
|
474
|
-
(Claude-
|
|
479
|
+
(Claude-focused, Codex-heavy, no-Codex).
|
|
475
480
|
|
|
476
481
|
</details>
|
|
477
482
|
|
|
@@ -495,9 +500,12 @@ with the key you set — those are advise-only and never edit files.
|
|
|
495
500
|
|
|
496
501
|
<br/>
|
|
497
502
|
|
|
498
|
-
Fable 5.1 now leads `hardest-coding
|
|
499
|
-
|
|
500
|
-
|
|
503
|
+
Fable 5.1 now leads `hardest-coding` and `taste-final`. At matched xhigh
|
|
504
|
+
effort it leads Opus 5 on intelligence, agentic work, and coding. Sol max
|
|
505
|
+
remains the far cheaper cross-vendor judgment fallback. `hard-judgment`
|
|
506
|
+
itself now defaults to Opus 5 xhigh: it returns 97.7% of Fable's agentic
|
|
507
|
+
score at 68% of the cost and a lower hallucination rate, so on that lane's
|
|
508
|
+
own per-cost criterion the cheaper configuration wins.
|
|
501
509
|
|
|
502
510
|
| Benchmark (AA, retrieved 2026-09-02) | Claude Fable 5.1 (xhigh) | Claude Opus 5 (xhigh) | GPT-5.6 Sol (max) |
|
|
503
511
|
|---|---:|---:|---:|
|
|
@@ -508,13 +516,13 @@ coding. Sol max remains the far cheaper cross-vendor judgment fallback.
|
|
|
508
516
|
| AA $/task | $2.65 | $1.80 | **$0.95** |
|
|
509
517
|
|
|
510
518
|
Fable 5.1 is not a bulk or triage default: it costs twice Opus 5 per token and
|
|
511
|
-
consumes the most Claude Code subscription quota per turn. Opus 5
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
519
|
+
consumes the most Claude Code subscription quota per turn. Opus 5 now leads
|
|
520
|
+
`hard-judgment` by default, stays in `long-context` at medium, and remains
|
|
521
|
+
selectable everywhere through `~/.omnilane/routing.local.yaml` — for example,
|
|
522
|
+
to bring Fable back:
|
|
515
523
|
|
|
516
524
|
```yaml
|
|
517
|
-
hard-judgment: claude claude-
|
|
525
|
+
hard-judgment: claude claude-fable-5-1 xhigh
|
|
518
526
|
```
|
|
519
527
|
|
|
520
528
|
</details>
|
|
@@ -594,6 +602,15 @@ working notes, including per-benchmark caveats, live in
|
|
|
594
602
|
|
|
595
603
|
## 📜 Release history
|
|
596
604
|
|
|
605
|
+
## What's new in v0.33.0
|
|
606
|
+
|
|
607
|
+
- **Four-vendor threaded dispatch.** `--thread NAME` continues pinned Claude,
|
|
608
|
+
Codex, Grok, or Gemini conversations across foreground or background
|
|
609
|
+
single-shot jobs; direct-API vendors, `exec`, live mode, and pin mismatches
|
|
610
|
+
stop with visible exit-2 notices.
|
|
611
|
+
- **Thread inspection.** `jobs.sh threads`, `threads show NAME`, and
|
|
612
|
+
`threads rm NAME` list, inspect, or remove local thread state.
|
|
613
|
+
|
|
597
614
|
## What's new in v0.32.0
|
|
598
615
|
|
|
599
616
|
- **Full 2026-09 routing re-evaluation.** Fable 5.1 and Gemini 3.7 Flash enter the defaults, backed by the dated Artificial Analysis snapshot.
|
package/README.zh-CN.md
CHANGED
|
@@ -103,16 +103,16 @@ flowchart LR
|
|
|
103
103
|
|
|
104
104
|
| 通道 | 首选模型 | 备选模型 | 用途 |
|
|
105
105
|
|---|---|---|---|
|
|
106
|
-
| 🔥 hardest-coding | Claude Fable 5.1 (xhigh) | GPT-5.6 Sol (xhigh) | 最难的实现、深度调试、正确性关键的修改 |
|
|
106
|
+
| 🔥 hardest-coding | Claude Fable 5.1 (xhigh) | GPT-5.6 Sol (xhigh) → Grok 4.6 → Gemini 3.7 Flash (High) | 最难的实现、深度调试、正确性关键的修改 |
|
|
107
107
|
| 🏗️ bulk-mechanical | GPT-5.6 Sol (high) | Gemini 3.7 Flash (High) → Claude Sonnet 5 (high) | 重构、迁移、测试、大范围扫描——机械耐力活 |
|
|
108
108
|
| 🧹 triage | GPT-5.6 Luna (high) | Gemini 3.7 Flash (Low) → Claude Haiku 4.5 | 大量扫描、第一轮筛选 |
|
|
109
|
-
| ⚖️ hard-judgment | Claude
|
|
110
|
-
| ✒️ taste-final | Claude Fable 5.1 (high) | GPT-5.6 Sol (max) | 对外文字、提示词/文档润色、风格裁决 |
|
|
109
|
+
| ⚖️ hard-judgment | Claude Opus 5 (xhigh) | GPT-5.6 Sol (max) → Grok 4.6 | 架构裁决、深度推理、第二意见 |
|
|
110
|
+
| ✒️ taste-final | Claude Fable 5.1 (high) | GPT-5.6 Sol (max) → Grok 4.6 → Gemini 3.7 Flash (High) | 对外文字、提示词/文档润色、风格裁决 |
|
|
111
111
|
| 💬 consult | GPT-5.6 Sol (max) | Claude Fable 5.1 (high) → Grok 4.6 → Gemini 3.7 Flash (High) | 直接指定模型咨询;保留 `--vendor` 避免降级 |
|
|
112
|
-
| 🎨 ui-draft | GPT-5.6 Sol (xhigh) | Claude Fable 5.1 (high) | 仅在提供设计系统/参考图时生成 UI 草稿 |
|
|
112
|
+
| 🎨 ui-draft | GPT-5.6 Sol (xhigh) | Claude Fable 5.1 (high) → Gemini 3.7 Flash (High) | 仅在提供设计系统/参考图时生成 UI 草稿 |
|
|
113
113
|
| 📚 long-context | Gemini 3.7 Flash (Medium) | GPT-5.6 Terra (max) → Claude Opus 5 (medium) | 长文档提取与综合,按 AA-LCR、成本和吞吐排序 |
|
|
114
|
-
| ⚡ fast-agentic | Gemini 3.7 Flash (Medium) | GPT-5.6 Luna (high) | 高速多步骤工具循环、多模态检查 |
|
|
115
|
-
| 📡 live-search | Grok 4.6 |
|
|
114
|
+
| ⚡ fast-agentic | Gemini 3.7 Flash (Medium) | GPT-5.6 Luna (high) → Claude Haiku 4.5 | 高速多步骤工具循环、多模态检查 |
|
|
115
|
+
| 📡 live-search | Grok 4.6 | Gemini 3.7 Flash (High) → Claude Sonnet 5 (high) | 实时 X/网页搜索与社交上下文 |
|
|
116
116
|
| 🚰 coding-overflow | Grok 4.6 | Gemini 3.7 Flash (High) → Kimi K3 → Qwen3 Coder Plus → OpenCode | Codex 配额耗尽时的中量级编码安全阀 |
|
|
117
117
|
| 🗳️ arbitrate | `off`(可选模型评审团) | — | 重大决定的内置意见评审团;默认禁用,在 `routing.local.yaml` 启用,每位评审每轮调用一次 |
|
|
118
118
|
|
|
@@ -140,12 +140,12 @@ flowchart LR
|
|
|
140
140
|
你哪些通道**自己做**(你本来就是那个模型,省一次调用)、哪些**派出去**。你 CLI 里
|
|
141
141
|
的 `omnilane` 技能会自动套对的那一行,这里是给人看的版本。
|
|
142
142
|
|
|
143
|
-
- **Claude Code · Fable 5.1**——自己执行:
|
|
144
|
-
- **Claude Code · Opus 5
|
|
143
|
+
- **Claude Code · Fable 5.1**——自己执行:taste-final、hardest-coding。派发:hard-judgment → Opus 5;bulk → Codex Sol high;long-context/高速循环 → Gemini 3.7 Flash;实时搜索 → Grok。
|
|
144
|
+
- **Claude Code · Opus 5**——自己执行:hard-judgment(默认车道)。需要更低幻觉率或价格时,用本地覆写让它接手 taste-final。最难编码 → Fable 5.1 或 Sol;bulk → Sol high;long-context/高速循环 → Gemini 3.7 Flash;实时搜索 → Grok。
|
|
145
145
|
- **Codex · Sol**——自己执行:hardest-coding、bulk-mechanical、hard-judgment、ui-draft。派发:taste-final → Claude;long-context/高速循环 → Gemini 3.7 Flash;实时搜索 → Grok。
|
|
146
146
|
- **Codex · Terra**——自己执行 long-context 的 Codex 备用任务;bulk-mechanical 现在默认由 Sol high 处理。最难部分升级到 Sol xhigh,taste → Claude,高速循环 → Gemini 3.7 Flash,实时搜索 → Grok。
|
|
147
|
-
- **Grok Build · Grok 4.6**——自己执行 live-search、coding-overflow
|
|
148
|
-
- **Antigravity · Gemini 3.7 Flash**——自己执行:Medium 的 long-context/高速循环、High 的 bulk/overflow、Low 的 triage
|
|
147
|
+
- **Grok Build · Grok 4.6**——自己执行 live-search、coding-overflow,并兼任 hardest-coding、hard-judgment、taste-final 的备用。首选可用时,最难的编码/判断/文字交给 Codex、Claude、Gemini;仍需验证 API 签名和引用事实。
|
|
148
|
+
- **Antigravity · Gemini 3.7 Flash**——自己执行:Medium 的 long-context/高速循环、High 的 bulk/overflow、Low 的 triage,并以 High 兼任 hardest-coding、taste-final、ui-draft、live-search 的备用。首选可用时,最难编码/判断/文字交给 Codex、Claude。
|
|
149
149
|
|
|
150
150
|
</details>
|
|
151
151
|
|
|
@@ -265,7 +265,7 @@ omnilane ui status # 查看 Live UI 是否正在运
|
|
|
265
265
|
omnilane ui url # 输出当前通过认证的本地链接
|
|
266
266
|
omnilane ui stop # 停止 Live UI
|
|
267
267
|
omnilane doctor [--json] # 只读检查路由与本地运行环境
|
|
268
|
-
dispatch.sh [--background] [--dry-run] [--mode advise|work|sysops] [--workdir 目录]
|
|
268
|
+
dispatch.sh [--background] [--dry-run] [--thread NAME] [--mode advise|work|sysops] [--workdir 目录]
|
|
269
269
|
[--vendor V] [--model M] [--effort E] [--timeout SEC] [--job-timeout SEC]
|
|
270
270
|
通道 "任务" # "-" 表示从 stdin 读任务
|
|
271
271
|
dispatch.sh [--json] --list [--json]
|
|
@@ -283,6 +283,11 @@ configure.sh # 交互通道菜单
|
|
|
283
283
|
configure.sh set|get|unset|list|diff LANE [SPEC] # 非交互编辑/查看 routing.local.yaml
|
|
284
284
|
```
|
|
285
285
|
|
|
286
|
+
`--thread NAME` 可在多次单次派发间延续命名的 Claude、Codex、Grok 或 Gemini
|
|
287
|
+
对话。0.33.0 会固定厂商、模型、effort 与实际工作目录;使用
|
|
288
|
+
`jobs.sh threads`、`threads show NAME`、`threads rm NAME` 管理本地状态,
|
|
289
|
+
删除状态不会删除厂商端会话。
|
|
290
|
+
|
|
286
291
|
退出码:`2` 用法错误(包括厂商值无效,或指定厂商不在该通道)、`3` 通道已关闭、
|
|
287
292
|
`4` 候选链没有可用 CLI,或指定厂商已配置但其 CLI 不可用、
|
|
288
293
|
`5` 第一轮成功评审太少、`6` 第二轮没有任何反驳成功、`86` 拒绝嵌套派发、
|
|
@@ -398,9 +403,11 @@ omnilane goal close "$GOAL_ID" --summary "结账集成已稳定"
|
|
|
398
403
|
|
|
399
404
|
<br/>
|
|
400
405
|
|
|
401
|
-
Fable 5.1 现在领跑 `hardest-coding`、`
|
|
402
|
-
|
|
403
|
-
|
|
406
|
+
Fable 5.1 现在领跑 `hardest-coding`、`taste-final`。同为 xhigh 时,它在
|
|
407
|
+
智能、代理式工作和编码上都领先 Opus 5;Sol max 则保留为便宜得多的跨厂商
|
|
408
|
+
判断备用项。`hard-judgment` 本身现在改为默认走 Opus 5 xhigh:它能拿到
|
|
409
|
+
Fable 代理式分数的 97.7%,成本却只要 68%,幻觉率也更低——按这条车道
|
|
410
|
+
自身的每成本准则,更便宜的配置胜出。
|
|
404
411
|
|
|
405
412
|
| 评测(AA,抓取于 2026-09-02) | Claude Fable 5.1 (xhigh) | Claude Opus 5 (xhigh) | GPT-5.6 Sol (max) |
|
|
406
413
|
|---|---:|---:|---:|
|
|
@@ -411,12 +418,12 @@ Fable 5.1 现在领跑 `hardest-coding`、`hard-judgment`、`taste-final`。
|
|
|
411
418
|
| AA 每任务成本 | $2.65 | $1.80 | **$0.95** |
|
|
412
419
|
|
|
413
420
|
Fable 5.1 没进入 bulk 或 triage:每 token 价格是 Opus 5 的两倍,而且每轮
|
|
414
|
-
消耗最多 Claude Code 订阅配额。Opus 5
|
|
415
|
-
|
|
416
|
-
|
|
421
|
+
消耗最多 Claude Code 订阅配额。Opus 5 现在默认领跑 `hard-judgment`,并以
|
|
422
|
+
medium 保留在 `long-context`;也能通过 `~/.omnilane/routing.local.yaml`
|
|
423
|
+
随时放回任意通道——例如把 Fable 换回来:
|
|
417
424
|
|
|
418
425
|
```yaml
|
|
419
|
-
hard-judgment: claude claude-
|
|
426
|
+
hard-judgment: claude claude-fable-5-1 xhigh
|
|
420
427
|
```
|
|
421
428
|
|
|
422
429
|
</details>
|
|
@@ -490,6 +497,14 @@ vendor 一律当成 `work`,而且它只能逐次明确指定,永远不是 lane
|
|
|
490
497
|
|
|
491
498
|
## 📜 版本历程
|
|
492
499
|
|
|
500
|
+
## v0.33.0 新功能
|
|
501
|
+
|
|
502
|
+
- **四厂商线程派发。** `--thread NAME` 可让固定厂商、模型、effort 与工作
|
|
503
|
+
目录的 Claude、Codex、Grok 或 Gemini 对话跨前台或后台单次作业延续;
|
|
504
|
+
direct-API 厂商、`exec`、实时模式与固定值冲突都会以清晰的退出码 2 提示停止。
|
|
505
|
+
- **线程状态管理。** `jobs.sh threads`、`threads show NAME`、`threads rm NAME`
|
|
506
|
+
可列出、查看或删除本地线程状态。
|
|
507
|
+
|
|
493
508
|
## v0.32.0 新功能
|
|
494
509
|
|
|
495
510
|
- **基于 AA 2026-09 快照全面重评路由。** Fable 5.1 和 Gemini 3.7 Flash 进入默认表,数据集中在新的日期化文档。
|