propagate-design-change

Featured

When a GDD is revised, scans all ADRs and the traceability index to identify which architectural decisions are now potentially stale. Produces a change impact report and guides the user through resolution.

Web & Frontend 66 stars 7 forks Updated 4 days ago MIT

Install

View on GitHub

Quality Score: 91/100

Stars 20%
61
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Propagate Design Change When a GDD changes, architectural decisions written against it may no longer be valid. This skill finds every affected ADR, compares what the ADR assumed against what the GDD now says, and guides the user through resolution. **Usage:** `/propagate-design-change design/gdd/combat-system.md` --- ## 1. Validate Argument A GDD path argument is **required**. If missing, fail with: > "Usage: `/propagate-design-change design/gdd/[system].md` > Provide the path to the GDD that was changed." Verify the file exists. If not, fail with: > "[path] not found. Check the path and try again." --- ## 2. Read the Changed GDD Read the current GDD in full. --- ## 3. Read the Previous Version Run git to get the previous committed version: ```bash git show HEAD:design/gdd/[filename].md ``` If the file has no git history (new file), report: > "No previous version in git — this appears to be a new GDD, not a revision. > Nothing to propagate." If git returns the previous version, do a conceptual diff: - Identify sections that changed (new rules, removed rules, modified formulas, changed acceptance criteria, changed tuning knobs) - Identify sections that are unchanged - Produce a change summary: ``` ## Change Summary: [GDD filename] Date of revision: [today] Changed sections: - [Section name]: [what changed — new rule, removed rule, formula modified, etc.] Unchanged sections: - [Section name] Key changes affecting architecture: - [Change 1 — likely to affe...

Details

Author
striderZA
Repository
striderZA/OpenCodeGameStudios
Created
2 months ago
Last Updated
4 days ago
Language
JavaScript
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category