| name | generate-stories |
| description | Translate a single Epic into clear, actionable User Stories with explicit acceptance criteria. Activate when an Epic is defined and work needs to be prepared for Delivery execution. |
| license | ELv2 |
| compatibility | Works with any filesystem-based AI coding agent |
| metadata | {"author":"gaai-framework","version":"1.0","category":"discovery","track":"discovery","id":"SKILL-GENERATE-STORIES-001","updated_at":"2026-05-31T00:00:00.000Z","status":"stable"} |
| inputs | [{"one_epic":"contexts/artefacts/epics/{id}.epic.md (the parent Epic file)"},"prd (optional)"] |
| outputs | ["contexts/artefacts/stories/*.md","contexts/backlog/active.backlog.yaml (mandatory — every story must be registered)"] |
Generate Stories
Purpose / When to Activate
Activate when:
- An Epic is defined
- Adding or refining functionality
- Preparing work items for AI implementation
Stories are the contract between Discovery and Delivery. They must be the main execution unit in GAAI.
Process
-
Read the Story template at contexts/artefacts/stories/_template.story.md. Read the parent Epic file. Derive story IDs using the parent Epic ID prefix (e.g., Epic E01 produces stories E01S01, E01S02, etc.).
CRITICAL — Decision Cross-Reference (MUST execute before writing any story):
- a) Extract keywords from the Epic scope and each story's intent (e.g., "email", "billing", "booking", "auth", "cron", "queue", "GCal", "GDPR").
- b) Scan the Decision Registry in
contexts/memory/index.md for DECs whose domain, title, or tags match these keywords. Use grep on contexts/memory/decisions/ if the registry table is insufficient.
- c) For each matching DEC, read the decision file and assess whether it constrains the story's implementation (e.g., a DEC may dictate how emails are sent, or how a recurring job is scheduled).
- d) List constraining DECs in the story's
related_decs frontmatter field. If a DEC imposes a specific implementation pattern (e.g., "all email via queues"), add an explicit AC referencing it (e.g., "AC-N: Email sent via queue per — no synchronous sendEmail() calls").
- e) If no DECs match, set
related_decs: [] explicitly — never leave the field empty by omission.
- Rationale: In a past project incident, a story created a synchronous helper despite a previously-active DEC explicitly prohibiting that pattern. Subsequent stories reused the helper, accumulating violations that went undetected for weeks because no cross-reference step existed between Epic intent and the active DEC registry.
CRITICAL — Collision Guard (MUST execute before writing any file):
- a) Obtain the next Story ID by invoking
.gaai/core/scripts/lib/allocate-id.sh story <epic_prefix> (where <epic_prefix> is
the parent Epic's ID, e.g. E220). This script serialises allocation under an exclusive
flock, accounts for IDs in both active.backlog.yaml and the host-stable reservation
ledger, and writes a reservation before returning. Never compute the next story number
by scanning the backlog manually — the allocator is the single authority. If the
allocator script is absent (fresh install), fall back to the scan-and-verify pattern as a
degraded mode with a stderr warning.
Before registering ANY story in the backlog, the Discovery Agent MUST execute both gates in sequence. Both gates MUST be invoked as isolated sub-agents (via the Agent tool) — never executed inline by the main Discovery agent, even if the main agent is the one that created the story. The author of a story cannot objectively validate its own work (Core Principle #5 — Independent Evaluation).
a) Format gate — invoke validate-artefacts (SKILL-VALIDATE-ARTEFACTS-001) as an isolated sub-agent. Provide the generated stories and their parent Epic. If verdict is BLOCKED, fix the flagged issues in the main agent and re-invoke the sub-agent until PASS.
b) Independent Review gate — invoke the Review Sub-Agent (SUB-AGENT-REVIEW-001) at the applicable tier. The Review Sub-Agent executes the review-story-alignment (SKILL-RSA-001) 3-pass process during Tier 2 review. Provide the stories + Epic + referenced DECs + Discovery Session Brief (if one was compiled). If no Session Brief exists, the reviewer runs in Tier 1 (DEC constraints + DoR + attestation + scope creep). If any story FAILs, the Discovery Agent resolves findings (from Brief + DECs) or escalates to the human, then re-invokes the reviewer. Maximum 2 review cycles — after that, all remaining findings escalate to the human.
Termination rule (founder-confirmed): After review cycle 2, if the only remaining findings are MEDIUM (or lower) and each names a specific deterministic fix the reviewer already prescribed, Discovery applies those fixes, re-verifies once (re-run the reviewer or a targeted self-check on the changed lines), and attests on a clean PASS. Only unresolved CRITICAL or HIGH findings — or any finding requiring a non-obvious judgment call — escalate to the human. The 2-cycle ceiling still caps full re-review rounds; the single post-cycle-2 surgical re-verify is not a third adversarial cycle.
These gates are sequential: format must PASS before the independent review runs.
No exceptions. Both gates run for every story creation or modification — regardless of batch size (1 story or 20), origin (full Epic session, bug triage, single amendment), or whether a Session Brief was compiled. For batch reviews (2+ stories), invoke a separate Review Sub-Agent per story to eliminate positional bias (see review.sub-agent.md § Positional bias mitigation).
A story registered in the backlog as refined without both gates passing via sub-agents is a governance violation. If this step is skipped, the commit message will lack gate evidence (e.g., "validate-artefacts: PASS, review[tier-2]: PASS"), which is detectable in review.
Rationale: (1) In a past incident, Discovery produced 14 stories and registered them as refined without running either gate — the gates were not in the skill's step list. (2) Later, Discovery self-validated both gates inline, using the "no Session Brief" skip condition to bypass the alignment gate entirely. In both cases, the main agent marked its own homework — no independent review occurred. This step closes both gaps by mandating sub-agent execution with no skip conditions. (3) Updated 2026-03-30: the alignment gate is now executed by the Review Sub-Agent (SUB-AGENT-REVIEW-001), enforcing Core Principle #5 (Independent Evaluation).
- MANDATORY — Epic dependency propagation (MUST execute before backlog registration).
- a) Read the parent Epic's
## Dependencies section. If it lists other Epics (e.g., "E39 must be complete before E40 starts"), identify the terminal stories of each listed Epic — the stories with the highest IDs or the ones that other stories in that Epic depend on.
- b) Every story in the current Epic MUST include at least one terminal story from each dependent Epic in its
depends_on list. This ensures the daemon cannot pick up stories from this Epic until the dependent Epic is fully delivered.
- c) If the parent Epic has no Dependencies or lists "None", skip this step.
- Rationale (2026-04-05): E40S02 was picked up by the daemon before E39 was complete because the phasing constraint ("E39 done before E40") was written in Epic prose but not encoded in story-level
depends_on. The daemon's scheduler reads depends_on, not Epic prose. Prose constraints that are not encoded in story dependencies are invisible to the daemon.
- MANDATORY — Register in backlog. After writing all story files, add each story to
contexts/backlog/active.backlog.yaml with:
id, epic, title (from story frontmatter)
status per gate state — STRICT:
status: draft if EITHER validate-artefacts OR Reviewer Tier 2 has not yet returned PASS (cycle 1 or 2) for this specific story. This is the default for any story registered before its own gates have completed.
status: refined ONLY after BOTH gates have returned PASS. Promote draft → refined as a separate backlog write (not bundled with the initial registration).
- Never register as
refined "for now" while still iterating — the delivery daemon polls active.backlog.yaml for refined items and dispatches them immediately, snapshotting whatever is in the worktree at dispatch time. Refined-while-iterating creates a race condition where un-reviewed cycle-0 drafts (with potentially CRITICAL-severity factual errors) can be picked up before cycle-1 corrections land.
- For batch Discovery (multiple stories drafted together): register all as
draft initially. Run gates per story (the sequencing rule of step 10 still applies). Promote each to refined individually once its own cycle ends in PASS. Never bulk-promote at the end of a batch.
priority (derived from Epic priority or explicit input)
artefact path pointing to the story file
dependencies (from story frontmatter depends_on or Epic execution order)
notes (source context — e.g., Discovery session date, governing DEC ; include gate trail once available)
- Pipeline-schema fields (MANDATORY when
cutover_state.default_pipeline at the top of active.backlog.yaml is 3phase):
phase_status: not_started — initial value for any new entry. The daemon's 3-phase dispatcher (refined → planned → implemented → qa_passed → done) reads this field on every poll. An entry without phase_status, or with phase_status: '', causes the daemon to fail with 3phase dispatch error at phase_status='' and leaves the entry stuck (the entry may also have its top-level status flipped to by the failed dispatch attempt before it errors out).
A story that exists only as an artefact file but is not in the backlog is invisible to Delivery and will never be executed. This step is non-negotiable.
Rationale (status lifecycle): A prior Discovery batch had stories rolled back from in_progress because they were registered as refined while Discovery was still iterating Reviewer cycle-1 corrections. The daemon picked up the un-reviewed drafts and began implementing architecturally wrong code based on factual errors that the Reviewer would have caught. The fix is strict adherence to the draft → refined lifecycle defined in base.rules.md § Backlog State Lifecycle — this clause makes the timing explicit at skill level.
Rationale (pipeline-schema fields): A Discovery batch registered new stories without phase_status + delivery_pipeline fields. The daemon picked up the first story at the next poll, marked its top-level status to in_progress, then errored out at the 3-phase dispatch step (phase_status=''), leaving the entry in a stuck state. Root cause : this skill predated the 3-phase pipeline schema (introduced via a foundational backlog migration story when projects flip cutover_state.default_pipeline to 3phase) and never enumerated the new mandatory fields in step 12. Mitigation : the bullet above now mandates both fields whenever cutover_state.default_pipeline = 3phase, with an explicit pointer to the failure mode so the skill author understands why the field is non-optional rather than nice-to-have.
CRITICAL — Backlog YAML write safety (MUST follow):
- Match native indentation. Before appending, check the existing format:
grep -m1 "^- id:" <backlog>. Use the same indent level (typically 0-space: - id: with 2-space properties).
- Never use
yaml.dump() to rewrite the file. It destroys comments, changes quotes, and alters indentation. Use line-by-line append or the scheduler (backlog-scheduler.sh --set-status, --set-field).
- Validate YAML after every write:
python3 -c "import yaml; yaml.safe_load(open('<backlog>'))". If validation fails, fix before committing.
- Rationale (2026-04-04): Mixed indentation from
cat >> heredoc (2-space items appended to a 0-space file) + yaml.dump() reformatting broke the backlog YAML, blocked the daemon, and required manual cleanup. These rules prevent recurrence.
- MANDATORY — Commit & push to staging (ATOMIC). After all story files are written and registered in the backlog, commit all generated/modified files and push to
staging in the same step. Commit without push is a violation — Delivery cannot pick up stories that exist only locally.
- Stage: story files (
contexts/artefacts/stories/*.story.md), backlog (contexts/backlog/active.backlog.yaml), and any other modified GAAI context files (memory, decisions, etc.)
- Commit message format:
chore(discovery): generate stories {id_range} for Epic {epic_id}
- Example:
chore(discovery): generate stories E01S01–E01S05 for Epic E01
- Push to
staging branch immediately after commit — never wait for human to request the push
- Rationale: In a past incident, Discovery committed a story but did not push. The human had to explicitly request the push. The commit and push are a single atomic operation — separating them defeats the purpose of this step.
Outputs
Template: contexts/artefacts/stories/_template.story.md
Produces files at contexts/artefacts/stories/{id}.story.md:
As a {user role},
I want {goal},
so that {benefit/value}.
Acceptance Criteria:
- [ ] Given {context}, when {action}, then {expected result}
Quality Checks
- Written from the user's perspective
- Acceptance criteria are explicit and testable
- No technical implementation detail in story body
- Each story maps to a single Epic
- Stories are independent and deliverable individually
- Each story file's frontmatter
id and related_backlog_id match the parent Epic's ID prefix
- Every generated story has a corresponding entry in
active.backlog.yaml — verify by counting story files vs backlog entries for this Epic. Mismatch = FAIL.
- No existing story file was overwritten with a different Epic's content — verify each written file's
epic frontmatter matches the intended Epic. Mismatch = CRITICAL FAILURE.
- Every story has a
related_decs field in frontmatter — either a non-empty list of constraining DECs, or an explicit empty list []. Missing field = FAIL. Stories touching email, billing, booking, auth, or infrastructure domains with related_decs: [] should be double-checked — these domains have the highest DEC density.
Non-Goals
This skill must NOT:
- Define architecture or implementation approach
- Generate Epics (use
generate-epics)
- Produce stories without a parent Epic
Stories are the contract. Ambiguous stories produce ambiguous software.