OpenCode v1.3.9#8812
Conversation
catrielmuller
commented
Apr 12, 2026
- Fixed plugin entrypoint resolution for paths without leading dot
… a string (#19996)
Co-authored-by: Jaaneek <jankiewiczmilosz@gmail.com>
| import { Icon } from "@opencode-ai/ui/icon" | ||
| import { showToast } from "@opencode-ai/ui/toast" | ||
| import type { QuestionAnswer, QuestionRequest } from "@kilocode/sdk/v2" | ||
| import type { QuestionAnswer, QuestionRequest } from "@opencode-ai/sdk/v2" |
| @@ -1,4 +1,4 @@ | |||
| import type { Project, UserMessage } from "@kilocode/sdk/v2" | |||
| import type { Project, UserMessage } from "@opencode-ai/sdk/v2" | |||
There was a problem hiding this comment.
missing kilo import too
| setStore("editing", false) | ||
| const picked = (answer: string) => store.answers[store.tab]?.includes(answer) ?? false | ||
|
|
||
| const pick = (answer: string, custom: boolean = false) => { |
There was a problem hiding this comment.
WARNING: Single-select answers no longer submit immediately
Before this refactor, choosing a single option called reply([[answer]]), which completed the question flow as soon as the user clicked. pick() now only updates local state, so single-choice prompts require an extra Next/Submit click and any downstream behavior that depended on the immediate reply no longer runs.
| }) | ||
| yield* Effect.promise(() => KiloSession.removeSession(sessionID)) | ||
| KiloSession.clearPlatformOverride(sessionID) | ||
| SessionPrompt.cancel(sessionID) |
There was a problem hiding this comment.
WARNING: Session removal no longer waits for prompt cancellation
SessionPrompt.cancel() is now async, but this path drops the returned promise and immediately continues with session teardown. If a processor is still running, it can still emit updates after the session is removed, which reintroduces the delete-time race this PR is otherwise trying to fix.
Code Review SummaryStatus: 2 Issues Found | Recommendation: Address before merge Overview
Fix these issues in Kilo Cloud Issue Details (click to expand)WARNING
Other Observations (not in diff)No additional issues found outside the diff. Files Reviewed (18 files)
Reviewed by gpt-5.4-20260305 · 2,336,095 tokens |
…ncode-v1.3.9 OpenCode v1.3.9