IF Design Progression
Overview
Use this skill to make the game progression playable. It turns map and dialogue ideas into explicit obstacles, requirements, grants, and completion paths so the player can explore freely without impossible locks or accidental linearity.
Files To Read
Always read:
story.yaml04_design/story_beats.md04_design/critical_path.md04_design/state_model.md04_design/locations.yaml04_design/dialogue_matrix.md
Read when relevant:
03_characters/*04_design/progression.yaml07_continuity/*
Files To Write
Write or update:
04_design/progression.yaml04_design/critical_path.md04_design/state_model.md
Progression Model
Use stable IDs and structured records. Each obstacle should capture:
id;typesuch asknowledge,inventory,skill,relationship,location, orworld_state;description;requires;grants;location_scope;character_scope;critical_path;fallback_route;status.
Language Rules
Keep IDs, filenames, and YAML keys in English. Write human-readable values in story.language.
Procedure
- Extract all implied blockers from map, dialogue, and critical path files.
- Convert each blocker into explicit requirements and grants.
- Verify that critical path progress can be achieved through at least one understandable route.
- Add alternate routes for critical knowledge when the design calls for open exploration.
- Identify soft locks, circular dependencies, and unlocks that do not change play.
- Update the state model with the minimum variables needed for Ink implementation.
Output
Provide:
- progression summary;
- critical path requirements;
- optional unlocks;
- detected dependency risks;
- recommended next step, usually
if-plan-ink-slice.
Restrictions
- Do not write Ink source here.
- Do not leave dependencies only in prose.
- Do not create a required clue or item with no obtainable source.