#!/usr/bin/env bun /** * scope-guard hook — enforces task scope boundaries. * * Single-channel plugin hook (see safety-guard.ts for the pattern). */ import type { HookContext, HookResult } from "@rig/contracts"; export { SCOPE_GUARD_HOOK_ID } from "../hook-ids"; export declare function scopeGuardHandler(ctx: HookContext): Promise;