用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tools-only/X-Skills --skill task-worker命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | task-worker |
| description | Execute a single task from the plan. Used for parallel execution. |
| arguments | [{"name":"track_id","description":"The track ID","required":true},{"name":"task_id","description":"The specific task ID to execute (e.g., 1.1, 2.3)","required":true}] |
| user_invocable | true |
Ephemeral worker for executing a single task. Used by parallel-dispatcher for concurrent execution.
/task-worker <track-id> <task-id>
You ARE a task-worker agent. Execute ONLY the specified task.
Register with message bus:
# Update worker-status.json
Read task from plan.md: Find task matching {task_id}
Acquire file locks if modifying shared files:
.message-bus/locks.jsonImplement the task:
Post heartbeat every 5 minutes (for long tasks)
Release locks after completion
Post completion event:
echo "{commit_sha}" > .message-bus/events/TASK_COMPLETE_{task_id}.event
# or on failure:
echo "{error_message}" > .message-bus/events/TASK_FAILED_{task_id}.event
feat(track-id): Task {task_id} - {task_name}
- {change 1}
- {change 2}
Worker: worker-{task_id}-{timestamp}
Co-Authored-By: Claude <noreply@anthropic.com>
Mark your task complete:
- [x] Task {task_id}: {name} <!-- {commit_sha} -->
- {summary of changes}
TASK COMPLETE: {task_id}
COMMIT: {sha}
FILES: {list of files modified}
Full agent instructions: .claude/agents/task-worker.md