mirror of
https://github.com/Donchitos/Claude-Code-Game-Studios.git
synced 2026-06-27 04:51:46 +00:00
Session memory extraction + tiered context loading improvements
- /review-all-gdds, /architecture-review, /story-done: auto-append Session Extract block to active.md after report write (verdict, flags, next action) - /review-all-gdds, /architecture-review, /create-epics-stories, /content-audit: L0 summary scan phase before full document load (reduces token cost) - GDD template: added Summary section + Cross-References table + Last Verified field - ADR template: added Summary section + Last Verified field Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -22,10 +22,20 @@ Parse the argument:
|
||||
1. **Read `design/gdd/systems-index.md`** for the full list of systems, their
|
||||
categories, and MVP/priority tier.
|
||||
|
||||
2. **Read all GDD files** in `design/gdd/` (or the single system GDD if a
|
||||
system name was given).
|
||||
2. **L0 pre-scan**: Before full-reading any GDDs, Grep all GDD files for
|
||||
`## Summary` sections plus common content-count keywords:
|
||||
```
|
||||
Grep pattern="(## Summary|N enemies|N levels|N items|N abilities|enemy types|item types)" glob="design/gdd/*.md" output_mode="files_with_matches"
|
||||
```
|
||||
For a single-system audit: skip this step and go straight to full-read.
|
||||
For a full audit: full-read only the GDDs that matched content-count keywords.
|
||||
GDDs with no content-count language (pure mechanics GDDs) are noted as
|
||||
"No auditable content counts" without a full read.
|
||||
|
||||
3. **For each GDD, extract explicit content counts or lists.** Look for patterns
|
||||
3. **Full-read in-scope GDD files** (or the single system GDD if a system
|
||||
name was given).
|
||||
|
||||
4. **For each GDD, extract explicit content counts or lists.** Look for patterns
|
||||
like:
|
||||
- "N enemies" / "enemy types:" / list of named enemies
|
||||
- "N levels" / "N areas" / "N maps" / "N stages"
|
||||
|
||||
Reference in New Issue
Block a user