diff --git a/src/cli/loop/session.ts b/src/cli/loop/session.ts index 15ee2917e..023ccf58c 100644 --- a/src/cli/loop/session.ts +++ b/src/cli/loop/session.ts @@ -483,6 +483,25 @@ export class LoopSession { logger.always(chalk.gray(` Type: ${schema.type}`)); } } + + // Clarify multimodal flags usage + logger.always( + chalk.cyan("\nNote: Multimodal Flags (--image, --pdf, --csv, --file)"), + ); + logger.always( + chalk.gray( + ` These are per-command flags, not session variables.`, + ), + ); + logger.always( + chalk.gray(` Use them directly with your commands in loop mode:`), + ); + logger.always( + chalk.dim(` Example: analyze this chart --image chart.png`), + ); + logger.always( + chalk.dim(` Example: summarize this document --pdf report.pdf`), + ); } /**