import type { SkillAgent } from './harness/harness-spec.js'; /** * Writes the bundled skill where each agent reads it; true iff bytes changed. * * Synchronous on purpose: connect flows are sync, a new await breaks them. */ export declare function writeWebSkill(agents: SkillAgent[], opts?: { sourceDir?: string; }): boolean; /** Best effort: a lock cleanup failure must never fail an install. */ export declare function clearSkillLockEntry(opts?: { verbose?: boolean; }): void;