From 56d7175339c27431b6470d7f3ef2ab83baca1110 Mon Sep 17 00:00:00 2001 From: Hoang Nguyen Date: Sun, 26 Jul 2026 04:53:26 +0000 Subject: [PATCH] fix(skills): quote agent-orchestration description to fix invalid YAML frontmatter The description contained an unquoted colon, which YAML parses as a nested mapping key and breaks frontmatter parsing (e.g. gray-matter used by the CLI's skill index). Fixes #138 --- skills/agent-orchestration/SKILL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skills/agent-orchestration/SKILL.md b/skills/agent-orchestration/SKILL.md index e078d677..0931a735 100644 --- a/skills/agent-orchestration/SKILL.md +++ b/skills/agent-orchestration/SKILL.md @@ -1,6 +1,6 @@ --- name: agent-orchestration -description: AI DevKit · Supervise multi-agent workflows over repeated passes: poll progress, unblock waiting agents, coordinate dependencies, relay outputs, resolve conflicts, and verify completion. Use only for ongoing multi-agent coordination, not one-off list/detail/send/start/kill actions. +description: "AI DevKit · Supervise multi-agent workflows over repeated passes: poll progress, unblock waiting agents, coordinate dependencies, relay outputs, resolve conflicts, and verify completion. Use only for ongoing multi-agent coordination, not one-off list/detail/send/start/kill actions." --- # Agent Orchestration