Skip to content

Commit f604e5f

Browse files
author
DavidQ
committed
Validate template loads without errors
1 parent 1fe8b29 commit f604e5f

7 files changed

Lines changed: 47 additions & 6 deletions

File tree

docs/dev/CODEX_COMMANDS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
MODEL: GPT-5.4-codex
22
REASONING: medium
33
COMMAND:
4-
Execute docs/pr/BUILD_PR_GAMES_78_TEMPLATE_FLOW_WIRING.md exactly.
5-
Package to <project folder>/tmp/BUILD_PR_GAMES_78_TEMPLATE_FLOW_WIRING_delta.zip
4+
Execute docs/pr/BUILD_PR_GAMES_80_TEMPLATE_VALIDATION.md exactly.
5+
Package to <project folder>/tmp/BUILD_PR_GAMES_80_TEMPLATE_VALIDATION_delta.zip

docs/dev/COMMIT_COMMENT.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Wire minimal flow structure in template (no game impact)
1+
Validate template loads without errors
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Wire minimal flow structure in template (no game impact)
1+
Validate template loads without errors

docs/dev/reports/file_tree.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
games/_template/index.js
2-
games/_template/flow/*
1+
games/_template/*
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# BUILD_PR_GAMES_79_TEMPLATE_README_AND_USAGE
2+
3+
Purpose:
4+
Add usage doc for template (non-runtime)
5+
6+
Files:
7+
games/_template/README.md
8+
9+
Constraints:
10+
- exact files only
11+
- no refactor
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# BUILD_PR_GAMES_80_TEMPLATE_VALIDATION
2+
3+
Purpose:
4+
Validate template loads without errors
5+
6+
Files:
7+
games/_template/*
8+
9+
Constraints:
10+
- exact files only
11+
- no refactor

games/_template/README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Games Template
2+
3+
This folder is a minimal starting point for a new game scaffold.
4+
5+
## Included Files
6+
7+
- `index.js`: exports the template flow map.
8+
- `flow/attract.js`: placeholder attract flow descriptor.
9+
- `flow/intro.js`: placeholder intro flow descriptor.
10+
11+
## Usage
12+
13+
Import the template flow map and replace placeholders as your game wiring is introduced.
14+
15+
```js
16+
import templateFlow from "./index.js";
17+
18+
// templateFlow.attract
19+
// templateFlow.intro
20+
```

0 commit comments

Comments
 (0)