omnilane 0.42.8 → 0.42.9
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 +13 -1
- package/README.ja.md +11 -0
- package/README.ko.md +10 -0
- package/README.md +12 -0
- package/README.zh-CN.md +9 -0
- package/README.zh-TW.md +9 -0
- package/VERSION +1 -1
- package/package.json +1 -1
- package/plugin.json +1 -1
- package/scripts/lib/caller_identity.py +3 -1
- package/skills/omnilane/SKILL.md +8 -5
|
@@ -6,14 +6,14 @@
|
|
|
6
6
|
},
|
|
7
7
|
"metadata": {
|
|
8
8
|
"description": "One routing table, native-first or CLI delegation, supervised completion workflows.",
|
|
9
|
-
"version": "0.42.
|
|
9
|
+
"version": "0.42.9"
|
|
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, then delegate through a compatible caller-owned native agent or vendor CLI.",
|
|
16
|
-
"version": "0.42.
|
|
16
|
+
"version": "0.42.9",
|
|
17
17
|
"category": "development",
|
|
18
18
|
"keywords": [
|
|
19
19
|
"routing",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "omnilane",
|
|
3
|
-
"version": "0.42.
|
|
3
|
+
"version": "0.42.9",
|
|
4
4
|
"description": "One routing table, every harness: classify subtasks into lanes and delegate through compatible caller-owned native agents or vendor CLIs with exact-AA downward policy and supervised jobs.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Seraphim0916"
|
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,17 @@ semantic version tags.
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.42.9] - 2026-09-13
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- Caller identity now recognises a Codex app-server launched as `codex-modified`
|
|
14
|
+
(the codex-profile-switch desktop launcher), so Codex desktop threads running
|
|
15
|
+
through it are no longer refused with `missing-caller-context`. The sibling
|
|
16
|
+
`codex-code-mode-host` process is still not treated as a CLI. Accepted on a
|
|
17
|
+
real desktop thread on 2026-09-13: `whoami` exited 0 and reported
|
|
18
|
+
`codex/gpt-5-6-sol-medium (score 46)` read from the `codex-modified` process.
|
|
19
|
+
|
|
9
20
|
## [0.42.8] - 2026-09-12
|
|
10
21
|
|
|
11
22
|
### Fixed
|
|
@@ -1058,7 +1069,8 @@ work to the wrong model, and records the evidence behind the shipped defaults.
|
|
|
1058
1069
|
- Initial shared routing table, cross-vendor dispatcher, runners, installer,
|
|
1059
1070
|
and baseline lint fixes.
|
|
1060
1071
|
|
|
1061
|
-
[Unreleased]: https://github.com/Seraphim0916/omnilane/compare/v0.42.
|
|
1072
|
+
[Unreleased]: https://github.com/Seraphim0916/omnilane/compare/v0.42.9...HEAD
|
|
1073
|
+
[0.42.9]: https://github.com/Seraphim0916/omnilane/compare/v0.42.8...v0.42.9
|
|
1062
1074
|
[0.42.8]: https://github.com/Seraphim0916/omnilane/compare/v0.42.7...v0.42.8
|
|
1063
1075
|
[0.42.7]: https://github.com/Seraphim0916/omnilane/compare/v0.42.6...v0.42.7
|
|
1064
1076
|
[0.42.6]: https://github.com/Seraphim0916/omnilane/compare/v0.42.5...v0.42.6
|
package/README.ja.md
CHANGED
|
@@ -577,6 +577,17 @@ work の別名ではありません。サービス管理など、work の境界
|
|
|
577
577
|
|
|
578
578
|
## 📜 リリース履歴
|
|
579
579
|
|
|
580
|
+
## v0.42.9 の新機能
|
|
581
|
+
|
|
582
|
+
- **ランチャー経由の Codex デスクトップ。** ChatGPT.app が codex-profile-switch 経由で
|
|
583
|
+
app-server を起動するとプロセス名は `codex-modified` になります。0.42.8 は `codex` という名前
|
|
584
|
+
だけを探していたためこれを素通りし、そのスレッドからの dispatch はすべて
|
|
585
|
+
`missing-caller-context` で拒否されていました。この名前を認識するようになりました。
|
|
586
|
+
同じディレクトリの `codex-code-mode-host` は引き続き CLI とは見なしません。
|
|
587
|
+
- **実機での受け入れ。** 2026-09-13、ランチャー経由の Codex デスクトップのスレッドで `whoami` が
|
|
588
|
+
終了コード 0 で `codex/gpt-5-6-sol-medium (score 46)` を `codex-modified` プロセスから読み取りました。
|
|
589
|
+
更新は `npm i -g omnilane@0.42.9`。
|
|
590
|
+
|
|
580
591
|
## v0.42.8 の新機能
|
|
581
592
|
|
|
582
593
|
- **Codex の現在ターンの身元。** `app-server` は起動時のモデル・強度を常に無視します。
|
package/README.ko.md
CHANGED
|
@@ -562,6 +562,16 @@ doctor가 파일과 벤더를 지목하며, 재서명 절차는 디스패치 스
|
|
|
562
562
|
|
|
563
563
|
## 📜 릴리스 기록
|
|
564
564
|
|
|
565
|
+
## v0.42.9 새 기능
|
|
566
|
+
|
|
567
|
+
- **런처를 거치는 Codex 데스크톱.** ChatGPT.app이 codex-profile-switch를 통해 app-server를
|
|
568
|
+
시작하면 프로세스 이름이 `codex-modified`가 됩니다. 0.42.8은 `codex`라는 이름만 찾았기 때문에
|
|
569
|
+
이를 지나쳤고, 그 스레드의 모든 dispatch가 `missing-caller-context`로 거부되었습니다.
|
|
570
|
+
이제 이 이름을 인식합니다. 같은 디렉터리의 `codex-code-mode-host`는 여전히 CLI로 취급하지 않습니다.
|
|
571
|
+
- **실기기 검수.** 2026-09-13 런처를 거치는 Codex 데스크톱 스레드에서 `whoami`가 종료 코드 0으로
|
|
572
|
+
`codex/gpt-5-6-sol-medium (score 46)`을 `codex-modified` 프로세스에서 읽었습니다.
|
|
573
|
+
업데이트: `npm i -g omnilane@0.42.9`.
|
|
574
|
+
|
|
565
575
|
## v0.42.8 새 기능
|
|
566
576
|
|
|
567
577
|
- **Codex 현재 턴 신원.** `app-server`는 시작 시 모델·강도 기본값을 항상 무시합니다.
|
package/README.md
CHANGED
|
@@ -706,6 +706,18 @@ working notes, including per-benchmark caveats, live in
|
|
|
706
706
|
|
|
707
707
|
## 📜 Release history
|
|
708
708
|
|
|
709
|
+
## What's new in v0.42.9
|
|
710
|
+
|
|
711
|
+
- **Codex desktop behind a launcher.** When ChatGPT.app starts its app-server
|
|
712
|
+
through codex-profile-switch, the process is named `codex-modified`, and 0.42.8
|
|
713
|
+
walked past it looking for one named `codex`, so every dispatch from such a
|
|
714
|
+
thread was refused with `missing-caller-context`. The name is now recognised;
|
|
715
|
+
the launcher's sibling `codex-code-mode-host` is still not treated as a CLI.
|
|
716
|
+
- **Accepted on a real desktop thread.** On 2026-09-13 `whoami` exited 0 from a
|
|
717
|
+
Codex desktop thread running through the launcher, reporting
|
|
718
|
+
`codex/gpt-5-6-sol-medium (score 46)` read from the `codex-modified` process.
|
|
719
|
+
- **Upgrade.** Run `npm i -g omnilane@0.42.9`.
|
|
720
|
+
|
|
709
721
|
## What's new in v0.42.8
|
|
710
722
|
|
|
711
723
|
- **Codex current-turn identity.** `app-server` always ignores startup model and
|
package/README.zh-CN.md
CHANGED
|
@@ -556,6 +556,15 @@ codex 记在 session rollout,agy 写进 `cli.log`。这是 CLI 自己抄的订
|
|
|
556
556
|
|
|
557
557
|
## 📜 版本历程
|
|
558
558
|
|
|
559
|
+
## v0.42.9 新功能
|
|
560
|
+
|
|
561
|
+
- **经启动器带起的 Codex 桌面版。** ChatGPT.app 若通过 codex-profile-switch 启动 app-server,
|
|
562
|
+
进程名是 `codex-modified`;0.42.8 只找名为 `codex` 的进程,会直接跳过它,该会话的每一次派发
|
|
563
|
+
都被拒为 `missing-caller-context`。现在能识别这个名称;同目录的 `codex-code-mode-host` 仍不视为 CLI。
|
|
564
|
+
- **实机验收。** 2026-09-13 在经启动器带起的 Codex 桌面版会话执行 `whoami`,退出 0,
|
|
565
|
+
读出 `codex/gpt-5-6-sol-medium (score 46)`,来源是 `codex-modified` 进程。
|
|
566
|
+
升级:`npm i -g omnilane@0.42.9`。
|
|
567
|
+
|
|
559
568
|
## v0.42.8 新功能
|
|
560
569
|
|
|
561
570
|
- **Codex 当前轮次身份。** `app-server` 始终忽略启动参数中的模型和强度默认值。
|
package/README.zh-TW.md
CHANGED
|
@@ -597,6 +597,15 @@ codex 記在 session rollout,agy 寫進 `cli.log`。這是 CLI 自己抄的訂
|
|
|
597
597
|
|
|
598
598
|
## 📜 版本歷程
|
|
599
599
|
|
|
600
|
+
## v0.42.9 新功能
|
|
601
|
+
|
|
602
|
+
- **經啟動器帶起的 Codex 桌面版。** ChatGPT.app 若透過 codex-profile-switch 啟動 app-server,
|
|
603
|
+
程序名稱是 `codex-modified`;0.42.8 只找名為 `codex` 的程序,會直接跳過它,該對話串的每一次派工
|
|
604
|
+
都被拒為 `missing-caller-context`。現在認得這個名稱;同目錄的 `codex-code-mode-host` 仍不視為 CLI。
|
|
605
|
+
- **實機驗收。** 2026-09-13 在經啟動器帶起的 Codex 桌面版對話串執行 `whoami`,退出 0,
|
|
606
|
+
讀出 `codex/gpt-5-6-sol-medium (score 46)`,來源是 `codex-modified` 程序。
|
|
607
|
+
升級:`npm i -g omnilane@0.42.9`。
|
|
608
|
+
|
|
600
609
|
## v0.42.8 新功能
|
|
601
610
|
|
|
602
611
|
- **Codex 本輪身分。** `app-server` 一律忽略啟動參數的模型與強度預設值。
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.42.
|
|
1
|
+
0.42.9
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "omnilane",
|
|
3
|
-
"version": "0.42.
|
|
3
|
+
"version": "0.42.9",
|
|
4
4
|
"description": "One routing table, every harness — classify subtasks into lanes and delegate each lane through a compatible caller-owned native agent or vendor CLI.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"omnilane": "bin/omnilane"
|
package/plugin.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://antigravity.google/schemas/v1/plugin.json",
|
|
3
3
|
"name": "omnilane",
|
|
4
|
-
"version": "0.42.
|
|
4
|
+
"version": "0.42.9",
|
|
5
5
|
"description": "One routing table, every harness: classify subtasks into lanes and delegate through compatible caller-owned native agents or vendor CLIs with exact-AA downward policy and supervised jobs."
|
|
6
6
|
}
|
|
@@ -58,7 +58,9 @@ def _vendor(executable: str) -> str | None:
|
|
|
58
58
|
name = path.name
|
|
59
59
|
if name == "claude" or (path.parent.name == "versions" and path.parent.parent.name == "claude"):
|
|
60
60
|
return "claude"
|
|
61
|
-
|
|
61
|
+
# codex-profile-switch launches the desktop app-server as `codex-modified`; its sibling
|
|
62
|
+
# `codex-code-mode-host` is a tool host, not the CLI, so the match stays exact.
|
|
63
|
+
if name in ("codex", "codex-modified"):
|
|
62
64
|
return "codex"
|
|
63
65
|
if name == "grok" or (name.startswith("grok-") and path.parent.name == "downloads"):
|
|
64
66
|
return "grok"
|
package/skills/omnilane/SKILL.md
CHANGED
|
@@ -368,11 +368,14 @@ require Python 3.11+. A profile is not an explicit model selector.
|
|
|
368
368
|
Codex app-server always ignores startup selectors, even explicit model flags;
|
|
369
369
|
other Codex launches without a model use the same current-turn rollout reader.
|
|
370
370
|
It requires matching UUID-shaped `CODEX_THREAD_ID` values in this process and the
|
|
371
|
-
codex direct child's initial environment (not text embedded in argv).
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
`
|
|
371
|
+
codex direct child's initial environment (not text embedded in argv). The rollout
|
|
372
|
+
is looked up under `$CODEX_HOME/sessions` (default `~/.codex`) as
|
|
373
|
+
`rollout-*-<thread>.jsonl` and, once a thread has been resumed,
|
|
374
|
+
`rollout-*-<thread>_<session>.jsonl`; the most recently written match is read and
|
|
375
|
+
must have matching `session_meta.id`. The last `turn_context` must provide
|
|
376
|
+
non-empty model, effort and turn id, with no later `task_complete`,
|
|
377
|
+
`turn_complete` or `turn_aborted` carrying that same turn id. A refusal names
|
|
378
|
+
both turn ids and how long ago that rollout was last written.
|
|
376
379
|
Missing, ambiguous, malformed or stale evidence refuses: no config defaults,
|
|
377
380
|
model-list, archive or other-thread fallback. JSONL is streamed; only identity
|
|
378
381
|
metadata and event types reach diagnostics, never message content.
|