@starlein/paperclip-plugin-company-wizard 0.2.1

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.
Files changed (248) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +748 -0
  3. package/dist/manifest.js +91 -0
  4. package/dist/manifest.js.map +7 -0
  5. package/dist/ui/index.css +1647 -0
  6. package/dist/ui/index.css.map +7 -0
  7. package/dist/ui/index.js +6738 -0
  8. package/dist/ui/index.js.map +7 -0
  9. package/dist/worker.js +8247 -0
  10. package/dist/worker.js.map +7 -0
  11. package/package.json +73 -0
  12. package/templates/ai-wizard/config-format.md +21 -0
  13. package/templates/ai-wizard/interview-system.md +67 -0
  14. package/templates/ai-wizard/messages.json +6 -0
  15. package/templates/ai-wizard/single-shot-system.md +42 -0
  16. package/templates/bootstrap-instructions.md +30 -0
  17. package/templates/modules/accessibility/agents/engineer/skills/accessibility-audit.fallback.md +18 -0
  18. package/templates/modules/accessibility/agents/ui-designer/skills/accessibility-audit.fallback.md +18 -0
  19. package/templates/modules/accessibility/module.meta.json +22 -0
  20. package/templates/modules/accessibility/skills/accessibility-audit.md +27 -0
  21. package/templates/modules/architecture-plan/agents/ceo/skills/architecture-plan.fallback.md +16 -0
  22. package/templates/modules/architecture-plan/agents/engineer/skills/design-system.fallback.md +17 -0
  23. package/templates/modules/architecture-plan/agents/ui-designer/skills/architecture-plan.md +19 -0
  24. package/templates/modules/architecture-plan/agents/ui-designer/skills/design-system.md +24 -0
  25. package/templates/modules/architecture-plan/docs/architecture-template.md +38 -0
  26. package/templates/modules/architecture-plan/docs/design-system-template.md +61 -0
  27. package/templates/modules/architecture-plan/module.meta.json +37 -0
  28. package/templates/modules/architecture-plan/skills/architecture-plan.md +23 -0
  29. package/templates/modules/auto-assign/README.md +23 -0
  30. package/templates/modules/auto-assign/agents/ceo/heartbeat-section.md +9 -0
  31. package/templates/modules/auto-assign/agents/ceo/skills/auto-assign.fallback.md +18 -0
  32. package/templates/modules/auto-assign/agents/product-owner/heartbeat-section.md +10 -0
  33. package/templates/modules/auto-assign/module.meta.json +27 -0
  34. package/templates/modules/auto-assign/skills/auto-assign.md +23 -0
  35. package/templates/modules/backlog/README.md +26 -0
  36. package/templates/modules/backlog/agents/ceo/heartbeat-section.md +10 -0
  37. package/templates/modules/backlog/agents/ceo/skills/backlog-health.fallback.md +20 -0
  38. package/templates/modules/backlog/agents/product-owner/heartbeat-section.md +15 -0
  39. package/templates/modules/backlog/docs/backlog-process.md +62 -0
  40. package/templates/modules/backlog/docs/backlog-template.md +53 -0
  41. package/templates/modules/backlog/module.meta.json +31 -0
  42. package/templates/modules/backlog/skills/backlog-health.md +47 -0
  43. package/templates/modules/brand-identity/agents/ceo/skills/brand-identity.fallback.md +19 -0
  44. package/templates/modules/brand-identity/agents/cmo/skills/brand-identity.fallback.md +19 -0
  45. package/templates/modules/brand-identity/docs/brand-identity-template.md +43 -0
  46. package/templates/modules/brand-identity/module.meta.json +22 -0
  47. package/templates/modules/brand-identity/skills/brand-identity.md +30 -0
  48. package/templates/modules/build-api/module.meta.json +118 -0
  49. package/templates/modules/build-api/skills/api-design.md +43 -0
  50. package/templates/modules/ci-cd/agents/devops/skills/ci-cd.md +28 -0
  51. package/templates/modules/ci-cd/agents/engineer/skills/ci-cd.fallback.md +18 -0
  52. package/templates/modules/ci-cd/docs/ci-cd-template.md +42 -0
  53. package/templates/modules/ci-cd/module.meta.json +105 -0
  54. package/templates/modules/ci-cd/skills/ci-cd.md +26 -0
  55. package/templates/modules/codebase-onboarding/agents/ceo/skills/codebase-audit.fallback.md +19 -0
  56. package/templates/modules/codebase-onboarding/module.meta.json +24 -0
  57. package/templates/modules/codebase-onboarding/skills/codebase-audit.md +45 -0
  58. package/templates/modules/competitive-intel/agents/ceo/skills/competitive-tracking.fallback.md +17 -0
  59. package/templates/modules/competitive-intel/agents/cmo/skills/competitive-tracking.fallback.md +17 -0
  60. package/templates/modules/competitive-intel/agents/customer-success/skills/competitive-tracking.md +25 -0
  61. package/templates/modules/competitive-intel/module.meta.json +23 -0
  62. package/templates/modules/competitive-intel/skills/competitive-tracking.md +27 -0
  63. package/templates/modules/dependency-management/agents/engineer/skills/dependency-audit.fallback.md +18 -0
  64. package/templates/modules/dependency-management/module.meta.json +25 -0
  65. package/templates/modules/dependency-management/skills/dependency-audit.md +43 -0
  66. package/templates/modules/documentation/agents/ceo/skills/project-docs.fallback.md +16 -0
  67. package/templates/modules/documentation/agents/engineer/skills/project-docs.fallback.md +16 -0
  68. package/templates/modules/documentation/module.meta.json +22 -0
  69. package/templates/modules/documentation/skills/project-docs.md +25 -0
  70. package/templates/modules/game-design/agents/ceo/skills/game-design.fallback.md +17 -0
  71. package/templates/modules/game-design/agents/game-designer/skills/game-design.md +51 -0
  72. package/templates/modules/game-design/docs/engine-phaser.md +310 -0
  73. package/templates/modules/game-design/docs/engine-pixijs.md +289 -0
  74. package/templates/modules/game-design/docs/engine-threejs.md +304 -0
  75. package/templates/modules/game-design/docs/gdd-template.md +72 -0
  76. package/templates/modules/game-design/module.meta.json +22 -0
  77. package/templates/modules/game-design/skills/game-design.md +41 -0
  78. package/templates/modules/github-repo/README.md +23 -0
  79. package/templates/modules/github-repo/agents/engineer/skills/git-workflow.md +23 -0
  80. package/templates/modules/github-repo/docs/git-workflow.md +50 -0
  81. package/templates/modules/github-repo/module.meta.json +12 -0
  82. package/templates/modules/hiring-review/agents/ceo/skills/hiring-review.fallback.md +17 -0
  83. package/templates/modules/hiring-review/module.meta.json +21 -0
  84. package/templates/modules/hiring-review/skills/hiring-review.md +24 -0
  85. package/templates/modules/launch-mvp/module.meta.json +86 -0
  86. package/templates/modules/market-analysis/agents/ceo/skills/market-analysis.fallback.md +17 -0
  87. package/templates/modules/market-analysis/agents/cmo/skills/market-analysis.fallback.md +19 -0
  88. package/templates/modules/market-analysis/agents/product-owner/skills/market-analysis.fallback.md +18 -0
  89. package/templates/modules/market-analysis/agents/ux-researcher/skills/market-analysis.md +23 -0
  90. package/templates/modules/market-analysis/docs/market-analysis-template.md +32 -0
  91. package/templates/modules/market-analysis/module.meta.json +23 -0
  92. package/templates/modules/market-analysis/skills/market-analysis.md +21 -0
  93. package/templates/modules/monitoring/agents/devops/skills/monitoring.md +23 -0
  94. package/templates/modules/monitoring/agents/engineer/skills/monitoring.fallback.md +18 -0
  95. package/templates/modules/monitoring/docs/monitoring-template.md +46 -0
  96. package/templates/modules/monitoring/module.meta.json +24 -0
  97. package/templates/modules/monitoring/skills/monitoring.md +20 -0
  98. package/templates/modules/pr-review/README.md +43 -0
  99. package/templates/modules/pr-review/agents/code-reviewer/skills/code-review.md +29 -0
  100. package/templates/modules/pr-review/agents/devops/skills/infra-review.md +29 -0
  101. package/templates/modules/pr-review/agents/engineer/skills/pr-workflow.md +24 -0
  102. package/templates/modules/pr-review/agents/product-owner/skills/product-review.md +27 -0
  103. package/templates/modules/pr-review/agents/qa/skills/qa-review.md +29 -0
  104. package/templates/modules/pr-review/agents/ui-designer/skills/design-review.md +29 -0
  105. package/templates/modules/pr-review/agents/ux-researcher/skills/ux-review.md +29 -0
  106. package/templates/modules/pr-review/docs/pr-conventions.md +78 -0
  107. package/templates/modules/pr-review/module.meta.json +24 -0
  108. package/templates/modules/release-management/agents/engineer/skills/release-process.fallback.md +18 -0
  109. package/templates/modules/release-management/module.meta.json +25 -0
  110. package/templates/modules/release-management/skills/release-process.md +45 -0
  111. package/templates/modules/security-audit/agents/devops/skills/security-review.fallback.md +17 -0
  112. package/templates/modules/security-audit/agents/devops/skills/threat-model.fallback.md +17 -0
  113. package/templates/modules/security-audit/agents/engineer/skills/security-review.fallback.md +17 -0
  114. package/templates/modules/security-audit/agents/engineer/skills/threat-model.fallback.md +17 -0
  115. package/templates/modules/security-audit/module.meta.json +36 -0
  116. package/templates/modules/security-audit/skills/security-review.md +25 -0
  117. package/templates/modules/security-audit/skills/threat-model.md +22 -0
  118. package/templates/modules/stall-detection/README.md +27 -0
  119. package/templates/modules/stall-detection/agents/ceo/heartbeat-section.md +12 -0
  120. package/templates/modules/stall-detection/agents/ceo/skills/stall-detection.md +21 -0
  121. package/templates/modules/stall-detection/module.meta.json +15 -0
  122. package/templates/modules/tech-stack/agents/ceo/skills/tech-stack.fallback.md +16 -0
  123. package/templates/modules/tech-stack/docs/tech-stack-template.md +28 -0
  124. package/templates/modules/tech-stack/module.meta.json +21 -0
  125. package/templates/modules/tech-stack/skills/tech-stack.md +25 -0
  126. package/templates/modules/triage/agents/ceo/skills/issue-triage.fallback.md +19 -0
  127. package/templates/modules/triage/module.meta.json +25 -0
  128. package/templates/modules/triage/skills/issue-triage.md +42 -0
  129. package/templates/modules/user-testing/agents/ceo/skills/user-testing.fallback.md +17 -0
  130. package/templates/modules/user-testing/agents/product-owner/skills/user-testing.fallback.md +17 -0
  131. package/templates/modules/user-testing/agents/qa/skills/user-testing.md +30 -0
  132. package/templates/modules/user-testing/agents/ux-researcher/skills/user-testing.fallback.md +18 -0
  133. package/templates/modules/user-testing/docs/user-testing-template.md +37 -0
  134. package/templates/modules/user-testing/module.meta.json +23 -0
  135. package/templates/modules/user-testing/skills/user-testing.md +27 -0
  136. package/templates/modules/vision-workshop/agents/ceo/skills/vision-workshop.md +23 -0
  137. package/templates/modules/vision-workshop/agents/ux-researcher/skills/vision-workshop.md +19 -0
  138. package/templates/modules/vision-workshop/docs/vision-template.md +28 -0
  139. package/templates/modules/vision-workshop/module.meta.json +12 -0
  140. package/templates/modules/website-relaunch/agents/ui-designer/skills/site-audit.md +65 -0
  141. package/templates/modules/website-relaunch/module.meta.json +168 -0
  142. package/templates/modules/website-relaunch/skills/design-ingestion.md +111 -0
  143. package/templates/modules/website-relaunch/skills/site-audit.md +54 -0
  144. package/templates/presets/build-api/preset.meta.json +16 -0
  145. package/templates/presets/build-game/preset.meta.json +150 -0
  146. package/templates/presets/content/preset.meta.json +20 -0
  147. package/templates/presets/fast/preset.meta.json +16 -0
  148. package/templates/presets/full/preset.meta.json +22 -0
  149. package/templates/presets/gtm/preset.meta.json +21 -0
  150. package/templates/presets/launch-mvp/preset.meta.json +17 -0
  151. package/templates/presets/launch-pack/preset.meta.json +25 -0
  152. package/templates/presets/quality/preset.meta.json +17 -0
  153. package/templates/presets/rad/preset.meta.json +19 -0
  154. package/templates/presets/repo-maintenance/preset.meta.json +104 -0
  155. package/templates/presets/research/preset.meta.json +13 -0
  156. package/templates/presets/secure/preset.meta.json +22 -0
  157. package/templates/presets/startup/preset.meta.json +19 -0
  158. package/templates/presets/website-relaunch/preset.meta.json +18 -0
  159. package/templates/roles/audio-designer/AGENTS.md +29 -0
  160. package/templates/roles/audio-designer/HEARTBEAT.md +37 -0
  161. package/templates/roles/audio-designer/SOUL.md +17 -0
  162. package/templates/roles/audio-designer/TOOLS.md +3 -0
  163. package/templates/roles/audio-designer/role.meta.json +14 -0
  164. package/templates/roles/ceo/AGENTS.md +28 -0
  165. package/templates/roles/ceo/HEARTBEAT.md +75 -0
  166. package/templates/roles/ceo/SOUL.md +33 -0
  167. package/templates/roles/ceo/TOOLS.md +3 -0
  168. package/templates/roles/ceo/role.meta.json +14 -0
  169. package/templates/roles/cfo/AGENTS.md +31 -0
  170. package/templates/roles/cfo/HEARTBEAT.md +37 -0
  171. package/templates/roles/cfo/SOUL.md +17 -0
  172. package/templates/roles/cfo/TOOLS.md +3 -0
  173. package/templates/roles/cfo/role.meta.json +17 -0
  174. package/templates/roles/cmo/AGENTS.md +31 -0
  175. package/templates/roles/cmo/HEARTBEAT.md +37 -0
  176. package/templates/roles/cmo/SOUL.md +17 -0
  177. package/templates/roles/cmo/TOOLS.md +3 -0
  178. package/templates/roles/cmo/role.meta.json +17 -0
  179. package/templates/roles/code-reviewer/AGENTS.md +42 -0
  180. package/templates/roles/code-reviewer/HEARTBEAT.md +33 -0
  181. package/templates/roles/code-reviewer/SOUL.md +18 -0
  182. package/templates/roles/code-reviewer/TOOLS.md +3 -0
  183. package/templates/roles/code-reviewer/role.meta.json +12 -0
  184. package/templates/roles/cto/AGENTS.md +30 -0
  185. package/templates/roles/cto/HEARTBEAT.md +45 -0
  186. package/templates/roles/cto/SOUL.md +25 -0
  187. package/templates/roles/cto/TOOLS.md +3 -0
  188. package/templates/roles/cto/role.meta.json +18 -0
  189. package/templates/roles/customer-success/AGENTS.md +42 -0
  190. package/templates/roles/customer-success/HEARTBEAT.md +33 -0
  191. package/templates/roles/customer-success/SOUL.md +17 -0
  192. package/templates/roles/customer-success/TOOLS.md +3 -0
  193. package/templates/roles/customer-success/role.meta.json +17 -0
  194. package/templates/roles/devops/AGENTS.md +31 -0
  195. package/templates/roles/devops/HEARTBEAT.md +42 -0
  196. package/templates/roles/devops/SOUL.md +17 -0
  197. package/templates/roles/devops/TOOLS.md +3 -0
  198. package/templates/roles/devops/role.meta.json +17 -0
  199. package/templates/roles/engineer/AGENTS.md +29 -0
  200. package/templates/roles/engineer/HEARTBEAT.md +39 -0
  201. package/templates/roles/engineer/SOUL.md +20 -0
  202. package/templates/roles/engineer/TOOLS.md +3 -0
  203. package/templates/roles/engineer/role.meta.json +13 -0
  204. package/templates/roles/game-artist/AGENTS.md +29 -0
  205. package/templates/roles/game-artist/HEARTBEAT.md +37 -0
  206. package/templates/roles/game-artist/SOUL.md +24 -0
  207. package/templates/roles/game-artist/TOOLS.md +3 -0
  208. package/templates/roles/game-artist/role.meta.json +14 -0
  209. package/templates/roles/game-designer/AGENTS.md +29 -0
  210. package/templates/roles/game-designer/HEARTBEAT.md +37 -0
  211. package/templates/roles/game-designer/SOUL.md +17 -0
  212. package/templates/roles/game-designer/TOOLS.md +3 -0
  213. package/templates/roles/game-designer/role.meta.json +14 -0
  214. package/templates/roles/level-designer/AGENTS.md +29 -0
  215. package/templates/roles/level-designer/HEARTBEAT.md +37 -0
  216. package/templates/roles/level-designer/SOUL.md +17 -0
  217. package/templates/roles/level-designer/TOOLS.md +3 -0
  218. package/templates/roles/level-designer/role.meta.json +13 -0
  219. package/templates/roles/product-owner/AGENTS.md +29 -0
  220. package/templates/roles/product-owner/HEARTBEAT.md +35 -0
  221. package/templates/roles/product-owner/SOUL.md +17 -0
  222. package/templates/roles/product-owner/TOOLS.md +3 -0
  223. package/templates/roles/product-owner/role.meta.json +14 -0
  224. package/templates/roles/qa/AGENTS.md +31 -0
  225. package/templates/roles/qa/HEARTBEAT.md +37 -0
  226. package/templates/roles/qa/SOUL.md +17 -0
  227. package/templates/roles/qa/TOOLS.md +3 -0
  228. package/templates/roles/qa/role.meta.json +17 -0
  229. package/templates/roles/security-engineer/AGENTS.md +42 -0
  230. package/templates/roles/security-engineer/HEARTBEAT.md +33 -0
  231. package/templates/roles/security-engineer/SOUL.md +17 -0
  232. package/templates/roles/security-engineer/TOOLS.md +3 -0
  233. package/templates/roles/security-engineer/role.meta.json +17 -0
  234. package/templates/roles/technical-writer/AGENTS.md +41 -0
  235. package/templates/roles/technical-writer/HEARTBEAT.md +32 -0
  236. package/templates/roles/technical-writer/SOUL.md +17 -0
  237. package/templates/roles/technical-writer/TOOLS.md +3 -0
  238. package/templates/roles/technical-writer/role.meta.json +16 -0
  239. package/templates/roles/ui-designer/AGENTS.md +29 -0
  240. package/templates/roles/ui-designer/HEARTBEAT.md +37 -0
  241. package/templates/roles/ui-designer/SOUL.md +17 -0
  242. package/templates/roles/ui-designer/TOOLS.md +3 -0
  243. package/templates/roles/ui-designer/role.meta.json +17 -0
  244. package/templates/roles/ux-researcher/AGENTS.md +29 -0
  245. package/templates/roles/ux-researcher/HEARTBEAT.md +37 -0
  246. package/templates/roles/ux-researcher/SOUL.md +17 -0
  247. package/templates/roles/ux-researcher/TOOLS.md +3 -0
  248. package/templates/roles/ux-researcher/role.meta.json +14 -0
@@ -0,0 +1,18 @@
1
+ # Skill: CI/CD Pipeline (Fallback)
2
+
3
+ The DevOps engineer primarily owns CI/CD pipelines. You are the fallback — step in only if DevOps is absent or hasn't set up the pipeline.
4
+
5
+ ## CI/CD (Fallback)
6
+
7
+ 1. If no CI workflow exists and DevOps hasn't started:
8
+ - Create a basic CI workflow: lint + test on PRs, build on push to main
9
+ - Use standard caching and pinned action versions
10
+ - Document the setup in `docs/CI-CD.md`
11
+ - Mark the pipeline as **provisional** — it needs DevOps review for CD, caching optimization, and security hardening
12
+ 2. If DevOps is active, skip this entirely.
13
+
14
+ ## Rules
15
+
16
+ - This is a safety net. Set up the basics — lint, test, build.
17
+ - Skip CD (deployment) — that requires infrastructure knowledge best left to DevOps.
18
+ - Let DevOps own pipeline optimization, deployment, and ongoing maintenance.
@@ -0,0 +1,42 @@
1
+ # CI/CD Pipeline
2
+
3
+ ## Pipeline Overview
4
+
5
+ _Describe the CI/CD setup, tooling (e.g., GitHub Actions), and overall strategy._
6
+
7
+ ## CI Workflow
8
+
9
+ Runs on: _PRs and pushes to main_
10
+
11
+ | Stage | Trigger | What it does |
12
+ |------------|---------------------|-------------------------------------|
13
+ | Lint | _PR, push to main_ | _Run linter (e.g., ESLint)_ |
14
+ | Test | _PR, push to main_ | _Run test suite_ |
15
+ | Build | _PR, push to main_ | _Compile/typecheck the project_ |
16
+
17
+ ## CD Workflow
18
+
19
+ Runs on: _merge to main_
20
+
21
+ | Stage | Trigger | What it does |
22
+ |------------|---------------------|-------------------------------------|
23
+ | Deploy | _merge to main_ | _Deploy to target environment_ |
24
+ | Smoke Test | _after deploy_ | _Verify deployment is healthy_ |
25
+
26
+ ## Environment Variables
27
+
28
+ | Variable | Where set | Purpose |
29
+ |------------|---------------------|-------------------------------------|
30
+ | _VAR_NAME_ | _GitHub Secrets_ | _Description_ |
31
+
32
+ ## Deployment Targets
33
+
34
+ - **Production**: _URL or environment description_
35
+ - **Staging**: _URL or environment description (if applicable)_
36
+
37
+ ## Rollback Procedure
38
+
39
+ 1. _Identify the failing deployment_
40
+ 2. _Revert the merge commit or re-deploy the previous known-good commit_
41
+ 3. _Verify rollback via smoke tests_
42
+ 4. _Investigate root cause before re-deploying the fix_
@@ -0,0 +1,105 @@
1
+ {
2
+ "name": "ci-cd",
3
+ "description": "Sets up continuous integration and deployment pipelines. Automates testing, building, and shipping on every push.",
4
+ "requires": [
5
+ "github-repo"
6
+ ],
7
+ "capabilities": [
8
+ {
9
+ "skill": "ci-cd",
10
+ "owners": [
11
+ "devops",
12
+ "engineer"
13
+ ],
14
+ "fallbackSkill": "ci-cd.fallback"
15
+ }
16
+ ],
17
+ "issues": [
18
+ {
19
+ "title": "Set up CI/CD pipeline",
20
+ "assignTo": "capability:ci-cd",
21
+ "description": "Configure continuous integration (lint, test, build) and deployment pipeline. Document the setup in docs/CI-CD.md. Use GitHub Actions or equivalent."
22
+ },
23
+ {
24
+ "title": "Add linter and configure lint rules",
25
+ "description": "Install and configure a linter (ESLint, Ruff, golangci-lint, etc. depending on the stack). Use sensible defaults — focus on catching bugs, not style wars. Add a `lint` script to the project.",
26
+ "priority": "high",
27
+ "assignTo": "engineer"
28
+ },
29
+ {
30
+ "title": "Add lint step to CI workflow",
31
+ "description": "Add a linting step to the CI pipeline. It should run on every push and PR. Fail the build on lint errors.",
32
+ "priority": "high",
33
+ "assignTo": "engineer"
34
+ },
35
+ {
36
+ "title": "Add test runner and initial tests",
37
+ "description": "Set up a test runner (Jest, Vitest, pytest, go test, etc.). Write at least one meaningful test to verify the setup works. Add a `test` script to the project.",
38
+ "priority": "high",
39
+ "assignTo": "engineer"
40
+ },
41
+ {
42
+ "title": "Add test step to CI workflow",
43
+ "description": "Add a testing step to the CI pipeline that runs the full test suite. Report results clearly — developers should know exactly what failed and why.",
44
+ "priority": "high",
45
+ "assignTo": "engineer"
46
+ },
47
+ {
48
+ "title": "Configure build step",
49
+ "description": "Add a build step that compiles/bundles the application into deployable artifacts. Ensure it runs in CI and outputs are consistent across environments.",
50
+ "priority": "medium",
51
+ "assignTo": "engineer"
52
+ },
53
+ {
54
+ "title": "Set up deployment automation",
55
+ "description": "Configure automated deployment to at least one environment (staging or production). Use the CI pipeline to trigger deploys on successful builds from the main branch. Include a rollback strategy.",
56
+ "priority": "medium",
57
+ "assignTo": "engineer"
58
+ },
59
+ {
60
+ "title": "Add deployment smoke tests",
61
+ "description": "After each deployment, run a basic smoke test to verify the application is healthy. Check key endpoints, verify the correct version is deployed, and alert on failure.",
62
+ "priority": "medium",
63
+ "assignTo": "engineer"
64
+ }
65
+ ],
66
+ "goal": {
67
+ "title": "Set up CI/CD pipeline",
68
+ "description": "Establish a complete CI/CD pipeline: automated linting, testing, building, and deployment. Every push to main should be verified automatically, and deployments should be reproducible and low-risk.",
69
+ "project": false,
70
+ "subgoals": [
71
+ {
72
+ "id": "linting",
73
+ "title": "Automated linting",
74
+ "level": "team",
75
+ "description": "Enforce code quality standards automatically on every push. Linter runs in CI and blocks merges on failure."
76
+ },
77
+ {
78
+ "id": "testing",
79
+ "title": "Automated testing",
80
+ "level": "team",
81
+ "description": "Run the test suite automatically and report results. Tests run in CI with pass/fail status reported on commits and PRs."
82
+ },
83
+ {
84
+ "id": "build",
85
+ "title": "Automated build",
86
+ "level": "team",
87
+ "description": "Build artifacts are produced automatically and consistently. Build step runs in CI and produces deployable artifacts."
88
+ },
89
+ {
90
+ "id": "deploy",
91
+ "title": "Automated deployment",
92
+ "level": "team",
93
+ "description": "Deploy to staging or production with minimal manual intervention. Pushes to main trigger automated deployment to at least one environment."
94
+ }
95
+ ]
96
+ },
97
+ "routines": [
98
+ {
99
+ "title": "CI pipeline health check",
100
+ "description": "Review recent CI runs for failures, flaky tests, and slow builds. Flag regressions and report pipeline health status.",
101
+ "assignTo": "capability:ci-cd",
102
+ "schedule": "0 9 * * 1-5"
103
+ }
104
+ ]
105
+ }
@@ -0,0 +1,26 @@
1
+ # Skill: CI/CD Pipeline
2
+
3
+ You manage continuous integration and deployment pipelines. Follow the conventions in `docs/CI-CD.md` in the project root.
4
+
5
+ ## Setup Steps
6
+
7
+ 1. Review the tech stack to determine build, lint, and test tooling
8
+ 2. Create a CI workflow (GitHub Actions or equivalent):
9
+ - Lint on all PRs and pushes to main
10
+ - Run tests on all PRs and pushes to main
11
+ - Build/typecheck to verify compilation
12
+ 3. Create a CD workflow:
13
+ - Trigger on merge to main
14
+ - Deploy to the target environment
15
+ - Run smoke tests after deployment
16
+ 4. Add status badges to the project README
17
+ 5. Document the full pipeline in `docs/CI-CD.md`
18
+
19
+ ## Rules
20
+
21
+ - Fail fast — put the quickest checks (lint, typecheck) first.
22
+ - Keep pipelines under 5 minutes. If they exceed this, add caching or split stages.
23
+ - Use dependency caching (e.g., `actions/cache`, `setup-node` cache) to speed up installs.
24
+ - Pin action versions to full SHAs, not tags, for security.
25
+ - Never store secrets in workflow files — use GitHub Secrets or equivalent.
26
+ - If CI breaks main, fix it immediately — a red main blocks everyone.
@@ -0,0 +1,19 @@
1
+ # Skill: Codebase Audit (Fallback)
2
+
3
+ The Engineer primarily owns codebase auditing and health. You are the fallback — step in only if the Engineer is absent or hasn't started.
4
+
5
+ ## Codebase Audit (Fallback)
6
+
7
+ 1. If no `docs/CODEBASE-AUDIT.md` exists and the Engineer hasn't started:
8
+ - Read the project structure and key configuration files
9
+ - Write a high-level architecture overview in `docs/CODEBASE-AUDIT.md`
10
+ - List obvious tech debt items visible from a surface-level read
11
+ - Mark the document as **provisional** — it needs a thorough engineering review
12
+ 2. If the Engineer is active, skip this entirely.
13
+
14
+ ## Rules
15
+
16
+ - This is a safety net. Document what you can see from the project's top-level structure.
17
+ - Skip deep code analysis — that requires engineering expertise.
18
+ - Don't create cleanup issues — leave that to the Engineer's thorough audit.
19
+ - Let the Engineer own the ongoing health checks and refactoring work.
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "codebase-onboarding",
3
+ "description": "Audits an existing codebase and maps its architecture. Gets agents up to speed fast on any inherited code.",
4
+ "requires": [
5
+ "github-repo"
6
+ ],
7
+ "capabilities": [
8
+ {
9
+ "skill": "codebase-audit",
10
+ "owners": [
11
+ "engineer",
12
+ "ceo"
13
+ ],
14
+ "fallbackSkill": "codebase-audit.fallback"
15
+ }
16
+ ],
17
+ "issues": [
18
+ {
19
+ "title": "Audit codebase and document architecture",
20
+ "assignTo": "capability:codebase-audit",
21
+ "description": "Read the existing codebase, map the architecture, identify tech debt hotspots and test coverage gaps. Document findings in docs/CODEBASE-AUDIT.md. Create follow-up issues for cleanup opportunities."
22
+ }
23
+ ]
24
+ }
@@ -0,0 +1,45 @@
1
+ # Skill: Codebase Audit
2
+
3
+ You are responsible for understanding the existing codebase and maintaining its health over time. This skill has two modes: initial audit (first run) and ongoing health checks (subsequent heartbeats).
4
+
5
+ ## Initial Audit
6
+
7
+ Run this when `docs/CODEBASE-AUDIT.md` does not yet exist.
8
+
9
+ 1. Map the project structure — identify key directories, entry points, and architectural layers.
10
+ 2. Read configuration files (package.json, tsconfig, Dockerfile, CI configs) to understand the tech stack and build pipeline.
11
+ 3. Identify the dependency graph — which modules depend on which, where are the coupling hotspots.
12
+ 4. Assess test coverage — find untested code paths, missing test files, or weak assertions.
13
+ 5. Identify tech debt — dead code, unused exports, overly complex functions, inconsistent patterns, duplicated logic.
14
+ 6. Check for code quality issues — long files, deep nesting, functions with too many parameters, missing error handling at boundaries.
15
+ 7. Document everything in `docs/CODEBASE-AUDIT.md`:
16
+ - Architecture overview (layers, key components, data flow)
17
+ - Tech stack summary
18
+ - Tech debt inventory (ranked by severity: critical, major, minor)
19
+ - Test coverage assessment
20
+ - Recommended cleanup priorities
21
+ 8. Create follow-up issues for the top cleanup opportunities (one issue per fix, small and actionable).
22
+
23
+ ## Ongoing Health Checks
24
+
25
+ Run this on every heartbeat when `docs/CODEBASE-AUDIT.md` already exists.
26
+
27
+ 1. Check recent commits for newly introduced complexity or tech debt.
28
+ 2. Look for refactoring opportunities in code you or other agents have touched.
29
+ 3. When fewer than 3 open cleanup issues remain, identify the next batch from the audit.
30
+ 4. Execute small cleanup tasks directly when the fix is obvious and low-risk:
31
+ - Remove dead code and unused imports
32
+ - Fix inconsistent naming or formatting
33
+ - Simplify overly complex conditionals
34
+ - Extract duplicated logic into shared utilities
35
+ 5. For larger refactors, create issues with clear scope and rationale instead of acting immediately.
36
+ 6. Update `docs/CODEBASE-AUDIT.md` when the architecture or tech debt landscape changes significantly.
37
+
38
+ ## Rules
39
+
40
+ - Read before you write. Understand the intent of existing code before changing it.
41
+ - Small, focused changes. Each cleanup PR should do one thing. Never combine unrelated fixes.
42
+ - Don't refactor code that is actively being worked on by another agent — check issue assignments first.
43
+ - Preserve behavior. Cleanup must not change functionality. Run tests after every change.
44
+ - Prioritize by impact — fix things that slow down the team or cause bugs, not cosmetic issues.
45
+ - If `docs/CODEBASE-AUDIT.md` exists, review it before starting. Don't duplicate findings.
@@ -0,0 +1,17 @@
1
+ # Skill: Competitive Tracking (Fallback)
2
+
3
+ The Customer Success Manager, CMO, and Product Owner own competitive intelligence above you. You are the last-resort fallback — step in only if all three are absent or haven't delivered the analysis.
4
+
5
+ ## Competitive Tracking (Fallback)
6
+
7
+ 1. If no `docs/COMPETITIVE-LANDSCAPE.md` exists and nobody has started:
8
+ - Identify the top 2-3 competitors based on the company goal
9
+ - Write a brief comparison: what they do, how we differ
10
+ - Document in `docs/COMPETITIVE-LANDSCAPE.md`
11
+ - Tag the Customer Success Manager, CMO, or Product Owner to expand
12
+ 2. If any of the above roles are active, skip this entirely.
13
+
14
+ ## Rules
15
+
16
+ - This is a safety net. Keep it brief — enough to inform initial positioning.
17
+ - Let the dedicated role own ongoing competitive intelligence.
@@ -0,0 +1,17 @@
1
+ # Skill: Competitive Tracking (Fallback)
2
+
3
+ The Customer Success Manager owns competitive intelligence above you. You are the fallback — step in if the Customer Success Manager is absent.
4
+
5
+ ## Competitive Tracking (Fallback)
6
+
7
+ 1. If no `docs/COMPETITIVE-LANDSCAPE.md` exists and the Customer Success Manager hasn't started:
8
+ - Research competitors from a marketing perspective: positioning, messaging, content strategy
9
+ - Document in `docs/COMPETITIVE-LANDSCAPE.md`
10
+ - Focus on differentiation opportunities for go-to-market
11
+ - Tag the Customer Success Manager to expand with customer-facing insights
12
+ 2. If the Customer Success Manager is active, skip this entirely.
13
+
14
+ ## Rules
15
+
16
+ - Focus on marketing and positioning angles — that's your domain.
17
+ - Let the Customer Success Manager own customer-perspective competitive analysis.
@@ -0,0 +1,25 @@
1
+ # Skill: Competitive Tracking
2
+
3
+ You own competitive intelligence from the customer perspective. You hear what customers say about competitors firsthand.
4
+
5
+ ## Competitive Tracking Process
6
+
7
+ 1. Review the company goal and existing market analysis — if `docs/MARKET-ANALYSIS.md` exists, use it as context.
8
+ 2. Research and document in `docs/COMPETITIVE-LANDSCAPE.md`:
9
+ - **Competitor profiles**: For each key competitor (3-5), document:
10
+ - Product overview and target audience
11
+ - What customers say about switching to/from them
12
+ - Strengths customers mention and weaknesses they complain about
13
+ - Pricing comparison (if public)
14
+ - Recent moves (launches, outages, pricing changes)
15
+ - **Win/loss patterns**: Why customers choose us vs competitors
16
+ - **Feature gaps**: What customers wish we had that competitors offer
17
+ - **Retention risks**: Competitor moves that might trigger churn
18
+ 3. Create follow-up issues for product improvements informed by competitive gaps
19
+ 4. Record summary in your daily notes
20
+
21
+ ## Rules
22
+
23
+ - Ground analysis in customer evidence: quotes, support tickets, churn reasons.
24
+ - Be opinionated about differentiation — neutral comparisons don't help.
25
+ - Update when customers mention new competitive dynamics.
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "competitive-intel",
3
+ "description": "Tracks competitors and surfaces market shifts. Keeps the team informed on what others are building.",
4
+ "capabilities": [
5
+ {
6
+ "skill": "competitive-tracking",
7
+ "owners": [
8
+ "customer-success",
9
+ "cmo",
10
+ "product-owner",
11
+ "ceo"
12
+ ],
13
+ "fallbackSkill": "competitive-tracking.fallback"
14
+ }
15
+ ],
16
+ "issues": [
17
+ {
18
+ "title": "Build initial competitive landscape",
19
+ "assignTo": "capability:competitive-tracking",
20
+ "description": "Research key competitors: their positioning, strengths, weaknesses, pricing, and recent moves. Document a living competitive landscape in docs/COMPETITIVE-LANDSCAPE.md with actionable differentiation insights."
21
+ }
22
+ ]
23
+ }
@@ -0,0 +1,27 @@
1
+ # Skill: Competitive Tracking
2
+
3
+ You own competitive intelligence. This is a living analysis — profiles evolve over time as the competitive landscape shifts.
4
+
5
+ ## Competitive Tracking Process
6
+
7
+ 1. Review the company goal and existing market analysis — if `docs/MARKET-ANALYSIS.md` exists, use it as context. Otherwise, start from the project description.
8
+ 2. Research and document in `docs/COMPETITIVE-LANDSCAPE.md`:
9
+ - **Competitor profiles**: For each key competitor (3-5), document:
10
+ - Product overview and target audience
11
+ - Positioning and messaging
12
+ - Strengths and weaknesses
13
+ - Pricing model (if public)
14
+ - Recent changes (launches, pivots, funding)
15
+ - **Differentiation map**: How we compare on key dimensions
16
+ - **Gaps and opportunities**: Where competitors are weak and we can win
17
+ - **Threats**: Where competitors are strong and we need to defend
18
+ 3. Create follow-up issues for strategic decisions informed by competitive insights:
19
+ - `POST /api/companies/{companyId}/issues` with specific recommendations. Include the active `projectId` (and `goalId` / `parentId` when applicable).
20
+ 4. Record summary in your daily notes
21
+
22
+ ## Rules
23
+
24
+ - Be factual. Base analysis on observable evidence, not speculation.
25
+ - Be opinionated. "Competitor X is strong at Y" is more useful than neutral feature lists.
26
+ - Keep profiles current. Update when significant competitor moves happen.
27
+ - Focus on actionable differentiation, not exhaustive feature comparison.
@@ -0,0 +1,18 @@
1
+ # Skill: Dependency Audit (Fallback)
2
+
3
+ DevOps or Security Engineer primarily owns dependency management. You are the fallback — step in only if they are absent.
4
+
5
+ ## Dependency Audit (Fallback)
6
+
7
+ 1. If no `docs/DEPENDENCY-AUDIT.md` exists and no one else has started:
8
+ - Run the package manager's built-in audit command (`npm audit`, `pip-audit`, etc.)
9
+ - Apply safe patch-level updates that don't break tests
10
+ - Document current dependency state in `docs/DEPENDENCY-AUDIT.md`
11
+ - Mark the document as **provisional** — it needs a security/ops review for CVE prioritization
12
+ 2. If DevOps or Security Engineer is active, skip this entirely.
13
+
14
+ ## Rules
15
+
16
+ - This is a safety net. Run the audit and apply safe patches only.
17
+ - Skip major version upgrades — those need dedicated planning.
18
+ - Don't make migration decisions — leave those to the primary owner.
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "dependency-management",
3
+ "description": "Audits and maintains project dependencies. Flags outdated packages, security issues, and license risks.",
4
+ "requires": [
5
+ "github-repo"
6
+ ],
7
+ "capabilities": [
8
+ {
9
+ "skill": "dependency-audit",
10
+ "owners": [
11
+ "devops",
12
+ "security-engineer",
13
+ "engineer"
14
+ ],
15
+ "fallbackSkill": "dependency-audit.fallback"
16
+ }
17
+ ],
18
+ "issues": [
19
+ {
20
+ "title": "Audit dependencies and create upgrade plan",
21
+ "assignTo": "capability:dependency-audit",
22
+ "description": "Audit all project dependencies for outdated versions, known vulnerabilities, and deprecated packages. Document findings and create a prioritized upgrade plan."
23
+ }
24
+ ]
25
+ }
@@ -0,0 +1,43 @@
1
+ # Skill: Dependency Audit
2
+
3
+ You are responsible for keeping the project's dependencies healthy, secure, and up to date.
4
+
5
+ ## Steps
6
+
7
+ 1. **Inventory** — List all direct and transitive dependencies with current versions.
8
+ - For Node.js: `npm outdated`, `npm ls --all`
9
+ - For Python: `pip list --outdated`, `pip-audit`
10
+ - For Go: `go list -m -u all`
11
+ - Adapt to the project's package manager.
12
+ 2. **Vulnerability scan** — Check for known CVEs.
13
+ - `npm audit`, `pip-audit`, `go vuln check`, or equivalent
14
+ - Cross-reference with GitHub Security Advisories if available
15
+ 3. **Classify findings** by severity:
16
+ - **Critical** — Active CVE with known exploit, or dependency is abandoned/unmaintained
17
+ - **Major** — Outdated by 2+ major versions, or has high-severity CVE without known exploit
18
+ - **Minor** — Outdated by 1 major version or multiple minor versions, no security impact
19
+ 4. **Create upgrade plan** — For each finding, determine:
20
+ - Can it be updated in-place (patch/minor bump)?
21
+ - Does it require migration work (major version, breaking changes)?
22
+ - Are there alternatives if the dependency is abandoned?
23
+ 5. **Document** findings in `docs/DEPENDENCY-AUDIT.md`:
24
+ - Summary table of dependencies by status (current, outdated, vulnerable, deprecated)
25
+ - Prioritized upgrade plan with estimated effort
26
+ - Lock file hygiene notes
27
+ 6. **Execute safe upgrades** — Apply patch and minor updates directly when tests pass.
28
+ 7. **Create issues** for major version upgrades or migrations that require dedicated work.
29
+
30
+ ## Ongoing
31
+
32
+ On each heartbeat when `docs/DEPENDENCY-AUDIT.md` exists:
33
+ 1. Run vulnerability scan — if new CVEs appear, create issues immediately.
34
+ 2. Check for newly outdated dependencies — update the audit doc.
35
+ 3. Apply safe patch updates and verify tests pass.
36
+
37
+ ## Rules
38
+
39
+ - Never upgrade a major version without creating an issue first — breaking changes need review.
40
+ - Always run the full test suite after any dependency update.
41
+ - Keep the lock file committed. Never delete or regenerate it without reason.
42
+ - If a dependency is abandoned, research alternatives and create an issue with a migration proposal.
43
+ - Document why a dependency is pinned if you intentionally skip an upgrade.
@@ -0,0 +1,16 @@
1
+ # Skill: Project Documentation (Fallback)
2
+
3
+ The Technical Writer and Engineer own project documentation above you. You are the last-resort fallback — step in only if both are absent or haven't delivered documentation.
4
+
5
+ ## Project Documentation (Fallback)
6
+
7
+ 1. If no README.md exists and nobody has started:
8
+ - Write a brief project overview: what it does, who it's for, how to get started
9
+ - Document in README.md
10
+ - Tag the Technical Writer or Engineer to expand
11
+ 2. If the Technical Writer or Engineer is active, skip this entirely.
12
+
13
+ ## Rules
14
+
15
+ - This is a safety net. Keep it to the absolute essentials.
16
+ - Let the Technical Writer own ongoing documentation.
@@ -0,0 +1,16 @@
1
+ # Skill: Project Documentation (Fallback)
2
+
3
+ The Technical Writer owns project documentation above you. You are the fallback — step in only if the Technical Writer is absent or hasn't started.
4
+
5
+ ## Project Documentation (Fallback)
6
+
7
+ 1. If no README.md exists or it's a bare skeleton:
8
+ - Write a minimal README with project overview, setup instructions, and basic usage
9
+ - Add inline code comments for complex logic you encounter during regular work
10
+ - Tag the Technical Writer to expand and maintain documentation
11
+ 2. If the Technical Writer is active, skip this entirely.
12
+
13
+ ## Rules
14
+
15
+ - This is a safety net. Keep it minimal — enough to onboard a new contributor.
16
+ - Let the Technical Writer own comprehensive documentation.
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "documentation",
3
+ "description": "Maintains project documentation: guides, API references, and architecture notes.",
4
+ "capabilities": [
5
+ {
6
+ "skill": "project-docs",
7
+ "owners": [
8
+ "technical-writer",
9
+ "engineer",
10
+ "ceo"
11
+ ],
12
+ "fallbackSkill": "project-docs.fallback"
13
+ }
14
+ ],
15
+ "issues": [
16
+ {
17
+ "title": "Create initial project documentation",
18
+ "assignTo": "capability:project-docs",
19
+ "description": "Write the foundational project documentation: README with setup instructions, architecture overview, API reference (if applicable), and contribution guide. Document in the project root and docs/ directory."
20
+ }
21
+ ]
22
+ }
@@ -0,0 +1,25 @@
1
+ # Skill: Project Documentation
2
+
3
+ You own project documentation. Good docs let new contributors (human or agent) get productive fast.
4
+
5
+ ## Documentation Process
6
+
7
+ 1. Review the project structure, existing code, and any architecture docs.
8
+ 2. Create or update the following:
9
+ - **README.md**: Project overview, setup instructions, usage examples, development workflow
10
+ - **API reference** (if applicable): Endpoints, parameters, response shapes, authentication
11
+ - **Architecture overview**: High-level system design, component relationships, data flow
12
+ - **Contributing guide**: How to set up the dev environment, coding conventions, PR process
13
+ 3. Ensure documentation accuracy:
14
+ - All setup instructions should be tested and working
15
+ - API docs should match the actual implementation
16
+ - Architecture docs should reflect the current state, not aspirations
17
+ 4. Create follow-up issues for documentation gaps discovered during review
18
+ 5. Record summary in your daily notes
19
+
20
+ ## Rules
21
+
22
+ - Accuracy over completeness. Wrong docs are worse than no docs.
23
+ - One source of truth per topic. Don't duplicate information across files.
24
+ - Keep docs close to code. Reference specific files and paths.
25
+ - Update docs when you notice drift — don't let them go stale.
@@ -0,0 +1,17 @@
1
+ # Skill: Game Design (Fallback)
2
+
3
+ The Game Designer or Engineer primarily owns the game design. You are the fallback — step in only if they are absent or haven't started.
4
+
5
+ ## Game Design (Fallback)
6
+
7
+ 1. If no `docs/GDD.md` exists and no one else has started:
8
+ - Write a minimal Game Design Document covering: concept pitch, core mechanic, basic game loop, target platform
9
+ - List obvious design questions that need answers (progression, win conditions, art style)
10
+ - Mark the document as **provisional** — it needs a thorough design review
11
+ 2. If the Game Designer or Engineer is active, skip this entirely.
12
+
13
+ ## Rules
14
+
15
+ - This is a safety net. Define the basics so the team has direction.
16
+ - Skip detailed mechanics, balancing, and progression — those need dedicated design work.
17
+ - Don't make art direction decisions — leave those to the Game Artist or Game Designer.
@@ -0,0 +1,51 @@
1
+ # Skill: Game Design (Game Designer)
2
+
3
+ You are the primary owner of the game design. This is your core responsibility.
4
+
5
+ ## Game Design Document
6
+
7
+ Create and maintain `docs/GDD.md` as the single source of truth. Cover every section thoroughly:
8
+
9
+ 1. **Concept** — One-paragraph pitch. Genre, theme, target platform, target audience. What makes this game unique?
10
+ 2. **Core mechanic** — The central verb. Define precisely: input → action → feedback → consequence. What makes it feel good?
11
+ 3. **Game loop** — Three layers:
12
+ - **Moment-to-moment** — The 5-second loop. What creates flow state?
13
+ - **Session loop** — The 15-minute loop. What gives structure and pacing?
14
+ - **Meta loop** — The multi-session loop. What creates "one more run" compulsion?
15
+ 4. **Mechanics catalog** — Every mechanic in the game: name, description, when introduced, interactions with other mechanics.
16
+ 5. **Progression** — Difficulty curve design. What gates progress? Skill gates vs content gates. Unlock schedule.
17
+ 6. **Economy** (if applicable) — Resources, currencies, costs, rewards, drop rates. The flow of value.
18
+ 7. **Win/lose conditions** — Session end conditions. Game end conditions. Fail states and recovery.
19
+ 8. **Controls** — Input mapping per platform. Responsiveness targets (input lag, animation cancel windows).
20
+ 9. **Game feel** — Coyote time, input buffering, screen shake, hit stop, juice. The invisible design.
21
+ 10. **Art direction** — Visual style, reference games, color language (what colors mean in gameplay), silhouette readability.
22
+ 11. **Audio direction** — Music style, SFX for feedback loops, adaptive audio triggers.
23
+ 12. **Tuning parameters** — Every balance-relevant value as a named parameter:
24
+ - Format: `parameter_name: default_value (range: min–max) — what it affects`
25
+ - Group by system: player, enemies, economy, progression
26
+
27
+ ## Balancing
28
+
29
+ After each playtest round:
30
+
31
+ 1. Read `docs/PLAYTEST-RESULTS.md` (if it exists).
32
+ 2. Identify the top 3 balance issues by player impact.
33
+ 3. Adjust tuning parameters with clear rationale.
34
+ 4. Update the GDD with new values.
35
+ 5. Create issues for parameter changes that need engineering implementation.
36
+
37
+ ## Design Experiments
38
+
39
+ When a mechanic is uncertain:
40
+
41
+ 1. Define two variants with specific parameter differences.
42
+ 2. Create a playtest issue specifying what to compare and how to measure.
43
+ 3. After results, commit to one direction and document why.
44
+
45
+ ## Rules
46
+
47
+ - Fun is measurable. "Players quit at level 3" is data. "The game needs to be more fun" is not actionable.
48
+ - Design the minimum viable game first. Scope down ruthlessly. What's the smallest thing that's fun to play?
49
+ - The GDD is alive. Update it every heartbeat if needed. A stale GDD is worse than no GDD.
50
+ - Tuning values are never final. Document your reasoning so future changes have context.
51
+ - Playtest early, playtest often. Paper design only gets you so far.