
Review Core
Kick off any deep review so your agent captures context, evidence, and deliverables in a consistent, comparable report format.
Install
npx skills add https://github.com/athola/claude-night-market --skill review-coreWhat is this skill?
- Six-step workflow: context, scope inventory, evidence, deliverables, grounded verification, contingencies
- TodoWrite gates at each step for traceable review progress
- Evidence capture and structured reporting for comparable findings across review types
- Explicit check that findings stay grounded in captured evidence
- Contingency planning before sign-off on review conclusions
Adoption & trust: 1 installs on skills.sh; 304 GitHub stars; 2/3 security scanners passed (skills.sh audits); trending (+100% hot-view momentum).
Recommended Skills
Journey fit
Detailed reviews most often gate quality before merge or release, so the canonical shelf is Ship → Review even though the same scaffolding applies to architecture and API passes earlier in the journey. Review subphase matches pre-merge and structured audit workflows where grounded findings and reporting structure matter most.
Common Questions / FAQ
Is Review Core safe to install?
skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.
SKILL.md
READMESKILL.md - Review Core
# Core Review Workflow ## Table of Contents 1. [When to Use](#when-to-use) 2. [Activation Patterns](#activation-patterns) 3. [Required TodoWrite Items](#required-todowrite-items) 4. [Step 1 – Establish Context](#step-1--establish-context-review-corecontext-established) 5. [Step 2 – Inventory Scope](#step-2--inventory-scope-review-corescope-inventoried) 6. [Step 3 – Capture Evidence](#step-3--capture-evidence-review-coreevidence-captured) 7. [Step 4 – Structure Deliverables](#step-4--structure-deliverables-review-coredeliverables-structured) 8. [Step 5 – Verify Findings Are Grounded](#step-5--verify-findings-are-grounded-review-corefindings-verified) 9. [Step 6 – Contingency Plan](#step-6--contingency-plan-review-corecontingencies-documented) ## When To Use - Use this skill at the beginning of any detailed review workflow (e.g., for architecture, math, or an API). - It provides a consistent structure for capturing context, logging evidence, and formatting the final report, which makes the findings of different reviews comparable. ## When NOT To Use - Diff-focused analysis - use diff-analysis ## Activation Patterns **Trigger Keywords**: review, audit, analysis, assessment, evaluation, inspection **Contextual Cues**: - "review this code/design/architecture" - "conduct an audit of" - "analyze this for issues" - "evaluate the quality of" - "perform an assessment" **Auto-Load When**: Any review-specific workflow is detected or when analysis methodologies are requested. ## Required TodoWrite Items 1. `review-core:context-established` 2. `review-core:scope-inventoried` 3. `review-core:evidence-captured` 4. `review-core:deliverables-structured` 5. `review-core:findings-verified` 6. `review-core:contingencies-documented` ## Step 1 – Establish Context (`review-core:context-established`) - Confirm `pwd`, repo, branch, and upstream base (e.g., `git status -sb`, `git rev-parse --abbrev-ref HEAD`). - Note comparison target (merge base, release tag) so later diffs reference a concrete range. - Summarize the feature/bug/initiative under review plus stakeholders and deadlines. ## Step 2 – Inventory Scope (`review-core:scope-inventoried`) - List relevant artifacts for this review: source files, configs, docs, specs, generated assets (OpenAPI, Makefiles, ADRs, notebooks, etc.). - Record how you enumerated them (commands like `rg --files -g '*.mk'`, `ls docs`, `cargo metadata`). - Capture assumptions or constraints inherited from the plan/issue so the domain-specific analysis can cite them. ## Step 3 – Capture Evidence (`review-core:evidence-captured`) - Log every command/output that informs the review (e.g., `git diff --stat`, `make -pn`, `cargo doc`, `web.run` citations). Keep snippets or line numbers for later reference. - Track open questions or variances found during preflight; if they block progress, record owners/timelines now. ### Record Lessons Learned (decision journal) If this work involved rework, a failed approach, or a blocker, record it to `docs/lessons-learned.md` so the insight survives past the session (draft and confirm): - If leyline is installed, invoke `Skill(leyline:decision-journal)` and append a lesson entry (`what_happened`, `what_didnt_work`, `root_cause`, `action`; set `phase` to `review`). Show the draft; append on confirmation. - Fallback (leyline absent): append to `docs/lessons-learned.md` using the in-file ENTRY TEMPLATE; assign the next `LL-NNN` id. ## Step 4 – Structure Deliverables (`review-core:deliverables-structured`) -