@bmad/bmad-game-dev-studio 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.markdownlint-cli2.yaml +35 -0
- package/.nvmrc +1 -0
- package/.prettierignore +9 -0
- package/LICENSE +26 -0
- package/README.md +119 -0
- package/eslint.config.mjs +152 -0
- package/package.json +91 -0
- package/prettier.config.mjs +32 -0
- package/src/_module-installer/installer.js +110 -0
- package/src/_module-installer/platform-specifics/claude-code.js +23 -0
- package/src/_module-installer/platform-specifics/windsurf.js +18 -0
- package/src/agents/game-architect.agent.yaml +40 -0
- package/src/agents/game-designer.agent.yaml +45 -0
- package/src/agents/game-dev.agent.yaml +49 -0
- package/src/agents/game-qa.agent.yaml +63 -0
- package/src/agents/game-scrum-master.agent.yaml +56 -0
- package/src/agents/game-solo-dev.agent.yaml +49 -0
- package/src/agents/tech-writer/tech-writer.agent.yaml +45 -0
- package/src/gametest/qa-index.csv +18 -0
- package/src/module-help.csv +26 -0
- package/src/module.yaml +65 -0
- package/src/teams/default-party.csv +12 -0
- package/src/teams/team-gamedev.yaml +29 -0
- package/src/workflows/1-preproduction/brainstorm-game/game-brain-methods.csv +26 -0
- package/src/workflows/1-preproduction/brainstorm-game/workflow.yaml +62 -0
- package/src/workflows/1-preproduction/game-brief/workflow.yaml +67 -0
- package/src/workflows/2-design/gdd/game-types.csv +25 -0
- package/src/workflows/2-design/gdd/workflow.yaml +101 -0
- package/src/workflows/2-design/narrative/workflow.yaml +77 -0
- package/src/workflows/3-technical/game-architecture/architecture-patterns.yaml +507 -0
- package/src/workflows/3-technical/game-architecture/decision-catalog.yaml +340 -0
- package/src/workflows/3-technical/game-architecture/engine-mcps.yaml +270 -0
- package/src/workflows/3-technical/game-architecture/pattern-categories.csv +13 -0
- package/src/workflows/3-technical/game-architecture/workflow.yaml +101 -0
- package/src/workflows/4-production/code-review/instructions.xml +226 -0
- package/src/workflows/4-production/code-review/workflow.yaml +64 -0
- package/src/workflows/4-production/correct-course/workflow.yaml +65 -0
- package/src/workflows/4-production/create-story/instructions.xml +345 -0
- package/src/workflows/4-production/create-story/workflow.yaml +61 -0
- package/src/workflows/4-production/dev-story/instructions.xml +410 -0
- package/src/workflows/4-production/dev-story/workflow.yaml +27 -0
- package/src/workflows/4-production/retrospective/workflow.yaml +58 -0
- package/src/workflows/4-production/sprint-planning/sprint-status-template.yaml +55 -0
- package/src/workflows/4-production/sprint-planning/workflow.yaml +54 -0
- package/src/workflows/4-production/sprint-status/workflow.yaml +35 -0
- package/src/workflows/document-project/documentation-requirements.csv +12 -0
- package/src/workflows/document-project/templates/project-scan-report-schema.json +160 -0
- package/src/workflows/document-project/workflow.yaml +30 -0
- package/src/workflows/document-project/workflows/deep-dive.yaml +31 -0
- package/src/workflows/document-project/workflows/full-scan.yaml +31 -0
- package/src/workflows/gametest/automate/workflow.yaml +50 -0
- package/src/workflows/gametest/e2e-scaffold/workflow.yaml +145 -0
- package/src/workflows/gametest/performance/workflow.yaml +48 -0
- package/src/workflows/gametest/playtest-plan/workflow.yaml +59 -0
- package/src/workflows/gametest/test-design/workflow.yaml +47 -0
- package/src/workflows/gametest/test-framework/workflow.yaml +48 -0
- package/src/workflows/gametest/test-review/workflow.yaml +48 -0
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# Game QA workflow: framework
|
|
2
|
+
name: gametest-framework
|
|
3
|
+
description: "Initialize game test framework architecture for Unity, Unreal Engine, or Godot projects"
|
|
4
|
+
author: "BMad"
|
|
5
|
+
|
|
6
|
+
# Critical variables from config
|
|
7
|
+
config_source: "{project-root}/_bmad/gds/config.yaml"
|
|
8
|
+
output_folder: "{config_source}:output_folder"
|
|
9
|
+
user_name: "{config_source}:user_name"
|
|
10
|
+
communication_language: "{config_source}:communication_language"
|
|
11
|
+
document_output_language: "{config_source}:document_output_language"
|
|
12
|
+
date: system-generated
|
|
13
|
+
|
|
14
|
+
# Workflow components
|
|
15
|
+
installed_path: "{project-root}/_bmad/gds/workflows/gametest/test-framework"
|
|
16
|
+
instructions: "{installed_path}/instructions.md"
|
|
17
|
+
validation: "{installed_path}/checklist.md"
|
|
18
|
+
|
|
19
|
+
# Variables and inputs
|
|
20
|
+
variables:
|
|
21
|
+
test_dir: "{project-root}/tests" # Root test directory
|
|
22
|
+
game_engine: "auto" # auto, unity, unreal, godot
|
|
23
|
+
test_framework: "auto" # auto, gut (godot), unity-test-framework, unreal-automation
|
|
24
|
+
|
|
25
|
+
# Output configuration
|
|
26
|
+
default_output_file: "{test_dir}/README.md"
|
|
27
|
+
|
|
28
|
+
# Required tools
|
|
29
|
+
required_tools:
|
|
30
|
+
- read_file
|
|
31
|
+
- write_file
|
|
32
|
+
- create_directory
|
|
33
|
+
- list_files
|
|
34
|
+
- search_repo
|
|
35
|
+
|
|
36
|
+
tags:
|
|
37
|
+
- qa
|
|
38
|
+
- setup
|
|
39
|
+
- game-testing
|
|
40
|
+
- framework
|
|
41
|
+
- initialization
|
|
42
|
+
|
|
43
|
+
execution_hints:
|
|
44
|
+
interactive: false
|
|
45
|
+
autonomous: true
|
|
46
|
+
iterative: true
|
|
47
|
+
|
|
48
|
+
web_bundle: false
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# Game QA workflow: test-review
|
|
2
|
+
name: gametest-test-review
|
|
3
|
+
description: "Review test quality, coverage, and identify gaps in game testing"
|
|
4
|
+
author: "BMad"
|
|
5
|
+
|
|
6
|
+
# Critical variables from config
|
|
7
|
+
config_source: "{project-root}/_bmad/gds/config.yaml"
|
|
8
|
+
output_folder: "{config_source}:output_folder"
|
|
9
|
+
user_name: "{config_source}:user_name"
|
|
10
|
+
communication_language: "{config_source}:communication_language"
|
|
11
|
+
document_output_language: "{config_source}:document_output_language"
|
|
12
|
+
date: system-generated
|
|
13
|
+
|
|
14
|
+
# Workflow components
|
|
15
|
+
installed_path: "{project-root}/_bmad/gds/workflows/gametest/test-review"
|
|
16
|
+
instructions: "{installed_path}/instructions.md"
|
|
17
|
+
validation: "{installed_path}/checklist.md"
|
|
18
|
+
template: "{installed_path}/test-review-template.md"
|
|
19
|
+
|
|
20
|
+
# Variables and inputs
|
|
21
|
+
variables:
|
|
22
|
+
review_scope: "full" # full, targeted, quick
|
|
23
|
+
game_engine: "auto" # auto, unity, unreal, godot
|
|
24
|
+
|
|
25
|
+
# Output configuration
|
|
26
|
+
default_output_file: "{output_folder}/test-review-report.md"
|
|
27
|
+
|
|
28
|
+
# Required tools
|
|
29
|
+
required_tools:
|
|
30
|
+
- read_file
|
|
31
|
+
- write_file
|
|
32
|
+
- list_files
|
|
33
|
+
- search_repo
|
|
34
|
+
- glob
|
|
35
|
+
|
|
36
|
+
tags:
|
|
37
|
+
- qa
|
|
38
|
+
- review
|
|
39
|
+
- coverage
|
|
40
|
+
- quality
|
|
41
|
+
- maintenance
|
|
42
|
+
|
|
43
|
+
execution_hints:
|
|
44
|
+
interactive: false
|
|
45
|
+
autonomous: true
|
|
46
|
+
iterative: true
|
|
47
|
+
|
|
48
|
+
web_bundle: false
|