Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions apps/server/src/provider/Layers/ClaudeAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2741,6 +2741,11 @@ export const makeClaudeAdapter = Effect.fn("makeClaudeAdapter")(function* (
return;
case "thinking_tokens":
return;
// Task-state sync patch for the client's local task map. Terminal
// statuses arrive separately via task_notification, so there is
// nothing to surface; the raw payload stays in the provider log.
case "task_updated":
return;
case "permission_denied":
yield* offerRuntimeEvent({
...base,
Expand Down
Loading