import type { BeforeAgentStartEvent } from "@earendil-works/pi-coding-agent"; import type { SkillSnapshot, TaskRunDraft } from "./types.js"; export declare function loadSkillSnapshots(event: BeforeAgentStartEvent, explicitSkillNames: ReadonlySet): Promise; export declare function evaluateSkillCheckpoints(skills: SkillSnapshot[], draft: TaskRunDraft): SkillSnapshot[];