Tracks bugs that are present in the current release but have been intentionally deferred. Each entry should explain the symptom, the history, any workaround, and the planned resolution.
- Affects: Agent-managed git worktree handoff and cleanup flows.
- Symptom: A worktree can be reported as already merged when
HEADmatches the target branch, even though modified, untracked, or ignored task-state files still exist only in the worktree. Treating commit ancestry as the whole truth can make users believe work has been integrated before it has been committed, merged, or cleaned up. - Workaround: Before deleting a worktree or accepting an "already merged" answer, run
git status --short --untracked-files=allfrom the worktree root. If task state may be ignored, also rungit status --short --ignored --untracked-files=all -- .omothere. Inspect both results, and delete the worktree only after the filesystem is clean or after the remaining changes have been intentionally copied, committed, or discarded. - Status: Open. Tracked at code-yeongyu#5911.
- Affects: Complex
ulwruns where planning is delegated through a subagent namedplanwhile OpenCode's experimental plan mode is enabled. - Symptom: The delegated planner can use OpenCode's native plan workflow, write under
.opencode/plans/(or OpenCode's data-directoryopencode/plans/fallback), and show the nativeplan_exitapproval prompt instead of returning an OMO plan under.omo/plans/to the parent. The nested approval can offer to switch that child to build mode, while leaving it unresolved keeps the synchronous parent task waiting. - Workaround: If a native
plan_exitprompt appears inside a delegatedulwplanner, do not switch that nested child to build mode. Interrupt back to the parent, then ask the parent to recover the plan output or rerun planning through Prometheus/OMO planning explicitly. - Status: Open. Tracked at code-yeongyu#5850.
- Affects: Ultrawork/Ralph-loop verification flows that rely on Oracle returning the exact
<promise>VERIFIED</promise>token. - Symptom: Oracle can approve the work in normal prose, but the detector treats the verification as failed because the success token was never requested or emitted. The loop may then spend extra iterations re-fixing already-correct work.
- Workaround: When manually asking Oracle to verify completion, explicitly instruct it to end with
<promise>VERIFIED</promise>only if the work is genuinely complete and correct. If a verification failure follows a clear prose approval, inspect the Oracle transcript before assuming the implementation regressed. - Status: Open. Tracked at code-yeongyu#5839.
- Affects:
tmux.enabledsessions that expect every subagent pane to show a live attached session immediately. - Symptom: New panes can show only the placeholder text
Focus this pane to attachuntil the user focuses each pane. With high background concurrency, the tmux layout can look blank or inactive even though subagents are running. - Workaround: Focus a pane to activate its
opencode attachsession, or inspect subagent status through normal task/background outputs when live pane rendering is not necessary. Treat the placeholder as current behavior unless an eager-attach option is added. - Status: Open enhancement. Tracked at code-yeongyu#5746.
- Affects: Users running OMO inside cmux's tmux-compat native split layer.
- Symptom: Subagent panes can be created with the "Focus this pane to attach" placeholder but never transition into
opencode attach, because the activation path relies ontmux respawn-pane -k, which cmux may treat as a no-op. - Workaround: Use a real tmux server for subagent pane visualization when interactive attach matters, or avoid relying on focus-to-attach behavior inside cmux until an eager attach path is available. The underlying subagent work can still be inspected through non-pane outputs/logs.
- Status: Open. Tracked at code-yeongyu#5809.
- Affects: Multi-turn Sisyphus sessions that rely on
ulworultraworkkeyword injection. - Symptom: The keyword detector is edge-triggered per message. A first prompt that includes
ulwgets the ultrawork prompt, but a follow-up that omits the keyword can fall back to default Sisyphus behavior and lose the expected delegation pattern. - Workaround: Repeat
ulworultraworkin every follow-up message that should stay in ultrawork mode. For long tasks, prefer starting a fresh prompt that includes the keyword instead of assuming the mode remains active. - Status: Open. Tracked at code-yeongyu#5806.
- Affects: Codex Light / LazyCodex sessions where the frontend skill is used for UI work.
- Symptom: The frontend skill prompt requires a visual QA evidence pass, but Codex currently enforces that requirement through prose instructions rather than a hard completion gate. Under long context or inconvenient browser setup, the model can report completion without screenshots or a dual-oracle visual verdict.
- Workaround: Add an explicit instruction such as "verify with visual-qa before claiming done" to frontend prompts, and require screenshot/evidence output before accepting UI work as complete. If no rendered surface is available, ask the agent to state that limitation directly.
- Status: Open. Tracked at code-yeongyu#5838.
- Affects: Third-party OpenAI-compatible providers that expose
gpt-5.5through/v1/chat/completionsbut reject tool requests whenreasoning_effortis present. Native OpenAI supports tools and reasoning effort for GPT-5.5. - Symptom: Tool requests can fail because OMO agent configs and OpenCode's GPT model transforms may supply reasoning effort based on the model ID, even when the compatible provider's chat-completions implementation does not support that combination.
- Workaround: Use a provider-native route or adapter that supports GPT-5.5 reasoning with tools, or use a model/provider configuration that does not emit the unsupported reasoning setting for tool-heavy agents.
- Status: Open. Tracked at code-yeongyu#5529.
- Affects: OpenCode delegation when provider connectivity is known and none of the connected providers can serve a required-model subagent's fallback chain.
- Symptom: Model resolution can return success without pinning a provider/model. The harness may then create a child session that fails before producing assistant or tool output, which can look like a hidden, stuck, or skipped subagent.
- Workaround: Connect a provider supported by the target agent, or reroute through a category or subagent whose fallback chain has an available provider. If a child produces no assistant/tool output, treat the dispatch as failed and retry through a supported route.
- Status: Open. Tracked at code-yeongyu#5604.
- Affects: OpenAI-compatible custom providers whose models are written to
opencode.jsonwithout alimitblock. - Symptom: OpenCode sees the model context as
0, so auto-compaction never triggers and long sessions can overflow the model window. - Workaround: Add a
limitblock to each custom provider model inopencode.json, for example:
{
"glm-5.1": {
"name": "GLM-5.1",
"limit": { "context": 200000, "output": 16384 }
}
}- Status: Open. Tracked at code-yeongyu#4184.
BLOCKER-4 is resolved in v4.2.1. Delegated child sessions now retain the first prompt payload before dispatch and consume that bootstrap payload exactly once when runtime fallback must retry an empty-history child session.
A delegated child session that fails on its very first promptAsync call (for example, the provider rejects the request before any session history is persisted) may not advance to the configured fallback models. The session ends in early failure instead of retrying with the next fallback in the chain.
This affects subagents launched via the delegate-task tool (background or sync) where the first provider call fails immediately and session.messages is still empty.
PR #3825 (tw-yshuang/fix/delegated-child-session-early-failure-fallback, merged as cd33f3a39 and then fac90d69f on 2026-05-07) introduced a shared bootstrap context (packages/omo-opencode/src/shared/delegated-child-session-bootstrap.ts) to capture the retry payload before the first prompt dispatch, so empty-history failures could still retry with the fallback chain.
After the merge landed on dev, the PR's own regression test (delegated child-session empty-history fallback retries with captured bootstrap prompt in packages/omo-opencode/src/hooks/runtime-fallback/index.test.ts) failed on a clean root bun test --timeout 30000 run (6828 pass / 1 fail). PR #4044 (code-yeongyu/revert/3825-delegated-bootstrap, revert commit 3c7d1299a, merge-revert commit e2b8e49e2, merged on 2026-05-15) reverted the merge to keep dev green (6823 pass / 0 fail / 6 skip across 709 files).
The original failure-mode the PR targets remains in v4.2.0.
- For delegated subagents, prefer providers that succeed reliably on the first call (rarely fail with auth/quota errors at request time).
- Configure fallback models conservatively in
categories[].fallback_modelsand accept that the very first failure may not auto-retry. - The existing runtime-fallback persisted-history retry path still works after the subagent produces any history.
Issue #4059 tracks the reland with stabilized regression coverage. The reland is deferred to a follow-up release and should account for current schema-shape changes plus prompt-async-gate semantics.
- Affects: v4.2.3+ after the LSP to MCP migration.
- Symptom: Custom LSP server configuration in your project's
oh-my-openagent.jsoncis not applied at runtime. - Workaround: Configure your LSP server through OpenCode's native
lspconfig instead. - Status: Open. Tracked at code-yeongyu#4225.
- Affects: Team-mode workflows where the lead and all members become idle with no unread messages or pending tasks.
- Symptom: The team looks finished, but the lead does not start the next turn until the user sends a manual nudge such as
are you done?. After that nudge, the lead can callteam_statusand continue. - Workaround: Before assuming the team is stuck, send one short manual nudge and ask the lead to run
team_statusplusteam_task_list. For long multi-round runs, prefer explicitteam_task_*state over ad-hoc message counting so the lead has a deterministic completion signal. - Status: Open. Tracked at code-yeongyu#4990.
-
Affects: OpenCode 1.16.x with oh-my-openagent 4.7.x.
-
Symptom: After installing oh-my-openagent, the OpenCode agent list only shows the built-in build/plan agents.
bunx oh-my-openagent doctorcan still reportSystem OK, so this looks like a successful install even though the OMO agents are not visible. -
Workaround: Stop OpenCode, clear the OpenCode and OMO cache directories, then reinstall:
rm -rf ~/.cache/opencode/ ~/.cache/oh-my-openagent/ ~/.cache/oh-my-opencode/ bunx oh-my-openagent install
-
Status: Open. Tracked at code-yeongyu#4863.
-
Affects: OpenCode installs that load
oh-my-openagent@latestor legacyoh-my-opencode@latestthrough OpenCode'sNpm.add()package sandbox under~/.cache/opencode/packages/. -
Symptom: OMO reports that an update is available, or
doctorreports a loaded-version mismatch, but restarting OpenCode keeps loading the older package. Clearing the general npm cache does not necessarily change the sandbox path OpenCode is using. -
Why it happens: When the plugin is running from an OpenCode-managed sandbox such as
~/.cache/opencode/packages/oh-my-openagent@latest/node_modules/oh-my-openagent/, OMO cannot reliably rewrite that sandbox itself. The auto-update checker therefore avoids claiming "Updated!" from that path and should surface an update-available notice instead. -
Workaround: Close OpenCode and keep exactly one OMO entry in the config that currently owns the plugin. If that entry still uses
oh-my-opencode@latest, replace it withoh-my-openagent@latestinstead of adding a second entry. Remove the stale OpenCode package sandbox, then reinstall with--forcein the same config scope:rm -rf ~/.cache/opencode/packages/oh-my-openagent@latest \ ~/.cache/opencode/packages/oh-my-opencode@latest # User/global config: opencode plugin --global --force oh-my-openagent@latest # Project config (run from that project root instead): opencode plugin --force oh-my-openagent@latest bunx oh-my-openagent doctor --json
-
Status: Open. The runtime now avoids the misleading auto-updated toast when it detects an OpenCode-managed sandbox, but users may still need the manual cache refresh above until OpenCode exposes a reliable package-sandbox update path. Tracked at code-yeongyu#5367.
- Affects: Current OpenCode/Ultimate planning flow.
- Symptom: Typing
@planfrom Sisyphus can leave the request in Sisyphus instead of handing it to Prometheus. - Workaround: Switch to Prometheus first with the Tab agent selector or
/agent, ask for the plan there, then run/start-workafter approval. - Status: Open. Tracked at code-yeongyu#4710.
- Affects: OpenCode 1.16.2 startup with external plugins and cold package caches.
- Symptom:
opencode --purestarts, but normalopencodeclears the terminal and stalls afterservice=plugin path=oh-my-openagent@latest loading plugin. - Workaround: If the hang happens before
/tmp/oh-my-opencode.loggets a plugin entry, avoid the npm resolver path by using an absolutefile://plugin path or by pre-populating the OpenCode package cache. If logs point to a malformed or lockedopencode.db, back up and remove~/.local/share/opencode/opencode.db*; OpenCode recreates it on next start, but local session history is lost. - Status: Open. The npm resolver timeout belongs upstream in OpenCode; tracked at code-yeongyu#5050.
- Affects: Background tasks that call LSP tools when the language server is not installed.
- Symptom: The task reports that it is stuck on
lsp_install_decisionand waits for an install prompt instead of continuing without LSP. - Workaround: Record a
declinedinstall decision for the missing server withlsp_install_decision; future LSP calls collapse to a one-line warning. To share that decision across sessions, setLSP_TOOLS_MCP_INSTALL_DECISIONSto a stable decisions-file path. - Status: Open. Tracked at code-yeongyu#5260.
- Affects: OpenCode 1.17.0 with oh-my-openagent 4.8.1.
- Symptom: A trivial prompt such as
output hello worldcan repeat the plan-style status block instead of answering directly. - Workaround: For one-off trivial prompts, run
opencode --pureor temporarily disable the plugin for that session. - Status: Open. Tracked at code-yeongyu#5120.
- Affects: Sessions with an active Ralph Loop and background child subagents.
- Symptom:
/tmp/oh-my-opencode.logrepeatspromptAsync reservation release skipped for different sourcewhile child subagents emit message events. - Workaround: Ralph Loop was replaced by the Goal subsystem (PR #6184), and the
ralph-loophook is no longer wired at HEAD, so the original flooding only affects releases before that migration. On those older releases, the historical controls were"disabled_hooks": ["ralph-loop"]inoh-my-openagent.jsoncand/cancel-ralph. On current releases, Goal is opt-in (goal.enableddefaults tofalse); if you see the same log pattern while a Goal continuation is active, disable the hook with"disabled_hooks": ["goal"]and run/goal clear(or/stop-continuation) to stop the active continuation before disabling it. - Status: Open. Tracked at code-yeongyu#5105.
-
Affects: OpenCode Desktop on Windows with
oh-my-openagent@4.7.5. -
Symptom: The Desktop plugin list shows
oh-my-openagentas loaded, but the UI only exposes the nativebuildandplanmodes. The OpenCode log may includeRuntime skill source server requires Bun.serve failed to load plugin. -
Workaround: Disable the runtime security skills that start the Bun-backed skill source server, then restart OpenCode Desktop:
{ "disabled_skills": [ "security-research", "security-review" ] } -
Status: Open. Tracked at code-yeongyu#5025.
- Affects: LazyCodex / OMO Codex planner and reviewer flows that use native Codex subagents.
- Symptom: A parent session can receive repeated
wait_agenttimeouts while a planner or reviewer subagent remainsrunning. Follow-up prompts may not recover the run, and the session can look stuck until the child agent is closed or respawned. - Workaround: Use short wait cycles, send one targeted follow-up that asks the child to return a result or
BLOCKED, then record the child as inconclusive before closing or respawning it. Do not treat repeated wait timeouts as proof that the child finished. - Status: Open. Tracked at code-yeongyu#5021.
- Affects: Windows OpenCode installs behind an HTTP(S) proxy, especially first startup paths that ask OpenCode to fetch
oh-my-openagent@latest. - Symptom: OpenCode may show only default agents or log
fetch() proxy.url must be a non-empty stringbefore OMO loads, so OMO hooks and doctor cannot repair the install from inside the plugin. - Workaround: Launch OpenCode from a shell that has
HTTP_PROXYandHTTPS_PROXYset, then preinstall the package into OpenCode's Windows config prefix withnpm install oh-my-openagent@latest --prefix "%APPDATA%\\opencode". Restart OpenCode and verify withbunx oh-my-openagent doctor --json. - Status: Open. Tracked at code-yeongyu#3303.
- Affects: Windows OpenCode startup when
tui.jsonincludesoh-my-openagent/tui. - Symptom: OpenCode's built-in Bun npm client can spend about 62 seconds trying to install the TUI plugin before failing with
NpmInstallFailedErrorand an unknown git error. Core OMO agents, skills, commands, and MCP tools still work without the TUI plugin. - Workaround: Remove
oh-my-openagent/tuifrom thepluginlist intui.jsonuntil the Bun npm install path is fixed. - Status: Open. Tracked at code-yeongyu#4702.
- Affects: OpenCode TUI sessions with custom OMO agent display names that include Chinese, Japanese, or Korean characters.
- Symptom: The ASCII part of the agent name renders normally, but the CJK characters in the TUI header can appear garbled.
- Workaround: Use ASCII-only custom display names such as
Sisyphus - Orchestratoruntil the TUI rendering path handles multi-byte character widths reliably. - Status: Open. Tracked at code-yeongyu#4170.
- Affects: OpenCode Desktop sessions where
opencode agent listor the TUI still shows OMO agents, but the Desktop agent selector only shows native agents such as Build and Plan. - Symptom: Desktop hides Sisyphus, Hephaestus, Prometheus, Atlas, or other OMO agents even though
oh-my-openagent doctorpasses. - First check: Inspect the OpenCode Desktop log for
Failed to load plugin oh-my-openagent@latestand missing files under~/.cache/opencode/packages/oh-my-openagent@latest/node_modules. - Cache workaround: Close Desktop, remove the
oh-my-openagent@latestpackage cache, then reinstall the plugin from the same working directory withopencode plugin oh-my-openagent@latest. - Scope workaround: If the plugin loads in one shell but not Desktop, compare the active user and project
opencode.jsonfiles. OpenCode can read a closer project.opencode/opencode.jsoninstead of the user config you inspected. - Status: Open. Tracked at code-yeongyu#3835 and code-yeongyu#3456. This entry documents current triage steps; it does not resolve Desktop GUI rendering regressions.
- Affects: Anthropic subscription-token routes and third-party auth plugins. API-key routes may behave differently.
- Symptom: Anthropic returns
Third-party apps now draw from extra usage, not plan limits...for one project while similar projects still work. - Likely trigger: Upstream Anthropic filtering appears sensitive to the literal string
opencodein custom project rules, system prompt text, or OMO's legacy prompt identifiers. - Workaround: In user-controlled project files such as
AGENTS.md, preferoh-my-openagent,OMO, orOpenCodewording instead of the lowercase literalopencodewhen targeting Anthropic subscription providers. - Status: Open. Tracked at code-yeongyu#3435. The runtime prompt-identity cleanup still needs maintainer direction, so this workaround does not close the underlying issue.