@@ -63,8 +63,12 @@ program
6363 . option ( '--docker' , 'Run in Docker sandbox (coming soon)' )
6464 . option ( '--prd <file>' , 'Read tasks from a PRD markdown file' )
6565 . option ( '--max-iterations <n>' , 'Maximum loop iterations (auto-calculated if not specified)' )
66- . option ( '--agent <name>' , 'Specify agent (claude-code, cursor, codex, opencode, openclaw)' )
66+ . option ( '--agent <name>' , 'Specify agent (claude-code, cursor, codex, opencode, openclaw, amp )' )
6767 . option ( '--model <name>' , 'Model to use (e.g., claude-sonnet-4-5-20250929, claude-opus-4-6)' )
68+ . option (
69+ '--amp-mode <mode>' ,
70+ 'Amp agent mode: smart (frontier), rush (fast), deep (extended reasoning)'
71+ )
6872 . option ( '--from <source>' , 'Fetch spec from source (file, url, github, todoist, linear, notion)' )
6973 . option ( '--project <name>' , 'Project/repo name for --from integrations' )
7074 . option ( '--label <name>' , 'Label filter for --from integrations' )
@@ -315,6 +319,10 @@ program
315319 . option ( '--dry-run' , 'Preview mode - show tasks without executing' )
316320 . option ( '--skip-pr' , 'Skip PR creation (commit only)' )
317321 . option ( '--agent <name>' , 'Specify agent to use' )
322+ . option (
323+ '--amp-mode <mode>' ,
324+ 'Amp agent mode: smart (frontier), rush (fast), deep (extended reasoning)'
325+ )
318326 . option ( '--validate' , 'Run validation after each task' , true )
319327 . option ( '--no-validate' , 'Skip validation' )
320328 . option ( '--max-iterations <n>' , 'Max iterations per task (default: 15)' )
@@ -407,7 +415,11 @@ program
407415 . option ( '--pr' , 'Create a pull request when done' )
408416 . option ( '--validate' , 'Run tests/lint/build after each iteration' )
409417 . option ( '--max-iterations <n>' , 'Maximum loop iterations' )
410- . option ( '--agent <name>' , 'Specify agent (claude-code, cursor, codex, opencode, openclaw)' )
418+ . option ( '--agent <name>' , 'Specify agent (claude-code, cursor, codex, opencode, openclaw, amp)' )
419+ . option (
420+ '--amp-mode <mode>' ,
421+ 'Amp agent mode: smart (frontier), rush (fast), deep (extended reasoning)'
422+ )
411423 . action ( async ( action : string | undefined , args : string [ ] , options ) => {
412424 await templateCommand ( action , args , options ) ;
413425 } ) ;
0 commit comments