github-actions[bot]
94ad67009c
@JimMoen has signed the CLA in code-yeongyu/oh-my-opencode#2339
2026-03-06 10:06:10 +00:00
YeonGyu-Kim
23dcd99c9a
docs(agents): refresh generated AGENTS guides
...
🤖 GENERATED WITH ASSISTANCE OF [OhMyOpenCode](https://github.com/code-yeongyu/oh-my-opencode )
2026-03-06 17:59:05 +09:00
YeonGyu-Kim
7718969317
feat(model-requirements): prefer GPT-5.4 and glm-5 in agent fallback chains
...
Align Prometheus, Momus, and Atlas with newer GPT-5.4 fallback tiers and replace Sisyphus install-time GLM-4.7 fallbacks with GLM-5 only.
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-03-06 17:43:48 +09:00
YeonGyu-Kim
7fe44024c0
feat(no-sisyphus-gpt): allow Sisyphus with GPT-5.4 model
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-03-06 17:35:31 +09:00
YeonGyu-Kim
901ddda09c
refactor(sisyphus): extract prompt builders into subdirectory with GPT-5.4 variant
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-03-06 17:35:24 +09:00
YeonGyu-Kim
cfb9435e42
Merge pull request #2335 from code-yeongyu/fix/boulder-continuation-abort
...
fix(atlas): schedule delayed retry when cooldown blocks boulder continuation
2026-03-06 17:00:54 +09:00
YeonGyu-Kim
b062fc45cb
fix: address Cubic P2 review - fake timers in tests, add opencode provider to glm-5
...
Replace real setTimeout(7000) with fake timer interception in atlas
retry tests (35s -> 227ms). Add missing opencode provider to glm-5
fallback in unspecified-high category.
2026-03-06 16:55:02 +09:00
YeonGyu-Kim
4eb38d99d2
fix(atlas): add full eligibility checks to delayed retry callback
...
Address Cubic P1 review: timer callback now re-checks failure backoff
count, boulder session membership, and running background tasks before
injecting continuation, matching the main idle handler's eligibility
gate.
2026-03-06 16:31:48 +09:00
YeonGyu-Kim
cecb78e944
fix(atlas): schedule delayed retry when cooldown blocks boulder continuation
...
When atlas injects a boulder continuation via promptAsync() and the
model's response is immediately aborted (MessageAbortedError), OpenCode
fires a burst of session.idle events within milliseconds. Atlas blocks
all of them due to the 5-second cooldown. After the burst, OpenCode
stops generating session.idle events (it's state-change based, not
periodic), leaving the session stuck forever.
Fix: When cooldown blocks an idle event for a boulder session with an
incomplete plan, schedule a one-shot setTimeout (cooldown + 1s) to
re-attempt injection. The timer callback re-checks boulder state, plan
progress, and continuation-stopped flag before injecting. Only one timer
per session is allowed (deduped via pendingRetryTimer field). Timers are
cleaned up on session.deleted and session.compacted events.
2026-03-06 16:14:24 +09:00
YeonGyu-Kim
764ca0c51b
feat(hephaestus): add generic GPT prompt fallback with model-specific routing
...
Split monolithic hephaestus.ts into directory with model-specific prompt
variants (gpt-5-4.ts, gpt-5-3-codex.ts, gpt.ts) mirroring the
sisyphus-junior pattern. Generic gpt.ts uses pre-codex-tuning prompt as
fallback for non-specific GPT models.
Also adds isGpt5_4Model and isGpt5_3CodexModel helpers to types.ts.
2026-03-06 15:34:37 +09:00
YeonGyu-Kim
f4eba51388
feat(sisyphus-junior): add model-specific GPT prompt routing (gpt-5-4, gpt-5-3-codex, generic gpt)
...
Split GPT prompt into three variants with model-based routing:
- gpt-5-4.ts: GPT-5.4 optimized (expert coding agent framing, prose-first)
- gpt-5-3-codex.ts: GPT-5.3-Codex optimized (Hephaestus-style Senior Engineer)
- gpt.ts: Generic GPT fallback (Hephaestus-style, for any other GPT model)
Routing: gpt-5.4 → gpt-5-4 | gpt-5.3-codex → gpt-5-3-codex | other GPT → gpt
🤖 Generated with assistance of [OhMyOpenCode](https://github.com/code-yeongyu/oh-my-opencode )
2026-03-06 14:50:01 +09:00
YeonGyu-Kim
533aa6d5e3
chore: rebuild platform binaries
...
🤖 Generated with assistance of [OhMyOpenCode](https://github.com/code-yeongyu/oh-my-opencode )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-03-06 14:26:24 +09:00
YeonGyu-Kim
17f11a5fa6
feat(metis,momus): add QA scenario executability checks
...
🤖 Generated with assistance of [OhMyOpenCode](https://github.com/code-yeongyu/oh-my-opencode )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-03-06 14:26:14 +09:00
YeonGyu-Kim
cde6566792
refactor(atlas): add Final Verification Wave to orchestration workflow
...
🤖 Generated with assistance of [OhMyOpenCode](https://github.com/code-yeongyu/oh-my-opencode )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-03-06 14:26:04 +09:00
YeonGyu-Kim
2e4fd5843c
feat(model-requirements): update unspecified-high to gpt-5.4, add glm-5/k2p5/kimi-k2.5 fallbacks
...
🤖 Generated with assistance of [OhMyOpenCode](https://github.com/code-yeongyu/oh-my-opencode )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-03-06 14:25:47 +09:00
YeonGyu-Kim
ae05e76ddf
fix(start-work): remove worktree setup prompt when unspecified, add strong worktree active instructions
...
When no worktree is specified in boulder, stop injecting 'Worktree Setup Required'
instructions. When worktree IS present, inject emphatic instructions ensuring the
agent and all subagents operate exclusively within the worktree directory.
2026-03-06 14:20:32 +09:00
YeonGyu-Kim
4fd59cd31a
chore: rebuild platform binaries
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-03-06 13:44:46 +09:00
YeonGyu-Kim
381d7688ab
refactor(ultrawork): rename gpt5.2.ts to gpt.ts and align with 5.4 style
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-03-06 13:44:39 +09:00
YeonGyu-Kim
3d0ccdd019
feat(momus): add GPT-5.4 variant prompt with model-based routing
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-03-06 13:44:32 +09:00
YeonGyu-Kim
051737078e
feat(oracle): add GPT-5.4 variant prompt with model-based routing
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-03-06 13:44:26 +09:00
YeonGyu-Kim
983b4d8ca7
refactor(prometheus): align GPT prompt with 5.4 system prompt style
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-03-06 13:44:20 +09:00
YeonGyu-Kim
de8e5ea97f
refactor(atlas): align GPT prompt with 5.4 system prompt style
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-03-06 13:44:14 +09:00
YeonGyu-Kim
285db926da
refactor(sisyphus-junior): align GPT prompt with 5.4 system prompt style
...
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-03-06 13:44:05 +09:00
YeonGyu-Kim
ee3d88af9d
refactor(installer): remove dead Antigravity auth plugin code
...
The installer was writing Antigravity provider config and calling a no-op addAuthPlugins function. Since opencode-antigravity-auth is no longer auto-installed and OpenCode supports native Google/Gemini auth, all Antigravity-related installer code is dead. Gemini detection now checks for native google provider instead.
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode )
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-03-06 10:59:41 +09:00
YeonGyu-Kim
89dc302403
update agent-browser skill to match upstream v0.16.3
...
Sync SKILL.md and inline template with vercel-labs/agent-browser v0.16.3.
Adds: native Rust daemon, diff commands, annotated screenshots, profiler,
keyboard type/inserttext, get styles, expanded locators (placeholder/alt/
title/testid/last), security options, config file support, iOS Simulator,
cloud providers (Browserbase/Browser Use/Kernel), session persistence,
CDP auto-connect, and state management commands.
2026-03-06 10:45:35 +09:00
github-actions[bot]
5137df72d8
@mrosnerr has signed the CLA in code-yeongyu/oh-my-opencode#2328
2026-03-05 18:11:22 +00:00
github-actions[bot]
dd70ce37f0
@hkc5 has signed the CLA in code-yeongyu/oh-my-opencode#2327
2026-03-05 17:56:52 +00:00
github-actions[bot]
7e0a1a133c
@mInrOz has signed the CLA in code-yeongyu/oh-my-opencode#2321
2026-03-05 12:42:40 +00:00
YeonGyu-Kim
be606cdfbe
Merge pull request #2315 from ualtinok/fix/bgoutputdesc
...
fix(background-task): clarify timeout unit is milliseconds in description
2026-03-05 20:58:29 +09:00
github-actions[bot]
6a29a373f4
@Wangmerlyn has signed the CLA in code-yeongyu/oh-my-opencode#2318
2026-03-05 11:08:20 +00:00
ismeth
389625cb20
Update constants.ts
2026-03-05 11:41:39 +01:00
ismeth
e916d564a9
fix(background-task): clarify timeout unit is milliseconds in description
2026-03-05 09:05:29 +01:00
github-actions[bot]
3d8f390b9e
@Vacbo has signed the CLA in code-yeongyu/oh-my-opencode#2310
2026-03-05 04:20:01 +00:00
YeonGyu-Kim
a61f8bb853
Update @opencode-ai/plugin and SDK to v1.2.x and align system transform handler signature
...
- Bump @opencode-ai/plugin ^1.1.19 → ^1.2.16, @opencode-ai/sdk ^1.1.19 → ^1.2.17
- Update system-transform handler input type to match new plugin contract (optional sessionID, required model)
- Add @opencode-ai/sdk override in bun.lock
🤖 Generated with assistance of [OhMyOpenCode](https://github.com/code-yeongyu/oh-my-opencode )
2026-03-05 11:18:12 +09:00
YeonGyu-Kim
c8c99445ea
fix(look-at): add catch block to prevent TUI crash on unexpected errors
2026-03-05 11:11:53 +09:00
YeonGyu-Kim
fc41a389c5
Merge pull request #2309 from code-yeongyu/fix/task-tui-session-metadata-sync
...
fix(task): align background delegate-task output with OpenCode TUI session metadata contract
2026-03-05 11:06:11 +09:00
YeonGyu-Kim
39d94a4af6
fix(task): disambiguate background task_id metadata
2026-03-05 11:02:49 +09:00
YeonGyu-Kim
acf4c46439
fix(task): align background output task_id with opencode contract
2026-03-05 11:02:49 +09:00
YeonGyu-Kim
5cbf7828f0
fix(task): avoid pending sessionId metadata in background delegate output
2026-03-05 11:02:49 +09:00
github-actions[bot]
0efd1b65bb
@Romanok2805 has signed the CLA in code-yeongyu/oh-my-opencode#2306
2026-03-04 23:51:14 +00:00
github-actions[bot]
f8d2bd55b9
@RaviTharuma has signed the CLA in code-yeongyu/oh-my-opencode#2302
2026-03-04 21:53:50 +00:00
github-actions[bot]
1ef8d73ce5
@brandonwebb-vista has signed the CLA in code-yeongyu/oh-my-opencode#2299
2026-03-04 17:30:54 +00:00
github-actions[bot]
2b7524b1cb
@guazi04 has signed the CLA in code-yeongyu/oh-my-opencode#2293
2026-03-04 10:31:56 +00:00
YeonGyu-Kim
d6b0e564bf
feat(delegate-task): unify TUI metadata by adding model field to all 5 executor paths
2026-03-04 18:31:19 +09:00
github-actions[bot]
6897761b21
@SeeYouCowboi has signed the CLA in code-yeongyu/oh-my-opencode#2291
2026-03-04 08:50:49 +00:00
github-actions[bot]
fe66b68baa
@chan1103 has signed the CLA in code-yeongyu/oh-my-opencode#2288
2026-03-04 08:41:04 +00:00
YeonGyu-Kim
a7f794c7a3
Merge pull request #2280 from code-yeongyu/feat/multimodal-looker-gpt53-codex-first
...
feat: make gpt-5.3-codex medium the primary model for multimodal-looker
2026-03-04 11:33:27 +09:00
YeonGyu-Kim
85690b69a8
test: update snapshots and assertions for kimi-k2.5-free removal
2026-03-04 11:33:11 +09:00
YeonGyu-Kim
8c2dcb75cb
refactor: remove kimi-k2.5-free from all fallback chains and reorder multimodal-looker
...
kimi-k2.5-free is no longer available. Remove from all agent and category
fallback chains (sisyphus, multimodal-looker, prometheus, metis, atlas,
writing). Reorder multimodal-looker to: gpt-5.3-codex medium -> k2p5 ->
gemini-3-flash -> glm-4.6v -> gpt-5-nano.
2026-03-04 11:24:39 +09:00
YeonGyu-Kim
1ef5c17c35
feat: make gpt-5.3-codex medium the primary model for multimodal-looker
...
GPT-5.3 Codex has strong multimodal capabilities. Promote it to first
candidate in multimodal-looker fallback chain, with gemini-3-flash
following (matching the ULW pattern of gpt-5.3-codex -> gemini).
2026-03-04 11:20:55 +09:00