Core Review Workflow
Table of Contents
- When to Use
- Activation Patterns
- Required TodoWrite Items
- Step 1 – Establish Context
- Step 2 – Inventory Scope
- Step 3 – Capture Evidence
- Step 4 – Structure Deliverables
- Step 5 – Contingency Plan
- Troubleshooting
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
review-core:context-established
review-core:scope-inventoried
review-core:evidence-captured
review-core:deliverables-structured
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.
Step 4 – Structure Deliverables (review-core:deliverables-structured)
- Prepare the reporting skeleton shared by all reviews:
- Summary (baseline, scope, recommendation)
- Ordered findings (severity, file:line, principle violated, remediation)
- Follow-up tasks (owner + due date)
- Evidence appendix (commands, URLs, notebooks)
- validate the domain-specific checklist will populate each section before concluding.
Step 5 – Contingency Plan (review-core:contingencies-documented)
- If a required tool or skill is unavailable (e.g.,
web.run), document the alternative steps that will be taken and any limitations this introduces. This helps reviewers understand any gaps in coverage.
- Note any outstanding approvals or data needed to complete the review.
Exit Criteria
- All TodoWrite items complete with concrete notes (commands run, files listed, evidence paths).
- Domain-specific review can now assume consistent context/evidence/deliverable scaffolding and focus on specialized analysis.
Troubleshooting
Common Issues
Command not found
Ensure all dependencies are installed and in PATH
Permission errors
Check file permissions and run with appropriate privileges
Unexpected behavior
Enable verbose logging with --verbose flag
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: review-core-23description: Reusable scaffolding for review workflows with context establishment, evidence capture, and structured output. Use when this capability is needed.4---5# Core Review Workflow67## Table of Contents891. [When to Use](#when-to-use)102. [Activation Patterns](#activation-patterns)113. [Required TodoWrite Items](#required-todowrite-items)124. [Step 1 – Establish Context](#step-1--establish-context-review-corecontext-established)135. [Step 2 – Inventory Scope](#step-2--inventory-scope-review-corescope-inventoried)146. [Step 3 – Capture Evidence](#step-3--capture-evidence-review-coreevidence-captured)157. [Step 4 – Structure Deliverables](#step-4--structure-deliverables-review-coredeliverables-structured)168. [Step 5 – Contingency Plan](#step-5--contingency-plan-review-corecontingencies-documented)179. [Troubleshooting](#troubleshooting)1819## When To Use20- Use this skill at the beginning of any detailed review workflow (e.g., for architecture, math, or an API).21- It provides a consistent structure for capturing context, logging evidence, and formatting the final report, which makes the findings of different reviews comparable.2223## When NOT To Use2425- Diff-focused analysis - use diff-analysis2627## Activation Patterns28**Trigger Keywords**: review, audit, analysis, assessment, evaluation, inspection29**Contextual Cues**:30- "review this code/design/architecture"31- "conduct an audit of"32- "analyze this for issues"33- "evaluate the quality of"34- "perform an assessment"3536**Auto-Load When**: Any review-specific workflow is detected or when analysis methodologies are requested.3738## Required TodoWrite Items391. `review-core:context-established`402. `review-core:scope-inventoried`413. `review-core:evidence-captured`424. `review-core:deliverables-structured`435. `review-core:contingencies-documented`4445## Step 1 – Establish Context (`review-core:context-established`)46- Confirm `pwd`, repo, branch, and upstream base (e.g., `git status -sb`, `git rev-parse --abbrev-ref HEAD`).47- Note comparison target (merge base, release tag) so later diffs reference a concrete range.48- Summarize the feature/bug/initiative under review plus stakeholders and deadlines.4950## Step 2 – Inventory Scope (`review-core:scope-inventoried`)51- List relevant artifacts for this review: source files, configs, docs, specs, generated assets (OpenAPI, Makefiles, ADRs, notebooks, etc.).52- Record how you enumerated them (commands like `rg --files -g '*.mk'`, `ls docs`, `cargo metadata`).53- Capture assumptions or constraints inherited from the plan/issue so the domain-specific analysis can cite them.5455## Step 3 – Capture Evidence (`review-core:evidence-captured`)56- 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.57- Track open questions or variances found during preflight; if they block progress, record owners/timelines now.5859## Step 4 – Structure Deliverables (`review-core:deliverables-structured`)60- Prepare the reporting skeleton shared by all reviews:61 - Summary (baseline, scope, recommendation)62 - Ordered findings (severity, file:line, principle violated, remediation)63 - Follow-up tasks (owner + due date)64 - Evidence appendix (commands, URLs, notebooks)65- validate the domain-specific checklist will populate each section before concluding.6667## Step 5 – Contingency Plan (`review-core:contingencies-documented`)68- If a required tool or skill is unavailable (e.g., `web.run`), document the alternative steps that will be taken and any limitations this introduces. This helps reviewers understand any gaps in coverage.69- Note any outstanding approvals or data needed to complete the review.7071## Exit Criteria72- All TodoWrite items complete with concrete notes (commands run, files listed, evidence paths).73- Domain-specific review can now assume consistent context/evidence/deliverable scaffolding and focus on specialized analysis.74## Troubleshooting7576### Common Issues7778**Command not found**79Ensure all dependencies are installed and in PATH8081**Permission errors**82Check file permissions and run with appropriate privileges8384**Unexpected behavior**85Enable verbose logging with `--verbose` flag8687---88> Converted and distributed by [TomeVault](https://tomevault.io/claim/athola) — claim your Tome and manage your conversions.89<!-- tomevault:4.0:skill_md:2026-04-11 -->