()
| 237 | progressMessage: 'analyzing your codebase', |
| 238 | source: 'builtin', |
| 239 | async getPromptForCommand() { |
| 240 | maybeMarkProjectOnboardingComplete() |
| 241 | |
| 242 | return [ |
| 243 | { |
| 244 | type: 'text', |
| 245 | text: |
| 246 | feature('NEW_INIT') && |
| 247 | (process.env.USER_TYPE === 'ant' || |
| 248 | isEnvTruthy(process.env.CLAUDE_CODE_NEW_INIT)) |
| 249 | ? NEW_INIT_PROMPT |
| 250 | : OLD_INIT_PROMPT, |
| 251 | }, |
| 252 | ] |
| 253 | }, |
| 254 | } satisfies Command |
| 255 | |
| 256 | export default command |
nothing calls this directly
no test coverage detected