| 311 | fputc('\n', fp); |
| 312 | } |
| 313 | |
| 314 | static void print_agent_specific(FILE *fp, const help_colors *c) { |
| 315 | title(fp, c, "Agent Options"); |
| 316 | opt(fp, c, "-p, --prompt TEXT", "Submit an initial prompt after startup."); |
| 317 | opt(fp, c, "--prompt-file FILE", "Read the initial prompt from FILE."); |
| 318 | opt(fp, c, "--prefix-file FILE", "Preload complete alternating USER:/ASSISTANT: turns before the live task."); |
| 319 | opt(fp, c, "--non-interactive", "Run without TUI. With an initial prompt: one turn; otherwise: repeated stdin prompts."); |
| 320 | opt(fp, c, "--raw-prompt", "Non-interactive initial prompt only: omit agent chat/tool text."); |
| 321 | opt(fp, c, "--edit-upto", "Enable anchored [upto] edits and automatic marker insertion."); |
| 322 | opt(fp, c, "-sys, --system TEXT", "Extra system prompt. Empty disables extra text."); |
| 323 | opt(fp, c, "--trace FILE", "Write prompt, token, and DSML debug trace."); |
| 324 | opt(fp, c, "--chdir DIR", "Change working directory before loading runtime assets."); |
no test coverage detected