一键导入
reespec-execute
Implement tasks from a reespec request, one RED→GREEN cycle at a time. Use when the user wants to start or continue implementing a planned request.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Implement tasks from a reespec request, one RED→GREEN cycle at a time. Use when the user wants to start or continue implementing a planned request.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | reespec-execute |
| description | Implement tasks from a reespec request, one RED→GREEN cycle at a time. Use when the user wants to start or continue implementing a planned request. |
| license | MIT |
| metadata | {"author":"reespec","version":"1.2"} |
Implement tasks from a reespec request. One RED→GREEN cycle at a time.
Input: A request name. If not provided, check reespec list. If only one active request exists, use it. If ambiguous, ask the user to select.
Announce: "Executing request: "
Read in order before touching any implementation:
reespec/requests/<name>/brief.md
reespec/requests/<name>/design.md
reespec/requests/<name>/specs/
reespec/requests/<name>/tasks.md
reespec/decisions.md
reespec/requests/<name>/evaluations.md (if it exists)
Do NOT begin implementation without reading full context.
After reading context, check whether evaluations.md exists:
ls reespec/requests/<name>/evaluations.md 2>/dev/null
If it exists — read the LATEST entry only (the last ## Evaluation — block at
the bottom of the file). Announce to the user:
Found previous evaluation (<date>).
Gaps flagged:
⚠️ <capability> — <one-line reason from verdict>
❌ <capability> — <one-line reason from verdict>
I'll focus on these first, then work remaining tasks.
Only surface PARTIAL and UNSATISFIED items — skip SATISFIED and UNCLEAR. If all items were SATISFIED, announce:
Found previous evaluation (<date>) — all capabilities satisfied. Proceeding normally.
If it does not exist — proceed normally, no mention.
## Executing: <request-name>
Progress: N/M tasks complete
Remaining: [list pending tasks]
Each task has exactly 3 checklist steps. Work through them strictly in order.
For code tasks (RED step says "Write tests/..." or references a test file):
node --test <file> or the project's test command- [x] **RED**Never skip this. Never proceed to ACTION if the test passes (it means the behavior already exists or the test is wrong). Never proceed to ACTION without running the test.
For non-code tasks (RED step is an observable assertion):
- [x] **RED**Mark the ACTION checkbox: - [x] **ACTION**
For code tasks:
- [x] **GREEN**For non-code tasks:
- [x] **GREEN**Never mark GREEN without running/checking. Never assume it passes.
[x]✓ Task N/total complete: <title>Stop and report when:
Never guess. Never skip a failing RED. Never mark GREEN without verifying.
## Paused — <request-name>
Progress: N/M tasks complete
Issue: <description>
Options:
1. <option>
2. <option>
What would you like to do?
Log this — when you:
Do NOT log — activity entries: "added X", "removed Y", "refactored Z", implementation details captured in the task. The log is signal, not noise.
Entry format:
### <Decision title> — YYYY-MM-DD (Request: <request-name>)
One paragraph. What was decided and why. What was considered and rejected.
See request artifacts for full context.
After each task:
✓ Task N/total complete: <title>
After all tasks:
## Complete — <request-name>
Progress: M/M tasks complete ✓
All tasks done. Ready to archive.
Enter discover mode for a reespec request — a thinking partner that challenges the human to explore all sides of their intent before planning begins. Use when the user wants to explore an idea, start a new request, or deepen understanding of a problem.
Adversarial post-execute evaluator for reespec requests. Reads brief + specs as the contract, scans actual outputs, returns structured verdicts per capability with a triage summary, and appends the result to evaluations.md. Use after execute completes to verify implementation against the contract.
Archive a completed reespec request. Use when the user wants to finalize and archive a request after implementation is complete.
Produce all planning artifacts for a reespec request — brief, design, specs, and tasks with explicit 3-step RED/GREEN checklists. Use when the user wants to plan a request, create a task list, or generate implementation artifacts after discovery.