import { z } from "zod"; import type { AgentTool } from "@kenkaiiii/gg-agent"; declare const AuditRetentionStructureParams: z.ZodObject<{ transcript: z.ZodString; durationSec: z.ZodOptional; checkpoints: z.ZodOptional>; model: z.ZodOptional; }, z.core.$strip>; /** * audit_retention_structure — long-form retention checkpoint auditor. * * Per MrBeast's documented manual, every ~3 minutes a re-engagement is * required to keep retention from collapsing. This tool builds a 60s * window around each requested checkpoint, asks the LLM to score * whether re-engagement is happening, and reports the weakest one so * the agent knows where to insert b-roll, punch-ins, or a recut. */ export declare function createAuditRetentionStructureTool(cwd: string): AgentTool; export {}; //# sourceMappingURL=audit-retention-structure.d.ts.map