From 9ba6950d21b2d583fce1048d6de89790fc802271 Mon Sep 17 00:00:00 2001 From: cexll Date: Mon, 1 Dec 2025 16:22:32 +0800 Subject: [PATCH] style(codex-skill): replace emoji with text labels MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 替换 ❌ emoji 为 # Bad: 文字标记,保持文档简洁专业。 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- skills/codex/SKILL.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/skills/codex/SKILL.md b/skills/codex/SKILL.md index a09ef15..21da4c7 100644 --- a/skills/codex/SKILL.md +++ b/skills/codex/SKILL.md @@ -207,15 +207,15 @@ echo "---TASK---..." | codex-wrapper --parallel **Incorrect (will trigger shell parsing errors):** ```bash -# ❌ Wrong: no extra args allowed after --parallel +# Bad: no extra args allowed after --parallel codex-wrapper --parallel - /path/to/dir <<'EOF' ... EOF -# ❌ Wrong: --parallel does not take a task argument +# Bad: --parallel does not take a task argument codex-wrapper --parallel "task description" -# ❌ Wrong: workdir must live inside the task config +# Bad: workdir must live inside the task config codex-wrapper --parallel /path/to/dir < tasks.txt ```