← ClaudeAtlas

reviewlisted

Build a prioritized review queue from lint findings, draft pages, and low-confidence knowledge; process items one at a time with guided decisions.
geronimo-iia/llm-wiki-skills · ★ 1 · Code & Development · score 68
Install: claude install-skill geronimo-iia/llm-wiki-skills
# Review Process wiki pages that need human attention: structural errors, unverified drafts, and low-confidence active pages. The queue is rebuilt from existing fields each session — no dedicated state required. ## Step 1 — Discover the wiki root ``` wiki_spaces_list() ``` ## Step 2 — Build the review queue Assemble from three sources, then merge and deduplicate: **Source 1 — lint errors and warnings (highest priority):** ``` wiki_lint() ``` Pages with `Error` findings (broken links, missing fields, unknown type) rank first — they are structurally broken, not just unreviewed. **Source 2 — draft pages:** ``` wiki_list(status: "draft") ``` **Source 3 — low-confidence active pages:** ``` wiki_list(status: "active") ``` Filter to pages where `confidence < 0.4`. **Priority order:** | Priority | Condition | |---|---| | 1 — Error | `wiki_lint` `Error` finding | | 2 — Warning | `wiki_lint` `Warning` finding | | 3 — Draft | `status: draft`, no lint finding | | 4 — Low confidence | `status: active`, `confidence < 0.4` | Within each tier: sort by `confidence` ascending (least certain first), then `last_updated` ascending (oldest first). If the user provided a `max-items` argument, cap the queue at that count. ## Step 3 — Review loop Process items one at a time. For each page: ### 3a. Read the page ``` wiki_content_read(uri: "<slug>", backlinks: true) wiki_history(slug: "<slug>", limit: 3) ``` ### 3b. Show context Present: - What triggered the flag (lint finding type, d