/** * superpowers 命令 - 记录外部 workflow 的回写结果 */ import { Command } from 'commander'; import type { WorkspaceSuperpowersRun } from '../../types/index.js'; export interface RecordSuperpowersRunOptions { summary: string; task?: string; session?: string; artifact: string[]; owner?: string; wave?: string; thread?: string; branch?: string; worktree?: string; compactFrom?: string; json?: boolean; } export declare function createSuperpowersCommand(basePath?: string): Command; export declare function recordSuperpowersRunCommand(workflow: string, options: RecordSuperpowersRunOptions, basePath?: string): Promise; //# sourceMappingURL=superpowers.d.ts.map