import type { DrizzleExecutor } from "../drizzle.js"; import type { PluginSource } from "./types.js"; export interface PluginReadySkillPackage { pluginId: string; shortName: string; packageDigest: string; packageDirectory: string; source: PluginSource; } /** Lists each durable plugin package with at least one ready installation and does not mutate durable state. This worker boundary exposes only immutable package coordinates needed to reconcile skills into an isolated agent home. */ export declare function pluginSkillPackageListReady(executor: DrizzleExecutor): Promise; //# sourceMappingURL=pluginSkillPackageListReady.d.ts.map