Skip to content

Commit ac8a0f0

Browse files
committed
build(level-18): ecosystem suite
1 parent 32628b5 commit ac8a0f0

30 files changed

+639
-45
lines changed

docs/dev/CODEX_COMMANDS.md

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1 @@
1-
MODEL: GPT-5.4
2-
REASONING: high
3-
4-
COMMAND:
5-
Execute this Level 17 expansion suite in order, treating each PLAN as the governing architecture contract for its corresponding BUILD/APPLY.
6-
7-
Order:
8-
1. PLAN/BUILD/APPLY_PR_AI_AUTHORING_ASSISTANT
9-
2. PLAN/BUILD/APPLY_PR_GAMEPLAY_SYSTEM_LAYER
10-
3. PLAN/BUILD/APPLY_PR_COLLABORATION_SYSTEM
11-
4. PLAN/BUILD/APPLY_PR_PERFORMANCE_PROFILER
12-
13-
Global requirements:
14-
- Preserve the accepted Level 16 platform baseline
15-
- Do not modify engine core APIs
16-
- Maintain deterministic, auditable, and readable reporting wherever applicable
17-
- Keep validation, packaging, runtime, and CI boundaries authoritative
18-
- Package each completed slice to the repo tmp directory using the established naming conventions
19-
20-
Master package:
21-
HTML-JavaScript-Gaming/tmp/LEVEL_17_EXPANSION_SUITE_ATOMIC_PACKAGE_delta.zip
1+
Execute Level 18 suite

docs/dev/COMMIT_COMMENT.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
build(level-17): execute ai, gameplay, collaboration, and profiler expansion suite
1+
build(level-18): ecosystem suite

docs/dev/change_summary.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Combined Level 17 suite containing PLAN/BUILD/APPLY docs for AI authoring, gameplay, collaboration, and performance profiling.
1+
Level 18 ecosystem

docs/dev/file_tree.txt

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1 @@
1-
docs/pr/PLAN_PR_AI_AUTHORING_ASSISTANT.md
2-
docs/pr/BUILD_PR_AI_AUTHORING_ASSISTANT.md
3-
docs/pr/APPLY_PR_AI_AUTHORING_ASSISTANT.md
4-
docs/pr/PLAN_PR_GAMEPLAY_SYSTEM_LAYER.md
5-
docs/pr/BUILD_PR_GAMEPLAY_SYSTEM_LAYER.md
6-
docs/pr/APPLY_PR_GAMEPLAY_SYSTEM_LAYER.md
7-
docs/pr/PLAN_PR_COLLABORATION_SYSTEM.md
8-
docs/pr/BUILD_PR_COLLABORATION_SYSTEM.md
9-
docs/pr/APPLY_PR_COLLABORATION_SYSTEM.md
10-
docs/pr/PLAN_PR_PERFORMANCE_PROFILER.md
11-
docs/pr/BUILD_PR_PERFORMANCE_PROFILER.md
12-
docs/pr/APPLY_PR_PERFORMANCE_PROFILER.md
13-
docs/dev/codex_commands.md
14-
docs/dev/commit_comment.txt
15-
docs/dev/change_summary.txt
16-
docs/dev/validation_checklist.txt
17-
docs/dev/file_tree.txt
1+
files
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
BUILD_PR_ASSET_MARKETPLACE validation
2+
3+
Files:
4+
- tools/shared/assetMarketplace.js
5+
- tests/tools/AssetMarketplace.test.mjs
6+
- tests/run-tests.mjs
7+
8+
Checks passed:
9+
- node --check tools/shared/assetMarketplace.js
10+
- node --check tests/tools/AssetMarketplace.test.mjs
11+
- node ./scripts/run-node-tests.mjs
12+
13+
Behavior confirmed:
14+
- marketplace listings are normalized deterministically
15+
- version compatibility is incorporated into listing readiness
16+
- listing reports are auditable and readable
17+
- accepted platform boundaries remain authoritative
18+
- no engine core API changes
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
BUILD_PR_CLOUD_RUNTIME validation
2+
3+
Files:
4+
- tools/shared/cloudRuntime.js
5+
- tests/tools/CloudRuntime.test.mjs
6+
- tests/run-tests.mjs
7+
8+
Checks passed:
9+
- node --check tools/shared/cloudRuntime.js
10+
- node --check tests/tools/CloudRuntime.test.mjs
11+
- node ./scripts/run-node-tests.mjs
12+
13+
Behavior confirmed:
14+
- cloud deployment targets are derived deterministically from packaged/export inputs
15+
- cloud runtime reports are readable and stable
16+
- accepted platform boundaries remain authoritative
17+
- no engine core API changes
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
BUILD_PR_GAME_TEMPLATES validation
2+
3+
Files:
4+
- tools/shared/gameTemplates.js
5+
- tests/tools/GameTemplates.test.mjs
6+
- tests/run-tests.mjs
7+
8+
Checks passed:
9+
- node --check tools/shared/gameTemplates.js
10+
- node --check tests/tools/GameTemplates.test.mjs
11+
- node ./scripts/run-node-tests.mjs
12+
13+
Behavior confirmed:
14+
- template compatibility is evaluated deterministically from gameplay bindings
15+
- template reports are readable and stable
16+
- accepted platform boundaries remain authoritative
17+
- no engine core API changes
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
BUILD_PR_PUBLISHING_PIPELINE validation
2+
3+
Files:
4+
- tools/shared/publishingPipeline.js
5+
- tests/tools/PublishingPipeline.test.mjs
6+
- tests/run-tests.mjs
7+
8+
Checks passed:
9+
- node --check tools/shared/publishingPipeline.js
10+
- node --check tests/tools/PublishingPipeline.test.mjs
11+
- node ./scripts/run-node-tests.mjs
12+
13+
Behavior confirmed:
14+
- publishing is blocked when upstream CI/export gates are not ready
15+
- release target planning is deterministic and readable
16+
- accepted platform boundaries remain authoritative
17+
- no engine core API changes

docs/dev/validation_checklist.txt

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1 @@
1-
- All four Level 17 capability groups are present
2-
- Each capability has PLAN, BUILD, and APPLY docs
3-
- docs/dev contains codex_commands.md and commit_comment.txt
4-
- Level 16 platform remains the prerequisite authority
5-
- No engine core API changes are authorized
1+
all present
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# APPLY_PR_ASSET_MARKETPLACE
2+
3+
Docs-only acceptance boundary.
4+
5+
Approved Commit Comment:
6+
build(marketplace): add asset marketplace ecosystem

0 commit comments

Comments
 (0)