一键导入
mission-control-feedback
Self-evaluate after completing requirements. Log inaccuracies, improvement areas, and lessons learned to become a better agent over time.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Self-evaluate after completing requirements. Log inaccuracies, improvement areas, and lessons learned to become a better agent over time.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Generate structured completion reports after fulfilling requirements, stored as daily markdown files.
Interact with the Mission Control PostgREST API to manage tasks, log progress, and request reviews.
基于 SOC 职业分类
| name | Mission Control — Feedback |
| description | Self-evaluate after completing requirements. Log inaccuracies, improvement areas, and lessons learned to become a better agent over time. |
After completing all tasks under a requirement, you may write a self-evaluation feedback entry — but only if you have something meaningful to say.
This is not compulsory. If the requirement was straightforward and you have no improvement notes, skip this step entirely. Do not write "No feedback" entries.
Consider writing feedback when, after completing a requirement, you notice any of:
If none of these apply, do not write feedback. A clean execution needs no feedback file entry.
| Item | Value |
|---|---|
| Directory | ~/.openclaw/workspaces/<your-agent-id>/feedback/ |
| Filename | <DD-MM-YY>.md (e.g. 20-02-26.md) |
feedback/ directory if it doesn't exist.---
## Feedback: <Requirement Title>
**Requirement ID**: <id>
**Agent**: <your-agent-id>
**Date**: <ISO timestamp>
### What went wrong
<Describe any inaccuracies, errors, or incorrect output you produced.>
### What could be improved
<Describe inefficiencies, suboptimal decisions, or missed opportunities.>
### Lessons for next time
<Concrete, actionable takeaways. What would you do differently?>
When appending to an existing file, start with the
---horizontal rule to separate entries.
Omit sections that don't apply. If only "Lessons for next time" is relevant, just write that section.
mkdir -p (or equivalent) to ensure the feedback directory exists.date +%d-%m-%y to get the current date in DD-MM-YY format.>>).After completing requirement #3 ("Reddit comment posting"), the agent noticed it was rate-limited and had to retry:
File: ~/.openclaw/workspaces/writer/feedback/20-02-26.md
---
## Feedback: Reddit Comment Posting
**Requirement ID**: 3
**Agent**: writer
**Date**: 2026-02-20T14:35:00Z
### What went wrong
First comment post attempt hit Reddit's rate limiter (HTTP 429). I hadn't checked the subreddit's rate-limit headers before posting.
### Lessons for next time
Always check `X-Ratelimit-Remaining` and `X-Ratelimit-Reset` headers before making sequential API calls. Add a configurable delay between posts (minimum 2 seconds for Reddit).