From b9f17f0fcf63929fbbc63f3925e72fec7b9d1f99 Mon Sep 17 00:00:00 2001 From: catlog22 Date: Fri, 23 Jan 2026 12:38:45 +0800 Subject: [PATCH] fix: Add required 'name' field to Codex skill YAML frontmatter According to OpenAI Codex skill specification, SKILL.md files must have both 'name' and 'description' fields in YAML frontmatter. Added missing 'name' field to all three skills: - CCW Loop - CCW Loop-B - Parallel Dev Cycle Also enhanced ccw-loop description with Chinese trigger keywords for better multi-language support. --- .codex/skills/ccw-loop-b/SKILL.md | 1 + .codex/skills/ccw-loop/SKILL.md | 3 ++- .codex/skills/parallel-dev-cycle/SKILL.md | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.codex/skills/ccw-loop-b/SKILL.md b/.codex/skills/ccw-loop-b/SKILL.md index 2217b2f2..05554fb2 100644 --- a/.codex/skills/ccw-loop-b/SKILL.md +++ b/.codex/skills/ccw-loop-b/SKILL.md @@ -1,4 +1,5 @@ --- +name: CCW Loop-B description: Hybrid orchestrator pattern for iterative development. Coordinator + specialized workers with batch wait support. Triggers on "ccw-loop-b". argument-hint: TASK="" [--loop-id=] [--mode=] --- diff --git a/.codex/skills/ccw-loop/SKILL.md b/.codex/skills/ccw-loop/SKILL.md index 74d0306e..de81d505 100644 --- a/.codex/skills/ccw-loop/SKILL.md +++ b/.codex/skills/ccw-loop/SKILL.md @@ -1,5 +1,6 @@ --- -description: Stateless iterative development loop workflow with documented progress. Supports develop, debug, and validate phases with file-based state tracking. Triggers on "ccw-loop", "dev loop", "development loop". +name: CCW Loop +description: Stateless iterative development loop workflow with documented progress. Supports develop, debug, and validate phases with file-based state tracking. Triggers on "ccw-loop", "dev loop", "development loop", "开发循环", "迭代开发". argument-hint: TASK="" [--loop-id=] [--auto] --- diff --git a/.codex/skills/parallel-dev-cycle/SKILL.md b/.codex/skills/parallel-dev-cycle/SKILL.md index 16118509..429311c3 100644 --- a/.codex/skills/parallel-dev-cycle/SKILL.md +++ b/.codex/skills/parallel-dev-cycle/SKILL.md @@ -1,4 +1,5 @@ --- +name: Parallel Dev Cycle description: Multi-agent parallel development cycle with requirement analysis, exploration planning, code development, and validation. Supports continuous iteration with markdown progress documentation. argument-hint: TASK="" [--cycle-id=] [--auto] [--parallel=] ---