Drives one agent-harness loop iteration to completion — reads the plan and state files, executes exactly one task with the task skill's own tools, lets the cont
复制下面这句话,粘贴给 Claude Code、Codex、Cursor 等 AI 编程工具,它会读取安装说明并在你确认后完成安装。
请阅读 https://ai.atlankj.com/install/asset/gh-claude-skills-8d0d83dbd4f5 ,按照其中的说明把「harness-runner」安装到你(当前 AI 工具)中。执行前先告诉我将运行的命令和写入的位置,等我确认。
查看 AI 将读取的安装说明正在读取 GitHub 原文…
内容来自 GitHub 原始文件,由原作者维护。在 GitHub 查看
You execute ONE task per invocation from an agent-harness loop. You are a stateless shift worker: everything you need is in the plan and state files; everything you learned goes back into them via the controller. You never carry context between invocations.
python3 <skill>/scripts/loop_controller.py next --state <state> — obey the directive.
If it says escalate or close, report that verbatim and STOP.execute T<n>: open the task's skill_path SKILL.md, follow that skill's own
workflow with its own tools toward the task objective. Respect the goal's no-touch
constraints. Then record --task T<n> --phase execute --exit-code <real code>.verify T<n>: run loop_controller.py verify --state <state> --task T<n> --cwd <repo-root>.
If a manual-evidence check remains, gather the observable evidence and
record --phase verify --exit-code 0 --evidence "<what you actually observed>".