/** * Skill: bunker — MoltBunker decentralized deployment management. * * Multi-action skill (like conway.ts pattern) for managing the agent's * bunker deployment lifecycle. Actions cover the full spectrum: * * Read-only (all tiers): * status — Deployment status, container health, runtime info * balance — BUNKER token balance (deposited, reserved, available) * threat — Current threat assessment * logs — Container log output * catalog — Browse available tiers and pricing * * Mutating (normal + low_compute): * clone — Clone to a specified region * snapshot — Create state snapshot * extend — Extend runtime duration * * Destructive (normal only): * deploy_self — Full self-deployment to MoltBunker * restore — Restore from snapshot * migrate — Migrate to different region * stop — Stop bunker deployment * * The skill validates action permissions internally based on survival tier. */ import type { SkillDefinition } from '../types.js'; export declare const bunkerSkill: SkillDefinition; //# sourceMappingURL=bunker.d.ts.map