{"version":3,"sources":["/home/mkabumattar/work/withrawi/rawi/dist/chunk-BUY27DR2.cjs","../src/cli/commands/exec/options/index.ts"],"names":["execCommandOptions"],"mappings":"AAAA;ACMO,IAAMA,CAAAA,CAAsC,CACjD,CACE,KAAA,CAAO,yBAAA,CACP,WAAA,CAAa,0DAAA,CACb,YAAA,CAAc,SAChB,CAAA,CACA,CACE,KAAA,CAAO,eAAA,CACP,WAAA,CAAa,4CAAA,CACb,YAAA,CAAc,CAAA,CAChB,CAAA,CACA,CACE,KAAA,CAAO,eAAA,CACP,WAAA,CAAa,iDAAA,CACb,YAAA,CAAc,CAAA,CAChB,CAAA,CACA,CACE,KAAA,CAAO,eAAA,CACP,WAAA,CACE,sEAAA,CACF,YAAA,CAAc,CAAA,CAChB,CAAA,CACA,CACE,KAAA,CAAO,mBAAA,CACP,WAAA,CAAa,sDAAA,CACb,YAAA,CAAc,CAAA,CAChB,CAAA,CACA,CACE,KAAA,CAAO,yBAAA,CACP,WAAA,CAAa,+CAAA,CACb,YAAA,CAAc,OAChB,CAAA,CACA,CACE,KAAA,CAAO,qBAAA,CACP,WAAA,CAAa,kDACf,CAAA,CACA,CACE,KAAA,CAAO,qCAAA,CACP,WAAA,CAAa,iDACf,CAAA,CACA,CACE,KAAA,CAAO,gBAAA,CACP,WAAA,CACE,iEAAA,CACF,YAAA,CAAc,CAAA,CAChB,CACF,CAAA,CAAA,cAAA;ADlDA","file":"/home/mkabumattar/work/withrawi/rawi/dist/chunk-BUY27DR2.cjs","sourcesContent":[null,"export interface CommandOption {\n  flags: string;\n  description: string;\n  defaultValue?: string | boolean | number;\n}\n\nexport const execCommandOptions: CommandOption[] = [\n  {\n    flags: '-p, --profile <profile>',\n    description: 'Specify the profile to use for AI provider configuration',\n    defaultValue: 'default',\n  },\n  {\n    flags: '-v, --verbose',\n    description: 'Enable verbose output and detailed logging',\n    defaultValue: false,\n  },\n  {\n    flags: '-d, --dry-run',\n    description: 'Show the generated command without executing it',\n    defaultValue: false,\n  },\n  {\n    flags: '-c, --confirm',\n    description:\n      'Ask for confirmation before executing potentially dangerous commands',\n    defaultValue: false,\n  },\n  {\n    flags: '-i, --interactive',\n    description: 'Force interactive mode for commands that require TTY',\n    defaultValue: true,\n  },\n  {\n    flags: '-t, --timeout <timeout>',\n    description: 'Set command execution timeout in milliseconds',\n    defaultValue: '30000',\n  },\n  {\n    flags: '-s, --shell <shell>',\n    description: 'Specify which shell to use for command execution',\n  },\n  {\n    flags: '-w, --working-directory <directory>',\n    description: 'Set the working directory for command execution',\n  },\n  {\n    flags: '--copy-command',\n    description:\n      'Copy the generated command itself to clipboard before execution',\n    defaultValue: false,\n  },\n];\n"]}