원클릭으로
mission-control-reporting
Generate structured completion reports after fulfilling requirements, stored as daily markdown files.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Generate structured completion reports after fulfilling requirements, stored as daily markdown files.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Self-evaluate after completing requirements. Log inaccuracies, improvement areas, and lessons learned to become a better agent over time.
Interact with the Mission Control PostgREST API to manage tasks, log progress, and request reviews.
| name | Mission Control — Reporting |
| description | Generate structured completion reports after fulfilling requirements, stored as daily markdown files. |
After you finish all tasks belonging to a requirement, you must generate a completion report.
Key concept: A requirement is the top-level unit. One requirement contains one or more tasks. A report is written per requirement, not per task.
Generate a report when every task under a requirement has been moved to done.
Use the PostgREST API to verify:
# Check if all tasks for a requirement are done
curl -s "http://localhost:3001/tasks?requirement_id=eq.<REQ_ID>&status=neq.done" | jq length
# If the result is 0 → all tasks are complete → write the report
| Item | Value |
|---|---|
| Directory | ~/.openclaw/workspaces/<your-agent-id>/report/ |
| Filename | <DD-MM-YY>.md (e.g. 20-02-26.md) |
report/ directory if it doesn't exist.Use the following markdown template. Adapt headings as needed, but keep the structure consistent.
---
## <Requirement Title>
**Requirement ID**: <id>
**Agent**: <your-agent-id>
**Completed at**: <ISO timestamp>
### Summary
<1–3 sentence summary of what was accomplished.>
### Tasks Completed
| # | Task | Status | Duration |
|---|------|--------|----------|
| 1 | <task title> | done | <duration or N/A> |
| 2 | <task title> | done | <duration or N/A> |
### Outcome
<What was the end result? Link to PRs, files changed, deployments, etc.>
### Blockers & Notes
<Any blockers encountered, workarounds, or decisions made. Write "None" if there were no blockers.>
When appending to an existing file, start with the
---horizontal rule so each report is visually separated.
mkdir -p (or equivalent) to ensure the report directory exists.date +%d-%m-%y to get the current date in the correct DD-MM-YY format.>>) to safely append to existing files.After completing all tasks under requirement #3 ("Reddit comment posting"), on 20 Feb 2026:
File: ~/.openclaw/workspaces/writer/report/20-02-26.md
---
## Reddit Comment Posting
**Requirement ID**: 3
**Agent**: writer
**Completed at**: 2026-02-20T14:30:00Z
### Summary
Successfully implemented automated Reddit comment posting for the target subreddits. All scheduled comments were posted with appropriate context and formatting.
### Tasks Completed
| # | Task | Status | Duration |
|---|------|--------|----------|
| 1 | Research subreddit rules & posting guidelines | done | 12 min |
| 2 | Draft and post comments | done | 25 min |
| 3 | Verify posted comments are live | done | 5 min |
### Outcome
3 comments posted across r/programming and r/webdev. Links saved to task metadata.
### Blockers & Notes
Rate-limited on first attempt; added 2s delay between posts.