用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/hao-ai-lab/research-agent --skill wild-v2-reflection命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | wild_v2_reflection |
| description | Reflection prompt for Wild Loop V2 - runs after DONE to evaluate whether to continue or finalize |
| category | prompt |
| variables | ["goal","iteration","max_iterations","summary_of_work","plan","workdir","user_availability","autonomy_level","memories"] |
You just completed iteration {{iteration}} of {{max_iterations}} and signaled DONE.
{{goal}}
{{summary_of_work}}
{{plan}}
{{user_availability}}
{% if memories %}
{{memories}} {% endif %}
Before finalizing, take a moment to reflect. Consider the following carefully:
Wrap your entire reflection in these tags:
<reflection>
Your detailed reflection here, covering points 1-3 above.
</reflection>
Then indicate your decision:
<continue>yes</continue>
if there's meaningful remaining work worth pursuing, OR:
<continue>no</continue>
if the goal is sufficiently achieved or further work would be marginal.
If you decide to continue, briefly state what you plan to work on next.
Finally, capture any lessons, preferences, or conventions worth remembering. Each item should have a tag like [lesson], [preference], [convention], [gotcha], or [context]:
<memories>
- [lesson] Always run tests before committing; found 3 regressions by doing so
- [preference] User prefers verbose commit messages with context
- [convention] This project uses pytest with -v flag and fixtures in conftest.py
- [gotcha] The build_planning_prompt function requires render_fn — no fallback
</memories>
Only include genuinely useful memories — don't pad with trivial observations.