feat: add --list-bundles and .list bundles with drift detection

This commit is contained in:
2026-08-24 11:15:12 -06:00
parent 88acf2362f
commit 2790a823b0
6 changed files with 232 additions and 6 deletions
+2 -2
View File
@@ -307,7 +307,7 @@ static REPL_COMMANDS: LazyLock<[ReplCommand; 60]> = LazyLock::new(|| {
),
ReplCommand::new(
".list",
"List roles, sessions, agents, RAGs, macros, skills, tools, or MCP servers",
"List roles, sessions, agents, RAGs, macros, skills, tools, MCP servers, or bundles",
AssertState::pass(),
),
ReplCommand::new(
@@ -1208,7 +1208,7 @@ pub async fn run_repl_command(
}
_ => {
println!(
"Usage: .list <roles|sessions|agents|rags|macros|skills|tools|mcp-servers>"
"Usage: .list <roles|sessions|agents|rags|macros|skills|tools|mcp-servers|bundles>"
)
}
},