fix(#717): implement agents show/info/describe and list filter commands, mirror skills handler parity

This commit is contained in:
YeonGyu-Kim
2026-05-26 05:36:27 +09:00
parent 6a007344ae
commit a0b375c157
3 changed files with 131 additions and 17 deletions

View File

@@ -302,6 +302,8 @@ fn classify_error_kind(message: &str) -> &'static str {
"interactive_only"
} else if message.starts_with("unknown agents subcommand:") {
"unknown_agents_subcommand"
} else if message.starts_with("agent not found:") {
"agent_not_found"
} else if message.contains("is not installed") {
"plugin_not_found"
} else if (message.contains("skill source") && message.contains("not found"))