Taskdoc audit
Skill quantum-box/agent-packages/plugins/quantum-box/skills/taskdoc-audit
Audit Tachyon taskdoc lifecycle health. Use proactively when: (1) in-progress taskdocs are piling up, (2) before creating a new taskdoc while WIP is high, (3) the user asks to clean up taskdocs, or (4) docs/SUMMARY.md may be stale.From its SKILL.md
npx -y skills add quantum-box/agent-packages --skill taskdoc-auditAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
2.3 KB, 538 tokens by cl100k_base, as published. Nobody here has run it
Taskdoc Audit
Purpose
Keep docs/src/tasks/in-progress/ limited to work that is actively being
implemented now. This skill diagnoses lifecycle drift and proposes small,
reviewable cleanup batches.
Workflow
-
Count taskdocs by lifecycle bucket.
for bucket in backlog todo in-progress; do if [ -d "docs/src/tasks/$bucket" ]; then find "docs/src/tasks/$bucket" -mindepth 1 -maxdepth 1 -type d | wc -l else echo 0 fi done if [ -d docs/src/tasks/completed ]; then find docs/src/tasks/completed -mindepth 2 -maxdepth 2 -type d | wc -l else echo 0 fi -
Compare filesystem and
docs/SUMMARY.md.- Find taskdocs missing from the summary.
- Find summary links that point to missing taskdocs.
- Find duplicate summary links.
-
Classify
in-progresstaskdocs.- Active: current branch/diff/PR clearly references the task.
- PR-ready/archive candidate: final checks and evidence exist, but the taskdoc was not moved.
- Stalled: unfinished or blocked; should move to
todo/orbacklog/with a reason. - Duplicate: same slug or Linear ID exists elsewhere.
- Needs owner decision: not enough evidence to move safely.
-
Use conservative automatic archive criteria. A taskdoc can be proposed as a safe archive candidate only when all are true:
task.mdhas at least five completed checklist items.task.mdhas zero open checklist items.verification-report.mdexists.- Status text does not contain
in progress,blocked,pending,保留,未完了, or未確認.
-
Propose cleanup batches.
- Do not mass-move taskdocs without explicit user approval.
- Prefer batches of 5-20 taskdocs.
- For archive batches, use
task-pr-readyrules for the destination version. - For stalled batches, move to
todo/orbacklog/and add a short reason.
Output
Report:
- lifecycle counts
- summary drift
- duplicate links or duplicate slugs
- active taskdocs
- archive candidates
- stalled/backlog candidates
- recommended next cleanup batch
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.