chore(deps): update root dependencies

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
YeonGyu-Kim
2026-05-18 20:55:17 +09:00
parent 6fe2f72c76
commit f925d13049
3 changed files with 109 additions and 60 deletions
@@ -2,6 +2,7 @@
import { mock } from "bun:test"
import { randomUUID } from "node:crypto"
import { Effect } from "effect"
import type { ToolContext } from "@opencode-ai/plugin/tool"
@@ -31,7 +32,7 @@ export function createToolContext(sessionID: string): ToolContext {
worktree: "/project",
abort: new AbortController().signal,
metadata: () => {},
ask: async () => undefined,
ask: () => Effect.void,
}
}