fix(#458): add status:ok to skills install JSON envelope (missed in previous sweep)

This commit is contained in:
YeonGyu-Kim
2026-05-25 15:30:22 +09:00
parent f2a90228fb
commit cc1462a7f8

View File

@@ -3743,6 +3743,7 @@ fn render_skill_install_report(skill: &InstalledSkill) -> String {
fn render_skill_install_report_json(skill: &InstalledSkill) -> Value {
json!({
"kind": "skills",
"status": "ok",
"action": "install",
"result": "installed",
"invocation_name": &skill.invocation_name,