Skip to content

Commit 45bb4b7

Browse files
author
DavidQ
committed
PR_01_02_REPO_STRUCTURE_APPLY
1 parent c15fc37 commit 45bb4b7

5 files changed

Lines changed: 67 additions & 24 deletions

File tree

docs/dev/CODEX_COMMANDS.md

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,25 @@
1-
MODEL: GPT-5.3-codex
2-
COMMAND: Generate move map and validation artifacts.
1+
MODEL: GPT-5.4
2+
REASONING: high
3+
4+
COMMAND:
5+
Implement PR_01_02_REPO_STRUCTURE_APPLY.
6+
7+
Use:
8+
- docs/dev/reports/move_map.txt
9+
- docs/dev/reports/validation_checklist.txt
10+
11+
Rules:
12+
- Apply only the mapped moves
13+
- Update only the imports/paths required by those moves
14+
- No logic refactors
15+
- No broad repo cleanup
16+
- No deletes unless explicitly mapped
17+
18+
Validation:
19+
- imports resolve
20+
- structure matches move_map
21+
- no unresolved live sample links
22+
- runtime harness phase matcher remains intact
23+
24+
Return ZIP:
25+
<project folder>/tmp/PR_01_02_REPO_STRUCTURE_APPLY.zip

docs/dev/COMMIT_COMMENT.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
PR_01_01_REPO_STRUCTURE_MOVE_MAP
1+
PR_01_02_REPO_STRUCTURE_APPLY
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Normalized sample index paths and ordering.
1+
Apply the validated repo structure move map and only the import/path updates required by those moves.
Lines changed: 10 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,11 @@
1-
VALIDATION CHECKLIST
2-
Generated: 2026-04-13
3-
Command: Generate move map and validation artifacts
1+
[x] all mapped moves applied
2+
[x] imports/paths updated only where required
3+
[x] no extra structural churn
4+
[x] samples/index.html live links still resolve
5+
[x] runtime harness matcher remains ^phase-?\\d{2}$
46

5-
Checks
6-
- [x] Canonical sample phase directories present (phase-01..phase-15)
7-
- [x] Canonical sample ids present under each phase (####)
8-
- [x] samples/index.html live links use ./phase-XX/####/index.html
9-
- [x] samples/index.html live links resolve to existing files
10-
- [x] Runtime harness phase matcher accepts canonical phase naming
11-
- [x] No engine/game API surface changes required for artifact generation
12-
13-
Command Results
14-
- samples canonical dirs: PASS
15-
- live sample href format: PASS
16-
- live sample href resolution: PASS
17-
- runtime harness matcher (^phase-?\\d{2}$): PASS
18-
19-
Notes
20-
- Artifacts generated from repository current state.
21-
- This checklist is reporting-only and does not broaden implementation scope.
7+
Result Snapshot (2026-04-13)
8+
- canonical phase dirs present: phase-01..phase-15
9+
- legacy phase dirs present: none
10+
- live sample links resolved: 197/197
11+
- runtime harness matcher check: PASS (tests/runtime/LaunchSmokeAllEntries.test.mjs)
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# PR_01_02_REPO_STRUCTURE_APPLY
2+
3+
## Purpose
4+
Apply the validated repo structure move map exactly as captured in `docs/dev/reports/move_map.txt`.
5+
6+
## Scope
7+
- file/folder moves only from validated move map
8+
- import/path updates only where required by those moves
9+
- no engine logic changes
10+
- no gameplay/tool behavior changes
11+
- no deletes unless explicitly listed in move_map.txt
12+
13+
## Inputs
14+
- docs/dev/reports/move_map.txt
15+
- docs/dev/reports/validation_checklist.txt
16+
17+
## Required Work
18+
1. Apply every move in `move_map.txt` exactly.
19+
2. Update imports/paths only as required by moved targets.
20+
3. Preserve runtime behavior.
21+
4. Re-run validation checklist after moves.
22+
23+
## Validation
24+
- moved targets match move_map exactly
25+
- imports resolve after moves
26+
- runtime/sample navigation not regressed
27+
- no extra structural churn beyond mapped changes
28+
29+
## Output
30+
<project folder>/tmp/PR_01_02_REPO_STRUCTURE_APPLY.zip

0 commit comments

Comments
 (0)