From cc1462a7f8a22508e415e871190166f35c5cac43 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Mon, 25 May 2026 15:30:22 +0900 Subject: [PATCH] fix(#458): add status:ok to skills install JSON envelope (missed in previous sweep) --- rust/crates/commands/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/rust/crates/commands/src/lib.rs b/rust/crates/commands/src/lib.rs index b4358d20..f697c9e0 100644 --- a/rust/crates/commands/src/lib.rs +++ b/rust/crates/commands/src/lib.rs @@ -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,