/** * squad discover / squad delegate / squad registry — CLI commands for * cross-squad orchestration. * * Commands: * squad discover — list known squads and capabilities * squad delegate — create work in another squad * squad registry add — register a peer squad (no inheritance) * squad registry list — show registered peer squads * squad registry remove — remove a registered peer squad * * @module cli/commands/cross-squad */ export declare function discoverCommand(): Promise; export declare function delegateCommand(args: string[]): Promise; /** * `squad registry` — manage peer squads in `.squad/squad-registry.json`. * * Unlike `squad upstream add`, registry entries are discovery-only — peer * squads are findable via `squad discover` and addressable via `squad * delegate`, but their skills/decisions/wisdom are NOT inherited by your * coordinator at session start. */ export declare function registryCommand(args: string[]): Promise; //# sourceMappingURL=cross-squad.d.ts.map