/** * SkillLoadNudge — mid-run reminder after installing a skill without loading it. * * SkillHub / install_skill write SKILL.md to disk but do not inject instructions * into the current turn until `load_skill` runs. Soft: max 1 fire per run. */ export declare const SKILL_LOAD_NUDGE_MAX_ATTEMPTS = 1; export interface SkillLoadNudgeRequest { toolCallsByName: Record; attempts: number; } export type SkillLoadNudgeResult = { fire: false; } | { fire: true; correction: string; }; export declare function evaluateSkillLoadNudge(request: SkillLoadNudgeRequest): SkillLoadNudgeResult; //# sourceMappingURL=skill-load-nudge.d.ts.map