Use when the user asks to review the work queue, triage pending items, clear the backlog, or find out what needs attention in the vault. Surfaces prioritized actionable items and batch-processes approved updates.
Review the vault's work queue, evaluate each item, and batch-process approved actions. This skill uses the loop pattern: enumerate all items, inspect each, propose actions, then execute the approved set after user confirmation.
Never write without confirmation. Present the full proposed action set BEFORE executing any writes. The user approves or prunes the batch before a single write fires.
Check result.success after every write. If update_content or close_content fails, stop the batch and report what succeeded and what failed. Do not silently skip failures.
Check vault integrity — check_integrity(): run the 4-category integrity scanner (orphan edges, broken links, missing files, schema issues). Surface any critical issues before reviewing the work queue. If integrity issues are found, report them first — they may explain items in the queue.
Load queue — work_queue(): load the prioritized work queue. All actionable items are returned with composite scores. If the queue is empty and no integrity issues, report "Work queue is empty. Vault is clear." and stop.
Inspect top items — For each of the top items (up to 10): get_document(content_id="<id>") — fetch full content to evaluate. Parallel fetches are acceptable.
Evaluate each item — Classify and propose an action:
Present summary table — Show proposed actions before any writes:
| # | ID | Title | Type | Suggestion | Priority |
Ask: "Process all / only high-priority (score > X) / pick specific items?"
Batch execute — For each approved item, execute the proposed action:
update_content(content_id="<id>", changes={"maturity": "budding"})update_content(content_id="<id>", changes={"status": "complete"})close_content(content_id="<id>")reweave(content_id="<id>")
Check result.success after each call. Stop the batch on failure, report progress.Report results — Summarize: integrity issues found, items reviewed, items updated, items archived, items remaining in queue.
The confirmation model prevents accidental bulk writes:
close_content is a soft-delete that hides the item from default queriesSee references/triage-workflow.md for item evaluation criteria and priority scoring details.