import type { ThreadingHookHandler } from "./shared"; export const toolExecutionStart: ThreadingHookHandler = async ( { state, store }, _, ctx, ) => { state.toolUsedThisTurn = true; await store.transition("working", ctx); };