askill
openspec-reflect

openspec-reflectSafety 95Repository

Pre-gate self-check for drift detection and philosophy alignment. Use when: preparing for human gate review, checking implementation quality, or detecting scope drift.

4 stars
1.2k downloads
Updated 3/3/2026

Package Files

Loading files...
SKILL.md

OpenSpec Reflect

Pre-gate self-check skill. Verifies acceptance criteria, detects scope drift, and ensures philosophy alignment before human review.

Workflow: Check → Assess → Report

flowchart LR
    A["Read context"] --> B["Check criteria"]
    B --> C["Detect drift"]
    C --> D["Check philosophy"]
    D --> E["Self-assess"]
    E --> F["Generate report"]

    classDef action fill:#E1BEE7,stroke:#7B1FA2,color:#000
    class A,B,C,D,E,F action

Critical: Run before human gates. Catches drift BEFORE human reviews.

Commands

reflect

Run comprehensive pre-gate self-check.

Input: $ARGUMENTS = change-id

Workflow:

  1. Load context:

    • Read openspec/changes/{change-id}/proposal.md for acceptance criteria
    • Read openspec/changes/{change-id}/tasks.md for progress
    • Read openspec/changes/{change-id}/test.md for test strategy (if exists)
    • Read openspec/changes/{change-id}/specs/*.md for requirements
    • Read openspec/project.md for Execution Philosophy
  2. Pre-gate check (scale/maintenance mode only):

    • Check if test.md exists
    • If missing in scale/maintenance mode: flag ⚠️ MISSING_TEST_MD deviation
    • In garage mode: test.md optional (note if missing, don't block)
  3. Check acceptance criteria:

    • Extract criteria from proposal.md (Success Criteria section)
    • For each criterion: verify met/unmet/partial
    • Record evidence for each status
  4. Detect scope drift:

    • Extract "Affected files" from proposal.md
    • Run git status and git diff --stat to find actual changes
    • Calculate deviation percentage: (actual - proposed) / proposed * 100
    • Flag if >20% deviation
  5. Check philosophy alignment:

    • Read mode from Execution Philosophy
    • Review implementation for anti-patterns of current mode
    • Flag any violations
  6. Self-assessment:

    • Answer: "Am I solving the right problem?"
    • Evaluate: Is work aligned with proposal's Problem statement?
  7. Generate gate-ready report (see format below)

Guardrails

Autonomous (no confirmation needed):

  • Reading all context files
  • Analyzing implementation
  • Generating reports
  • Flagging deviations

Ask-first (pause and confirm):

  • None - reflect is read-only and advisory

Philosophy Check

Read openspec/project.md → Execution Philosophy → mode.

ModeFlag Anti-patterns
garageOver-engineering, premature abstraction, analysis paralysis
scaleCowboy coding, skipping tests, undocumented decisions
maintenanceRefactoring for aesthetics, feature creep, risky upgrades

Format: ⚠️ PHILOSOPHY VIOLATION ({mode}) - {anti-pattern}: {evidence}

Gate-Ready Report Format

# Reflection Report: {change-id}

## Test Strategy Coverage
- test.md: {present/missing}
- Mode: {mode}
{if missing + scale/maintenance: ⚠️ MISSING_TEST_MD - required for {mode} mode}
{if missing + garage: ℹ️ test.md optional in garage mode}
{if present: - Coverage: {summary of test.md sections}}

## Criteria Status
| Criterion | Status | Evidence |
|-----------|--------|----------|
| {criterion 1} | {met/unmet/partial} | {evidence} |
| {criterion 2} | {met/unmet/partial} | {evidence} |

## Scope Analysis
- Proposed files: {n}
- Actual files: {m}
- Deviation: {percent}%
{if >20%: ⚠️ SCOPE DRIFT DETECTED - requires human review}

## Philosophy Alignment
- Mode: {mode}
- Anti-patterns detected: {list or "None"}
{if violations: ⚠️ PHILOSOPHY VIOLATION - {details}}

## Self-Assessment
**Question**: Am I solving the right problem?
**Answer**: {assessment based on proposal's Problem statement}

## Deviations Requiring Attention
{list with ⚠️ emoji for each, or "None"}

## Recommendation
{READY FOR GATE | NOT READY - {reasons}}

Deviation Types

  • MISSING_TEST_MD - test.md missing in scale/maintenance mode
  • SCOPE_DRIFT - Files changed exceed proposal by >20%
  • CRITERIA_UNMET - Acceptance criterion not satisfied
  • PHILOSOPHY_VIOLATION - Anti-pattern for current mode
  • SPEC_DEVIATION - Implementation differs from specs

Format: ⚠️ DEVIATION: {type} - Expected: {X}, Actual: {Y}, Impact: {Z}, Rec: {action}

See reference.md for detailed examples and patterns.

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

82/100Analyzed 2/19/2026

Well-structured pre-gate self-check skill with clear workflow, comprehensive documentation, and useful tools for drift detection and philosophy alignment. Strong actionability and safety scores due to detailed step-by-step commands and read-only nature. Main limitation is reusability - heavily tied to specific openspec project structure and methodology. Benefits from tags, structured steps, mermaid diagram, and reference-style technical content. Located in dedicated skills folder which is a bonus."

95
90
60
85
85

Metadata

Licenseunknown
Version-
Updated3/3/2026
Publisherdigital-stoic-org

Tags

github-actionstesting