Delivery Readiness Audit
Purpose / When to Activate
Activate via /gaai-status --audit. This skill runs after the standard status sections (1–4) have already identified delivery-ready stories, memory staleness, and framework health.
This skill adds two depth checks that standard status skips for speed:
- AC internal consistency — catches missing columns, undeclared endpoints, broken cross-references within a story
- Pending revisions — catches deferred work flagged in backlog notes but not yet captured as stories
Process
1. AC internal consistency — spot-check READY stories
For each story identified as "ready to deliver" by Section 1:
- Open the story artefact file
- Build an inventory of all resources declared by schema/setup ACs: columns, tables, endpoints, queues, secrets, cron triggers
- Scan all other ACs for resources referenced but not in the inventory
- Flag any reference to a column, endpoint, queue, table, or resource that is not declared elsewhere in the same story
Example of what this catches:
- AC5 uses
orders.cancelled_at for filtering, but AC4 (schema migration) doesn't list that column
- AC7 references
users.api_token but it's missing from the migration
Severity: CRITICAL if it would cause the Delivery Agent to produce incomplete code.
2. Pending revisions scan
Scan all backlog item notes fields for patterns indicating unresolved work:
Patterns to match:
- "will be revised", "pending revision", "needs review"
- "story to generate", "story E0xS0x to generate", "to be created"
- "TODO", "to replace", "to migrate", "needs update"
DEC- references followed by a pending action description
For each match:
- State the backlog item ID, the DEC reference (if any), and the pending action
- Check whether a corresponding story already exists in the backlog
- Flag as IMPORTANT if no story exists yet
3. Delivery verdict
Produce a summary:
- Count of stories truly ready (all deps met + ACs internally consistent)
- Count of issues by severity (CRITICAL / IMPORTANT / MINOR)
- Verdict: READY FOR DELIVERY (0 critical issues) or ISSUES TO RESOLVE FIRST (list critical issues)
For issues safe to correct (missing AC metadata, column alignment), list them as "auto-fixable" in the report. Discovery or the human decides whether to apply fixes — this skill reports only.
Output Format
### Section 5 — Delivery Readiness
**5a. AC Consistency (READY stories)**
| Story | Issue | Severity |
|---|---|---|
| E01S03 | AC5 uses `orders.cancelled_at` — missing from AC4 migration | CRITICAL |
Verdict: PASS | N issues found
**5b. Pending Revisions**
| Backlog Item | DEC | Pending Action | Story Exists? |
|---|---|---|---|
| E02S04 | DEC-{N} | auth middleware refactor to support RBAC | No |
**5c. Delivery Verdict**
N stories ready. M critical, K important issues.
READY FOR DELIVERY | ISSUES TO RESOLVE FIRST
Quality Checks
- Every finding references a specific story ID, AC number, and resource name
- No vague findings ("something might be wrong" is invalid)
- Severity is explicit: CRITICAL (blocks Delivery), IMPORTANT (should fix), MINOR (cosmetic)
- No false positives — only flag cross-references that are genuinely missing
- The report is additive to standard status — never repeats Sections 1–4
Non-Goals
This skill must NOT:
- Repeat checks already done by
/gaai-status Sections 1–4 (staleness, dependency graph, backlog counts)
- Fix issues (report only — Discovery or human decides)
- Rewrite artefacts or memory
- Make prioritization decisions about delivery order
If an AC can't survive a cross-reference check, Delivery will produce broken code. Catch it here.
1---2name: delivery-readiness-audit3description: Spot-check AC internal consistency and scan for pending revisions on delivery-ready stories. Activated by `/gaai-status --audit` as Section 5. Complements the standard status checks with depth checks that standard status skips for speed.4license: ELv25---67# Delivery Readiness Audit89## Purpose / When to Activate1011Activate via `/gaai-status --audit`. This skill runs **after** the standard status sections (1–4) have already identified delivery-ready stories, memory staleness, and framework health.1213This skill adds two depth checks that standard status skips for speed:14- **AC internal consistency** — catches missing columns, undeclared endpoints, broken cross-references within a story15- **Pending revisions** — catches deferred work flagged in backlog notes but not yet captured as stories1617---1819## Process2021### 1. AC internal consistency — spot-check READY stories2223For each story identified as "ready to deliver" by Section 1:24251. Open the story artefact file262. Build an inventory of all resources **declared** by schema/setup ACs: columns, tables, endpoints, queues, secrets, cron triggers273. Scan all other ACs for resources **referenced** but not in the inventory284. Flag any reference to a column, endpoint, queue, table, or resource that is not declared elsewhere in the same story2930**Example of what this catches:**31- AC5 uses `orders.cancelled_at` for filtering, but AC4 (schema migration) doesn't list that column32- AC7 references `users.api_token` but it's missing from the migration3334Severity: CRITICAL if it would cause the Delivery Agent to produce incomplete code.3536### 2. Pending revisions scan3738Scan all backlog item `notes` fields for patterns indicating unresolved work:3940**Patterns to match:**41- "will be revised", "pending revision", "needs review"42- "story to generate", "story E0xS0x to generate", "to be created"43- "TODO", "to replace", "to migrate", "needs update"44- `DEC-` references followed by a pending action description4546For each match:47- State the backlog item ID, the DEC reference (if any), and the pending action48- Check whether a corresponding story already exists in the backlog49- Flag as IMPORTANT if no story exists yet5051### 3. Delivery verdict5253Produce a summary:54- Count of stories truly ready (all deps met + ACs internally consistent)55- Count of issues by severity (CRITICAL / IMPORTANT / MINOR)56- Verdict: **READY FOR DELIVERY** (0 critical issues) or **ISSUES TO RESOLVE FIRST** (list critical issues)5758For issues safe to correct (missing AC metadata, column alignment), list them as "auto-fixable" in the report. Discovery or the human decides whether to apply fixes — this skill reports only.5960---6162## Output Format6364```65### Section 5 — Delivery Readiness6667**5a. AC Consistency (READY stories)**6869| Story | Issue | Severity |70|---|---|---|71| E01S03 | AC5 uses `orders.cancelled_at` — missing from AC4 migration | CRITICAL |7273Verdict: PASS | N issues found7475**5b. Pending Revisions**7677| Backlog Item | DEC | Pending Action | Story Exists? |78|---|---|---|---|79| E02S04 | DEC-{N} | auth middleware refactor to support RBAC | No |8081**5c. Delivery Verdict**8283N stories ready. M critical, K important issues.84READY FOR DELIVERY | ISSUES TO RESOLVE FIRST85```8687---8889## Quality Checks9091- Every finding references a specific story ID, AC number, and resource name92- No vague findings ("something might be wrong" is invalid)93- Severity is explicit: CRITICAL (blocks Delivery), IMPORTANT (should fix), MINOR (cosmetic)94- No false positives — only flag cross-references that are genuinely missing95- The report is additive to standard status — never repeats Sections 1–49697---9899## Non-Goals100101This skill must NOT:102- Repeat checks already done by `/gaai-status` Sections 1–4 (staleness, dependency graph, backlog counts)103- Fix issues (report only — Discovery or human decides)104- Rewrite artefacts or memory105- Make prioritization decisions about delivery order106107**If an AC can't survive a cross-reference check, Delivery will produce broken code. Catch it here.**