feat: removed potentially confusing tab completions for .skill

This commit is contained in:
2026-06-01 16:04:22 -06:00
parent 31b44fbeb7
commit 94e3c3535c
+2 -4
View File
@@ -1874,13 +1874,11 @@ impl RequestContext {
} }
".macro" => super::map_completion_values(paths::list_macros()), ".macro" => super::map_completion_values(paths::list_macros()),
".skill" => { ".skill" => {
let mut values: Vec<String> = vec![ super::map_completion_values(vec![
"loaded".to_string(), "loaded".to_string(),
"load".to_string(), "load".to_string(),
"unload".to_string(), "unload".to_string(),
]; ])
values.extend(paths::list_skills());
super::map_completion_values(values)
} }
".starter" => match &self.agent { ".starter" => match &self.agent {
Some(agent) => agent Some(agent) => agent