用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/HKUDS/OpenSpace --skill multi-deliverable-tracking-2eb609命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Incremental audio production with duration mismatch handling, adaptive stem extension, and pre-mix alignment verification
Audio production with diagnostic analysis, timecode parsing from documents, and verified export workflow
Incremental audio production with duration alignment handling, per-stem verification, and adaptive extension strategies
基于 SOC 职业分类
正在显示 SKILL.md
| name | multi-deliverable-tracking-2eb609 |
| description | Systematic tracking and completion of all required deliverables before task termination |
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."