Systematic tracking and completion of all required deliverables before task termination
复制下面这句话,粘贴给 Claude Code、Codex、Cursor 等 AI 编程工具,它会读取安装说明并在你确认后完成安装。
请阅读 https://ai.atlankj.com/install/asset/gh-multi-deliverable-tracking-2eb609-332b7b952e91 ,按照其中的说明把「multi-deliverable-tracking-2eb609」安装到你(当前 AI 工具)中。执行前先告诉我将运行的命令和写入的位置,等我确认。
查看 AI 将读取的安装说明正在读取 GitHub 原文…
内容来自 GitHub 原始文件,由原作者维护。在 GitHub 查看
This skill ensures that agents explicitly identify, track, and complete ALL required deliverables before stopping, preventing premature task completion when multiple outputs are required.
Never stop working until you can confirm every required deliverable is complete.
At the start of any task, explicitly list ALL expected outputs:
## Required Deliverables Checklist
- [ ] Deliverable 1: [description]
- [ ] Deliverable 2: [description]
- [ ] Deliverable 3: [description]
Action: Parse the task description carefully for keywords like:
Maintain a visible checklist throughout execution. Update it after each deliverable:
## Progress Tracker
| Deliverable | Status | Evidence |
|-------------|--------|----------|
| Email to CEO | ✅ Complete | File: ceo_email.md created |
| Email to CTO | ⏳ Pending | - |
Action: After completing each item, update the checklist BEFORE moving to the next task.
Before declaring a task complete, perform a final verification:
ls or list_dir if needed)If you discover a missing deliverable:
# Track deliverables programmatically
deliverables = {
"ceo_email": {"required": True, "complete": False, "path": "ceo_email.md"},
"cto_email": {"required": True, "complete": False, "path": "cto_email.md"},
}
def verify_all_complete():
for name, info in deliverables.items():
if info["required"] and not info["complete"]:
return False, f"Missing: {name}"
return True, "All deliverables complete"
# Verify multiple files exist before concluding
for file in ceo_email.md cto_email.md; do
if [ ! -f "$file" ]; then
echo "ERROR: Missing deliverable: $file"
exit 1
fi
done
echo "All deliverables verified"
| Pitfall | Solution |
|---|---|
| Stopping after first deliverable | Always check for "and", "both", multiple file names |
| Assuming implicit completion | Explicitly verify each file/output exists |
| Losing track mid-task | Keep checklist visible in working notes |
| Not re-reading requirements | Re-parse task description before final verification |
Use this skill whenever:
❌ Wrong: "I created the email to the CEO. Task complete." (Missing: email to CTO was also required)
✅ Correct: "I created emails to both CEO and CTO. Verified both files exist. All 2 deliverables complete."