ogt-docs-audit-task
Installation
SKILL.md
OGT Docs - Audit Task
Verify that completed tasks actually have working implementations in the codebase.
Overview
Tasks in docs/todo/done/ claim to be complete. This skill verifies those claims by checking that the implementation actually exists and works. Unverified tasks are moved back to pending/ for re-implementation.
flowchart LR
subgraph audit ["Audit Process"]
direction TB
A[Read task.md] --> B[Extract Acceptance Criteria]
B --> C[Verify Each Criterion]
C --> D{All Pass?}
D -->|Yes| E[Mark Verified]
D -->|No| F[Move to pending/]
end