/** * `forge initiative` — Initiative lifecycle commands. * * Subcommands: * forge initiative create --project --title --description <desc> [--priority <p>] * forge initiative list --project <pid> * forge initiative show --project <pid> <id> * forge initiative close --project <pid> <id> * * Sprint 2 : All subcommands support --output json for agent-friendly output. * * Offline-first: create saves locally and queues for sync. List reads from * local store first, falls back to remote. */ import { Command } from "commander"; import { ForgeOSClient } from "../../shared/client.js"; export declare function registerInitiativeCommands(parent: Command, client: ForgeOSClient): void; //# sourceMappingURL=initiative.d.ts.map