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.
This commit is contained in:
Dhanji R. Prasanna
2026-01-17 15:19:49 +05:30
parent d89439d4b8
commit 56e8fddfc4

View File

@@ -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<PathBuf>,
}