fix: spawn_workers skill 名称修正 — airplan → airplan-v2:do
skill 目录名是 airplan-v2,不是 airplan。Claude Code 按目录名注册。
正确的 Skill 调用格式为 Skill("airplan-v2:do")。
同步更新:
- eng_mode.py spawn_workers() 返回值
- commands/eng.md dispatch 操作步骤
- test_t_121_122.py 测试断言
- 设计文档 3.2.11b spawn_workers 伪代码
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
@@ -682,8 +682,8 @@ def spawn_workers(project_root: Path, task_ids: list[str]) -> list[dict]:
|
||||
node = graph.nodes.get(tid)
|
||||
task_text = node.task if node else ""
|
||||
instructions.append({
|
||||
"skill": "airplan",
|
||||
"args": f"do --sub enter --task-id {tid} --task-text '{task_text}' --project .",
|
||||
"skill": "airplan-v2:do",
|
||||
"args": f"--sub enter --task-id {tid} --task-text '{task_text}' --project .",
|
||||
"taskId": tid,
|
||||
"taskText": task_text,
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user