From 0581894b7e7b7036decd6683cbd661992f5452a6 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Mon, 25 May 2026 15:02:25 +0900 Subject: [PATCH] fix(#458): add status:ok to agents and skills list JSON envelopes; all 9 subcommands now pass uniform status check --- rust/crates/commands/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rust/crates/commands/src/lib.rs b/rust/crates/commands/src/lib.rs index bcadde2e..b4358d20 100644 --- a/rust/crates/commands/src/lib.rs +++ b/rust/crates/commands/src/lib.rs @@ -3625,6 +3625,7 @@ fn render_agents_report_json(cwd: &Path, agents: &[AgentSummary]) -> Value { .count(); json!({ "kind": "agents", + "status": "ok", "action": "list", "working_directory": cwd.display().to_string(), "count": agents.len(), @@ -3707,6 +3708,7 @@ fn render_skills_report_json(skills: &[SkillSummary]) -> Value { .count(); json!({ "kind": "skills", + "status": "ok", "action": "list", "summary": { "total": skills.len(),