style(codex-skill): replace emoji with text labels

替换  emoji 为 # Bad: 文字标记,保持文档简洁专业。

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
cexll
2025-12-01 16:22:32 +08:00
parent 7f790fbe15
commit 9ba6950d21

View File

@@ -207,15 +207,15 @@ echo "---TASK---..." | codex-wrapper --parallel
**Incorrect (will trigger shell parsing errors):** **Incorrect (will trigger shell parsing errors):**
```bash ```bash
# ❌ Wrong: no extra args allowed after --parallel # Bad: no extra args allowed after --parallel
codex-wrapper --parallel - /path/to/dir <<'EOF' codex-wrapper --parallel - /path/to/dir <<'EOF'
... ...
EOF EOF
# ❌ Wrong: --parallel does not take a task argument # Bad: --parallel does not take a task argument
codex-wrapper --parallel "task description" 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 codex-wrapper --parallel /path/to/dir < tasks.txt
``` ```