omgkit 2.10.1 → 2.12.0

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 (35) hide show
  1. package/README.md +46 -1
  2. package/package.json +2 -1
  3. package/plugin/agents/autonomous-orchestrator.yaml +215 -0
  4. package/plugin/commands/auto/approve.md +258 -0
  5. package/plugin/commands/auto/checkpoint.md +253 -0
  6. package/plugin/commands/auto/init.md +236 -0
  7. package/plugin/commands/auto/next.md +278 -0
  8. package/plugin/commands/auto/reject.md +278 -0
  9. package/plugin/commands/auto/resume.md +233 -0
  10. package/plugin/commands/auto/start.md +212 -0
  11. package/plugin/commands/auto/status.md +212 -0
  12. package/plugin/commands/auto/verify.md +353 -0
  13. package/plugin/skills/autonomous/project-orchestration/SKILL.md +332 -0
  14. package/plugin/templates/autonomous/archetypes/ai-model-building.yaml +443 -0
  15. package/plugin/templates/autonomous/archetypes/ai-powered-app.yaml +420 -0
  16. package/plugin/templates/autonomous/archetypes/api-service.yaml +78 -0
  17. package/plugin/templates/autonomous/archetypes/cli-tool.yaml +67 -0
  18. package/plugin/templates/autonomous/archetypes/desktop-app.yaml +371 -0
  19. package/plugin/templates/autonomous/archetypes/fullstack-app.yaml +97 -0
  20. package/plugin/templates/autonomous/archetypes/game-app.yaml +428 -0
  21. package/plugin/templates/autonomous/archetypes/iot-app.yaml +415 -0
  22. package/plugin/templates/autonomous/archetypes/library.yaml +64 -0
  23. package/plugin/templates/autonomous/archetypes/mobile-app.yaml +356 -0
  24. package/plugin/templates/autonomous/archetypes/saas-mvp.yaml +417 -0
  25. package/plugin/templates/autonomous/archetypes/simulation-app.yaml +428 -0
  26. package/plugin/templates/autonomous/artifacts-schema.yaml +465 -0
  27. package/plugin/templates/autonomous/decision-framework.yaml +337 -0
  28. package/plugin/templates/autonomous/discovery-questions.yaml +795 -0
  29. package/plugin/templates/autonomous/features-schema.yaml +254 -0
  30. package/plugin/templates/autonomous/memory-system.yaml +298 -0
  31. package/plugin/templates/autonomous/prd-template.md +251 -0
  32. package/plugin/templates/autonomous/state-schema.yaml +487 -0
  33. package/plugin/workflows/autonomous/discovery.yaml +232 -0
  34. package/plugin/workflows/autonomous/execution.yaml +275 -0
  35. package/plugin/workflows/autonomous/planning.yaml +244 -0
@@ -0,0 +1,428 @@
1
+ name: "Game Development"
2
+ id: game-app
3
+ description: "Video game with gameplay mechanics, assets pipeline, and platform deployment"
4
+ estimated_duration: "6-12 weeks"
5
+ icon: "gamepad"
6
+
7
+ # Default technology recommendations
8
+ defaults:
9
+ engine: unity
10
+ language: csharp
11
+ art_pipeline: blender
12
+ audio: fmod
13
+ version_control: git_lfs
14
+ ci: unity_cloud_build
15
+
16
+ # Alternative technology stacks
17
+ alternatives:
18
+ engine:
19
+ - id: unity
20
+ name: "Unity (C#)"
21
+ description: "Most popular, cross-platform, large asset store"
22
+ - id: unreal
23
+ name: "Unreal Engine (C++/Blueprints)"
24
+ description: "AAA quality, best graphics"
25
+ - id: godot
26
+ name: "Godot"
27
+ description: "Open-source, lightweight, GDScript"
28
+ - id: phaser
29
+ name: "Phaser.js"
30
+ description: "Web games, 2D focused"
31
+ - id: bevy
32
+ name: "Bevy (Rust)"
33
+ description: "Modern ECS, data-driven"
34
+
35
+ # Phases of development
36
+ phases:
37
+ - id: discovery
38
+ name: "Game Concept"
39
+ description: "Define game concept, genre, and target platforms"
40
+ order: 1
41
+ checkpoint: true
42
+ checkpoint_message: |
43
+ Game concept complete. Review:
44
+ - Core game concept and mechanics
45
+ - Target platforms
46
+ - Art style direction
47
+ - Scope and timeline
48
+
49
+ Approve to proceed with design.
50
+
51
+ steps:
52
+ - id: concept_definition
53
+ name: "Concept Definition"
54
+ agent: planner
55
+ description: "Define core game concept"
56
+
57
+ - id: genre_mechanics
58
+ name: "Genre & Mechanics"
59
+ agent: planner
60
+ description: "Define genre and core mechanics"
61
+
62
+ - id: platform_selection
63
+ name: "Platform Selection"
64
+ agent: architect
65
+ description: "Select target platforms"
66
+
67
+ - id: scope_estimation
68
+ name: "Scope Estimation"
69
+ agent: planner
70
+ description: "Estimate development scope"
71
+
72
+ outputs:
73
+ - ".omgkit/generated/game-concept.md"
74
+ - ".omgkit/generated/platform-targets.md"
75
+
76
+ - id: design
77
+ name: "Game Design Document"
78
+ description: "Create detailed game design document"
79
+ order: 2
80
+ checkpoint: true
81
+ checkpoint_message: |
82
+ Game design document complete. Review:
83
+ - Gameplay mechanics in detail
84
+ - Progression system
85
+ - Level design approach
86
+ - Art and audio direction
87
+
88
+ Approve to begin foundation.
89
+
90
+ steps:
91
+ - id: gdd_core
92
+ name: "Core Mechanics GDD"
93
+ agent: planner
94
+ description: "Document core gameplay mechanics"
95
+
96
+ - id: progression
97
+ name: "Progression Design"
98
+ agent: planner
99
+ description: "Design progression systems"
100
+
101
+ - id: level_design
102
+ name: "Level Design Doc"
103
+ agent: planner
104
+ description: "Plan level design approach"
105
+
106
+ - id: art_direction
107
+ name: "Art Direction"
108
+ agent: ui-ux-designer
109
+ description: "Define art style and direction"
110
+
111
+ - id: audio_direction
112
+ name: "Audio Direction"
113
+ agent: planner
114
+ description: "Define audio style and needs"
115
+
116
+ outputs:
117
+ - ".omgkit/generated/gdd.md"
118
+ - ".omgkit/generated/art-bible.md"
119
+ - ".omgkit/generated/audio-design.md"
120
+
121
+ - id: foundation
122
+ name: "Engine Foundation"
123
+ description: "Set up game engine and core systems"
124
+ order: 3
125
+ checkpoint: false
126
+
127
+ steps:
128
+ - id: project_setup
129
+ name: "Project Setup"
130
+ agent: fullstack-developer
131
+ description: "Initialize game project"
132
+
133
+ - id: input_system
134
+ name: "Input System"
135
+ agent: fullstack-developer
136
+ description: "Implement input handling"
137
+
138
+ - id: physics_setup
139
+ name: "Physics Setup"
140
+ agent: fullstack-developer
141
+ description: "Configure physics engine"
142
+
143
+ - id: camera_system
144
+ name: "Camera System"
145
+ agent: fullstack-developer
146
+ description: "Implement camera controls"
147
+
148
+ - id: scene_management
149
+ name: "Scene Management"
150
+ agent: fullstack-developer
151
+ description: "Set up scene loading"
152
+
153
+ outputs:
154
+ - "Assets/Scripts/Core/"
155
+ - "Assets/Scripts/Input/"
156
+ - "Assets/Scripts/Camera/"
157
+
158
+ - id: core_gameplay
159
+ name: "Core Gameplay"
160
+ description: "Implement main player mechanics and game loop"
161
+ order: 4
162
+ checkpoint: true
163
+ checkpoint_message: |
164
+ Core gameplay complete. Review:
165
+ - Player mechanics feel good
166
+ - Game loop is functional
167
+ - Core systems working
168
+
169
+ Approve to add content.
170
+
171
+ steps:
172
+ - id: player_controller
173
+ name: "Player Controller"
174
+ agent: fullstack-developer
175
+ description: "Implement player movement and actions"
176
+
177
+ - id: game_loop
178
+ name: "Game Loop"
179
+ agent: fullstack-developer
180
+ description: "Implement main game loop"
181
+
182
+ - id: enemy_ai
183
+ name: "Enemy AI"
184
+ agent: fullstack-developer
185
+ description: "Implement basic enemy AI"
186
+
187
+ - id: combat_system
188
+ name: "Combat/Interaction"
189
+ agent: fullstack-developer
190
+ description: "Implement combat or interaction system"
191
+
192
+ - id: progression_system
193
+ name: "Progression System"
194
+ agent: fullstack-developer
195
+ description: "Implement progression mechanics"
196
+
197
+ outputs:
198
+ - "Assets/Scripts/Player/"
199
+ - "Assets/Scripts/Enemy/"
200
+ - "Assets/Scripts/Combat/"
201
+ - "Assets/Scripts/Progression/"
202
+
203
+ - id: content
204
+ name: "Content Creation"
205
+ description: "Create levels, assets, characters, and audio"
206
+ order: 5
207
+ checkpoint: true
208
+ checkpoint_message: |
209
+ Content creation progress. Review:
210
+ - Level content
211
+ - Art assets
212
+ - Audio implementation
213
+
214
+ Approve to proceed with polish.
215
+
216
+ steps:
217
+ - id: level_creation
218
+ name: "Level Creation"
219
+ agent: fullstack-developer
220
+ description: "Build game levels"
221
+
222
+ - id: art_integration
223
+ name: "Art Integration"
224
+ agent: ui-ux-designer
225
+ description: "Integrate art assets"
226
+
227
+ - id: character_setup
228
+ name: "Character Setup"
229
+ agent: fullstack-developer
230
+ description: "Set up characters and animations"
231
+
232
+ - id: audio_integration
233
+ name: "Audio Integration"
234
+ agent: fullstack-developer
235
+ description: "Integrate sound effects and music"
236
+
237
+ outputs:
238
+ - "Assets/Scenes/"
239
+ - "Assets/Art/"
240
+ - "Assets/Audio/"
241
+ - "Assets/Characters/"
242
+
243
+ - id: polish
244
+ name: "Polish & Effects"
245
+ description: "UI/UX, animations, effects, and optimization"
246
+ order: 6
247
+ checkpoint: true
248
+ checkpoint_message: |
249
+ Polish phase complete. Review:
250
+ - UI/UX quality
251
+ - Visual effects
252
+ - Performance optimization
253
+
254
+ Approve for multiplayer or release prep.
255
+
256
+ steps:
257
+ - id: ui_implementation
258
+ name: "UI Implementation"
259
+ agent: ui-ux-designer
260
+ description: "Build game UI"
261
+
262
+ - id: visual_effects
263
+ name: "Visual Effects"
264
+ agent: fullstack-developer
265
+ description: "Add particle effects and polish"
266
+
267
+ - id: animation_polish
268
+ name: "Animation Polish"
269
+ agent: fullstack-developer
270
+ description: "Polish animations and transitions"
271
+
272
+ - id: performance
273
+ name: "Performance Optimization"
274
+ agent: fullstack-developer
275
+ description: "Optimize for target platforms"
276
+
277
+ - id: accessibility
278
+ name: "Accessibility"
279
+ agent: ui-ux-designer
280
+ description: "Add accessibility features"
281
+
282
+ outputs:
283
+ - "Assets/Scripts/UI/"
284
+ - "Assets/VFX/"
285
+
286
+ - id: multiplayer
287
+ name: "Multiplayer (Optional)"
288
+ description: "Networking, matchmaking, and multiplayer features"
289
+ order: 7
290
+ checkpoint: true
291
+ optional: true
292
+ checkpoint_message: |
293
+ Multiplayer implementation complete. Review:
294
+ - Network stability
295
+ - Matchmaking flow
296
+ - Anti-cheat measures
297
+
298
+ Approve for release preparation.
299
+
300
+ steps:
301
+ - id: networking
302
+ name: "Networking Setup"
303
+ agent: fullstack-developer
304
+ description: "Implement networking layer"
305
+
306
+ - id: matchmaking
307
+ name: "Matchmaking"
308
+ agent: fullstack-developer
309
+ description: "Build matchmaking system"
310
+
311
+ - id: sync
312
+ name: "State Synchronization"
313
+ agent: fullstack-developer
314
+ description: "Sync game state across clients"
315
+
316
+ - id: anti_cheat
317
+ name: "Anti-Cheat"
318
+ agent: security-auditor
319
+ description: "Implement anti-cheat measures"
320
+
321
+ outputs:
322
+ - "Assets/Scripts/Networking/"
323
+ - "Assets/Scripts/Matchmaking/"
324
+
325
+ - id: release
326
+ name: "Release Preparation"
327
+ description: "Playtesting, store submission, and analytics"
328
+ order: 8
329
+ checkpoint: true
330
+ checkpoint_message: |
331
+ Release preparation complete. Review:
332
+ - Playtest feedback addressed
333
+ - Store assets ready
334
+ - Analytics configured
335
+
336
+ This is the final checkpoint before release.
337
+
338
+ steps:
339
+ - id: playtesting
340
+ name: "Playtesting"
341
+ agent: tester
342
+ description: "Conduct playtesting sessions"
343
+
344
+ - id: bug_fixing
345
+ name: "Bug Fixing"
346
+ agent: fullstack-developer
347
+ description: "Fix critical bugs"
348
+
349
+ - id: store_assets
350
+ name: "Store Assets"
351
+ agent: copywriter
352
+ description: "Create store listings and assets"
353
+
354
+ - id: analytics
355
+ name: "Analytics Setup"
356
+ agent: fullstack-developer
357
+ description: "Integrate analytics"
358
+
359
+ - id: store_submission
360
+ name: "Store Submission"
361
+ agent: cicd-manager
362
+ description: "Submit to platforms"
363
+
364
+ outputs:
365
+ - "Builds/"
366
+ - "Marketing/"
367
+
368
+ # Autonomy rules for this archetype
369
+ autonomy_rules:
370
+ - pattern: "**/Scripts/**"
371
+ level: 2
372
+ reason: "Game scripts need review"
373
+ - pattern: "**/Core/**"
374
+ level: 3
375
+ reason: "Core systems are critical"
376
+ - pattern: "**/Networking/**"
377
+ level: 3
378
+ reason: "Networking is complex"
379
+ - pattern: "**/Scenes/**"
380
+ level: 1
381
+ reason: "Level changes are low risk"
382
+ - pattern: "ProjectSettings/**"
383
+ level: 3
384
+ reason: "Project settings are critical"
385
+
386
+ # Quality gates
387
+ quality_gates:
388
+ after_feature:
389
+ - "game builds successfully"
390
+ - "no console errors"
391
+ before_checkpoint:
392
+ - "playtesting feedback positive"
393
+ - "performance targets met"
394
+ before_deploy:
395
+ - "all platforms tested"
396
+ - "store requirements met"
397
+ - "age rating approved"
398
+
399
+ # Game-specific discovery questions
400
+ discovery_additions:
401
+ - category: "Game Concept"
402
+ questions:
403
+ - "What genre? (platformer, RPG, FPS, puzzle, etc.)"
404
+ - "Single-player, multiplayer, or both?"
405
+ - "Target playtime per session?"
406
+ - "Core gameplay hook?"
407
+ - "Similar games for reference?"
408
+
409
+ - category: "Platforms"
410
+ questions:
411
+ - "Target platforms? (PC, console, mobile, web)"
412
+ - "Cross-platform play needed?"
413
+ - "Controller support required?"
414
+ - "VR/AR support?"
415
+
416
+ - category: "Content"
417
+ questions:
418
+ - "Art style? (realistic, stylized, pixel art, etc.)"
419
+ - "Do you have art assets or need creation?"
420
+ - "Audio needs? (original score, sound effects)"
421
+ - "Estimated content volume? (levels, characters)"
422
+
423
+ - category: "Monetization"
424
+ questions:
425
+ - "Business model? (premium, F2P, subscription)"
426
+ - "In-app purchases planned?"
427
+ - "Ads integration needed?"
428
+ - "DLC or expansion plans?"