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
+4
View File
@@ -107,6 +107,7 @@ async fn main() -> Result<()> {
|| cli.list_rags
|| cli.list_macros
|| cli.list_skills
|| cli.list_bundles
|| cli.list_sessions;
let vault_flags = cli.add_secret.is_some()
|| cli.get_secret.is_some()
@@ -309,6 +310,9 @@ async fn run(
println!("{skills}");
return Ok(());
}
if cli.list_bundles {
return config::list_installed_bundles();
}
let skills = cli.skills();
if skills.len() == 1 {
let name = &skills[0];