Install
openclaw skills install huo15-autoresearch-loopClawHub Security found sensitive or high-impact capabilities. Review the scan results before using.
基于 Karpathy 自主研究循环的 OpenClaw Skill,Modify → Verify → Keep/Discard → Repeat forever
openclaw skills install huo15-autoresearch-loop基于 uditgoenka/autoresearch(Karpathy 自主研究循环)的 OpenClaw Skill 实现。
实现 Karpathy 的 Modify → Verify → Keep/Discard → Repeat forever 自主研究循环。
自动迭代 [目标描述] [验证命令]
示例:
自动迭代 优化性能瓶颈 make test
自动迭代 修复所有lint错误 ./scripts/lint.sh
config.json 控制循环行为:
{
"max_iterations": 50,
"verify_command": "",
"scope_globs": ["**/*.py", "**/*.js"],
"convergence_threshold": 3,
"commit_each_success": true,
"revert_on_fail": true
}
exec 调用脚本每次迭代的状态保存在 ~/.openclaw/tmp/autoresearch-loop-state.json:
{
"goal": "优化性能",
"verify_command": "make test",
"iteration": 5,
"successes": 3,
"failures": 2,
"last_success": "2026-04-22T00:30:00Z",
"history": [...]
}
max_iterationsconvergence_threshold1.0.0