/** * BeadsGuardPlugin * * Enforces beads usage when a .beads directory exists in the project. * - Injects context on session creation reminding to use beads * - Intercepts todowrite tool calls and suggests using beads instead * - Shows toast notifications for guidance */ import type { Plugin } from "@opencode-ai/plugin"; /** * Check if beads is initialized in the directory */ declare const hasBeadsDirectory: (directory: unknown) => boolean; /** * Check if beads has any issues (not just initialized) */ declare const hasBeadsIssues: (directory: unknown) => boolean; /** * BeadsGuardPlugin - Enforces beads usage in projects with .beads directory */ export declare const BeadsGuardPlugin: Plugin; export { hasBeadsDirectory, hasBeadsIssues }; //# sourceMappingURL=index.d.ts.map