(workflowName: string)
| 39 | } |
| 40 | |
| 41 | function buildXcodeIdeNoCommandsMessage(workflowName: string): string { |
| 42 | return ( |
| 43 | `No CLI commands are currently exposed for '${workflowName}'.\n\n` + |
| 44 | `If you're expecting Xcode IDE tools here:\n` + |
| 45 | `1. Make sure Xcode MCP Tools is enabled in:\n` + |
| 46 | ` Settings > Intelligence > Xcode Tools\n\n` + |
| 47 | `If Xcode showed an authorization prompt, make sure you clicked Allow.\n\n` + |
| 48 | `Then run this command again.` |
| 49 | ); |
| 50 | } |
| 51 | |
| 52 | function readProfileOverrideFromProcessArgv(): string | undefined { |
| 53 | const parsedArgv = yargsParser(process.argv.slice(2), { |
no outgoing calls
no test coverage detected