enrich-and-review

Enforce review gates and update tracker statuses across plan-stub enrichment pipelines.

5|2|Updated Mar 20, 2026
One-click install
npx skills add https://github.com/dbc-oduffy/coordinator-claude --skill enrich-and-review
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: enrich-and-review
Source: https://github.com/dbc-oduffy/coordinator-claude/tree/main/plugins/coordinator/skills/enrich-and-review
Command: npx skills add https://github.com/dbc-oduffy/coordinator-claude --skill enrich-and-review

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill prevents wasted cycles by ensuring plan stubs are review-gated, then enriched with correct implementation context and verified by sequential domain and generalist reviewers.

Core Features & Use Cases

  • Review-gated enrichment: Halts enrichment until the plan document shows an approved review marker in the header, avoiding enrichment on unreviewed or invalid plans.
  • Stub discovery and classification: Finds tracker entries marked for enrichment and classifies them into survey-type, plan-type, or manual items so work can be routed correctly.
  • Dependency-aware sequencing: Detects overlapping file scope across stubs and forces sequential enrichment when stubs share files to reduce conflicts and inconsistencies.
  • Write-ahead tracker safety: Performs a WAL-style status update from Pending enrichment to Enrichment in progress before agents run, improving crash resilience and traceability.
  • Enricher dispatch + coordinator flag resolution + dual review: Runs Sonnet enrichers, resolves NEEDS_COORDINATOR flags, updates statuses, and dispatches reviewers in order (optionally with explicit reviewer overrides) while enforcing an apply-everything gate.

Quick Start

Run enrich-and-review on your chunk directory by providing the target path as the argument, then wait for stubs to be enriched, reviewed, and marked ready for execution.

Frequently Asked Questions about enrich-and-review

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I enrich plan stubs and validate implementation decisions?

To enrich plan stubs and validate decisions, run enrich-and-review on your chunk directory path. It enforces a prior review gate, dispatches Sonnet agents for enrichment, and sequences domain reviewers to verify the output. You get review-gated, fully validated plan stubs ready for execution.

What is dependency-aware sequencing for plan stub workflows?

Dependency-aware sequencing detects overlapping file scope across plan stubs and forces sequential enrichment when stubs share files. This mechanism reduces conflicts and inconsistencies by preventing concurrent agents from modifying the same files during the stub enrichment process.

How does write-ahead tracker status work for agent orchestration?

Write-ahead tracker status performs a WAL-style transition from Pending enrichment to Enrichment in progress before agents run. This improves crash resilience and traceability by recording the state change safely before executing the actual enrichment and review pipeline.

Can I use sequential QA review with existing repo maps?

Yes, sequential QA review integrates with existing repo maps through optional repo-map generation gating. The pipeline dispatches reviewers in order, resolves NEEDS_COORDINATOR flags, and enforces an apply-everything gate to validate fixes during the sequential review process.

Why does my plan stub enrichment halt before agents run?

Plan stub enrichment halts because the pipeline enforces a review gate requiring an approved review marker in the plan document header. This prevents wasted cycles by avoiding enrichment on unreviewed or invalid plans before dispatching Sonnet agents.