From 56e8fddfc45c61746b9ce5e60ebc5b7407e88f5b Mon Sep 17 00:00:00 2001 From: "Dhanji R. Prasanna" Date: Sat, 17 Jan 2026 15:19:49 +0530 Subject: [PATCH] feat(cli): add --include-prompt flag for dynamic prompt injection Adds a new CLI flag that allows users to include additional prompt content from a file. The content is appended to the system prompt before project memory is loaded. --- crates/g3-cli/src/cli_args.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/crates/g3-cli/src/cli_args.rs b/crates/g3-cli/src/cli_args.rs index cecd43a..720c1ec 100644 --- a/crates/g3-cli/src/cli_args.rs +++ b/crates/g3-cli/src/cli_args.rs @@ -114,4 +114,8 @@ pub struct Cli { /// Enable aggressive context dehydration (save context to disk on compaction) #[arg(long)] pub acd: bool, + + /// Include additional prompt content from a file (appended before memory) + #[arg(long, value_name = "PATH")] + pub include_prompt: Option, }