Skip to content
Checklist

Ingest Scan

Ingest scan phase quality gate — verifies codebase overview was produced

Checks

CheckDescriptionTypeBlocking
codebase_overview_existsCodebase overview document existsFile existsYes
overview_has_structureOverview includes project structure sectionPattern matchNo

Raw Definition

18 lines
yaml
name: ingest-scan
description: Ingest scan phase quality gate — verifies codebase overview was produced

checks:
  - id: codebase_overview_exists
    description: Codebase overview document exists
    check: file:.sniper/artifacts/codebase-overview.md
    blocking: true

  - id: overview_has_structure
    description: Overview includes project structure section
    check: grep:.sniper/artifacts/codebase-overview.md:"## "
    blocking: false

  - id: overview_nonempty
    description: Overview is not a stub (at least 50 lines)
    command: "test $(wc -l < .sniper/artifacts/codebase-overview.md) -ge 50"
    blocking: false