@trac3er/oh-my-god 1.0.2

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 (229) hide show
  1. package/.claude-plugin/marketplace.json +36 -0
  2. package/.claude-plugin/plugin.json +23 -0
  3. package/.claude-plugin/scripts/install.sh +49 -0
  4. package/.claude-plugin/scripts/uninstall.sh +80 -0
  5. package/.claude-plugin/scripts/update.sh +84 -0
  6. package/.mcp.json +20 -0
  7. package/LICENSE +21 -0
  8. package/OMG-setup.sh +1093 -0
  9. package/README.md +335 -0
  10. package/THIRD_PARTY_NOTICES.md +24 -0
  11. package/UPSTREAM_DIFF.md +20 -0
  12. package/agents/__init__.py +1 -0
  13. package/agents/_model_roles.yaml +26 -0
  14. package/agents/designer.md +67 -0
  15. package/agents/explore.md +60 -0
  16. package/agents/model_roles.py +196 -0
  17. package/agents/omg-api-builder.md +23 -0
  18. package/agents/omg-architect-mode.md +43 -0
  19. package/agents/omg-architect.md +13 -0
  20. package/agents/omg-backend-engineer.md +43 -0
  21. package/agents/omg-critic.md +16 -0
  22. package/agents/omg-database-engineer.md +43 -0
  23. package/agents/omg-escalation-router.md +17 -0
  24. package/agents/omg-executor.md +12 -0
  25. package/agents/omg-frontend-designer.md +42 -0
  26. package/agents/omg-implement-mode.md +50 -0
  27. package/agents/omg-infra-engineer.md +43 -0
  28. package/agents/omg-qa-tester.md +16 -0
  29. package/agents/omg-research-mode.md +43 -0
  30. package/agents/omg-security-auditor.md +43 -0
  31. package/agents/omg-testing-engineer.md +43 -0
  32. package/agents/plan.md +80 -0
  33. package/agents/quick_task.md +64 -0
  34. package/agents/reviewer.md +83 -0
  35. package/agents/task.md +71 -0
  36. package/commands/OMG:ccg.md +22 -0
  37. package/commands/OMG:compat.md +57 -0
  38. package/commands/OMG:crazy.md +125 -0
  39. package/commands/OMG:domain-init.md +11 -0
  40. package/commands/OMG:escalate.md +52 -0
  41. package/commands/OMG:health-check.md +45 -0
  42. package/commands/OMG:init.md +134 -0
  43. package/commands/OMG:mode.md +44 -0
  44. package/commands/OMG:project-init.md +11 -0
  45. package/commands/OMG:ralph-start.md +43 -0
  46. package/commands/OMG:ralph-stop.md +23 -0
  47. package/commands/OMG:teams.md +39 -0
  48. package/commands/ai-commit.md +113 -0
  49. package/commands/ccg.md +9 -0
  50. package/commands/create-agent.md +183 -0
  51. package/commands/omc-teams.md +9 -0
  52. package/commands/session-branch.md +85 -0
  53. package/commands/session-fork.md +53 -0
  54. package/commands/session-merge.md +134 -0
  55. package/commands/theme.md +44 -0
  56. package/config/lsp_languages.yaml +324 -0
  57. package/config/themes/catppuccin-frappe.yaml +14 -0
  58. package/config/themes/catppuccin-latte.yaml +14 -0
  59. package/config/themes/catppuccin-macchiato.yaml +14 -0
  60. package/config/themes/catppuccin-mocha.yaml +14 -0
  61. package/config/themes/dracula.yaml +14 -0
  62. package/config/themes/gruvbox-dark.yaml +14 -0
  63. package/config/themes/nord.yaml +14 -0
  64. package/config/themes/one-dark.yaml +14 -0
  65. package/config/themes/solarized-dark.yaml +14 -0
  66. package/config/themes/tokyo-night.yaml +14 -0
  67. package/control_plane/__init__.py +2 -0
  68. package/control_plane/openapi.yaml +109 -0
  69. package/control_plane/server.py +107 -0
  70. package/control_plane/service.py +148 -0
  71. package/crates/omg-natives/Cargo.toml +17 -0
  72. package/crates/omg-natives/src/clipboard.rs +5 -0
  73. package/crates/omg-natives/src/glob.rs +15 -0
  74. package/crates/omg-natives/src/grep.rs +15 -0
  75. package/crates/omg-natives/src/highlight.rs +15 -0
  76. package/crates/omg-natives/src/html.rs +14 -0
  77. package/crates/omg-natives/src/image.rs +5 -0
  78. package/crates/omg-natives/src/keys.rs +5 -0
  79. package/crates/omg-natives/src/lib.rs +36 -0
  80. package/crates/omg-natives/src/prof.rs +5 -0
  81. package/crates/omg-natives/src/ps.rs +5 -0
  82. package/crates/omg-natives/src/shell.rs +5 -0
  83. package/crates/omg-natives/src/task.rs +5 -0
  84. package/crates/omg-natives/src/text.rs +14 -0
  85. package/hooks/_agent_registry.py +421 -0
  86. package/hooks/_budget.py +31 -0
  87. package/hooks/_common.py +476 -0
  88. package/hooks/_learnings.py +126 -0
  89. package/hooks/_memory.py +103 -0
  90. package/hooks/circuit-breaker.py +270 -0
  91. package/hooks/config-guard.py +163 -0
  92. package/hooks/context_pressure.py +53 -0
  93. package/hooks/credential_store.py +801 -0
  94. package/hooks/fetch-rate-limits.py +212 -0
  95. package/hooks/firewall.py +48 -0
  96. package/hooks/hashline-formatter-bridge.py +224 -0
  97. package/hooks/hashline-injector.py +273 -0
  98. package/hooks/hashline-validator.py +216 -0
  99. package/hooks/idle-detector.py +95 -0
  100. package/hooks/intentgate-keyword-detector.py +188 -0
  101. package/hooks/magic-keyword-router.py +195 -0
  102. package/hooks/policy_engine.py +310 -0
  103. package/hooks/post-tool-failure.py +19 -0
  104. package/hooks/post-write.py +199 -0
  105. package/hooks/pre-compact.py +204 -0
  106. package/hooks/pre-tool-inject.py +98 -0
  107. package/hooks/prompt-enhancer.py +672 -0
  108. package/hooks/quality-runner.py +191 -0
  109. package/hooks/secret-guard.py +47 -0
  110. package/hooks/session-end-capture.py +137 -0
  111. package/hooks/session-start.py +275 -0
  112. package/hooks/shadow_manager.py +297 -0
  113. package/hooks/state_migration.py +209 -0
  114. package/hooks/stop-gate.py +7 -0
  115. package/hooks/stop_dispatcher.py +929 -0
  116. package/hooks/test-validator.py +138 -0
  117. package/hooks/todo-state-tracker.py +114 -0
  118. package/hooks/tool-ledger.py +126 -0
  119. package/hooks/trust_review.py +524 -0
  120. package/install.sh +9 -0
  121. package/omg_natives/__init__.py +186 -0
  122. package/omg_natives/_bindings.py +165 -0
  123. package/omg_natives/clipboard.py +36 -0
  124. package/omg_natives/glob.py +42 -0
  125. package/omg_natives/grep.py +61 -0
  126. package/omg_natives/highlight.py +54 -0
  127. package/omg_natives/html.py +157 -0
  128. package/omg_natives/image.py +51 -0
  129. package/omg_natives/keys.py +46 -0
  130. package/omg_natives/prof.py +39 -0
  131. package/omg_natives/ps.py +93 -0
  132. package/omg_natives/shell.py +58 -0
  133. package/omg_natives/task.py +41 -0
  134. package/omg_natives/text.py +50 -0
  135. package/package.json +26 -0
  136. package/plugins/README.md +82 -0
  137. package/plugins/advanced/commands/OMG:code-review.md +114 -0
  138. package/plugins/advanced/commands/OMG:deep-plan.md +221 -0
  139. package/plugins/advanced/commands/OMG:handoff.md +115 -0
  140. package/plugins/advanced/commands/OMG:learn.md +110 -0
  141. package/plugins/advanced/commands/OMG:maintainer.md +31 -0
  142. package/plugins/advanced/commands/OMG:ralph-start.md +43 -0
  143. package/plugins/advanced/commands/OMG:ralph-stop.md +23 -0
  144. package/plugins/advanced/commands/OMG:security-review.md +119 -0
  145. package/plugins/advanced/commands/OMG:sequential-thinking.md +20 -0
  146. package/plugins/advanced/commands/OMG:ship.md +46 -0
  147. package/plugins/advanced/plugin.json +96 -0
  148. package/plugins/core/plugin.json +82 -0
  149. package/pytest.ini +5 -0
  150. package/registry/__init__.py +1 -0
  151. package/registry/verify_artifact.py +90 -0
  152. package/rules/contextual/architect-mode.md +9 -0
  153. package/rules/contextual/big-picture.md +20 -0
  154. package/rules/contextual/code-hygiene.md +26 -0
  155. package/rules/contextual/context-management.md +19 -0
  156. package/rules/contextual/context-minimization.md +32 -0
  157. package/rules/contextual/ddd-sdd.md +28 -0
  158. package/rules/contextual/dependency-safety.md +16 -0
  159. package/rules/contextual/doc-check.md +13 -0
  160. package/rules/contextual/implement-mode.md +9 -0
  161. package/rules/contextual/infra-safety.md +14 -0
  162. package/rules/contextual/outside-in.md +13 -0
  163. package/rules/contextual/persistent-mode.md +24 -0
  164. package/rules/contextual/research-mode.md +9 -0
  165. package/rules/contextual/security-domains.md +25 -0
  166. package/rules/contextual/vision-detection.md +27 -0
  167. package/rules/contextual/web-search.md +25 -0
  168. package/rules/contextual/write-verify.md +23 -0
  169. package/rules/core/00-truth.md +20 -0
  170. package/rules/core/01-surgical.md +19 -0
  171. package/rules/core/02-circuit-breaker.md +22 -0
  172. package/rules/core/03-ensemble.md +28 -0
  173. package/rules/core/04-testing.md +30 -0
  174. package/runtime/__init__.py +32 -0
  175. package/runtime/adapters/__init__.py +13 -0
  176. package/runtime/adapters/claude.py +60 -0
  177. package/runtime/adapters/gpt.py +53 -0
  178. package/runtime/adapters/local.py +53 -0
  179. package/runtime/business_workflow.py +220 -0
  180. package/runtime/compat.py +1299 -0
  181. package/runtime/custom_agent_loader.py +366 -0
  182. package/runtime/dispatcher.py +47 -0
  183. package/runtime/ecosystem.py +371 -0
  184. package/runtime/legacy_compat.py +7 -0
  185. package/runtime/omc_compat.py +7 -0
  186. package/runtime/omc_contract_snapshot.json +916 -0
  187. package/runtime/omg_compat_contract_snapshot.json +916 -0
  188. package/runtime/subagent_dispatcher.py +362 -0
  189. package/runtime/team_router.py +838 -0
  190. package/scripts/check-omc-contract-snapshot.py +12 -0
  191. package/scripts/check-omg-compat-contract-snapshot.py +137 -0
  192. package/scripts/check-omg-standalone-clean.py +102 -0
  193. package/scripts/legacy_to_omg_migrate.py +29 -0
  194. package/scripts/migrate-omc.py +464 -0
  195. package/scripts/omc_to_omg_migrate.py +12 -0
  196. package/scripts/omg.py +493 -0
  197. package/scripts/settings-merge.py +224 -0
  198. package/scripts/verify-no-omc.sh +5 -0
  199. package/scripts/verify-standalone.sh +21 -0
  200. package/templates/idea.yml +30 -0
  201. package/templates/policy.yaml +15 -0
  202. package/templates/profile.yaml +25 -0
  203. package/templates/runtime.yaml +12 -0
  204. package/templates/working-memory.md +17 -0
  205. package/tools/__init__.py +2 -0
  206. package/tools/browser_consent.py +289 -0
  207. package/tools/browser_stealth.py +481 -0
  208. package/tools/browser_tool.py +448 -0
  209. package/tools/changelog_generator.py +268 -0
  210. package/tools/commit_splitter.py +361 -0
  211. package/tools/config_discovery.py +151 -0
  212. package/tools/config_merger.py +449 -0
  213. package/tools/git_inspector.py +298 -0
  214. package/tools/lsp_client.py +275 -0
  215. package/tools/lsp_discovery.py +231 -0
  216. package/tools/lsp_operations.py +392 -0
  217. package/tools/python_repl.py +656 -0
  218. package/tools/python_sandbox.py +609 -0
  219. package/tools/search_providers/__init__.py +77 -0
  220. package/tools/search_providers/brave.py +115 -0
  221. package/tools/search_providers/exa.py +116 -0
  222. package/tools/search_providers/jina.py +104 -0
  223. package/tools/search_providers/perplexity.py +139 -0
  224. package/tools/search_providers/synthetic.py +74 -0
  225. package/tools/session_snapshot.py +736 -0
  226. package/tools/ssh_manager.py +912 -0
  227. package/tools/theme_engine.py +294 -0
  228. package/tools/theme_selector.py +137 -0
  229. package/tools/web_search.py +622 -0
@@ -0,0 +1,916 @@
1
+ {
2
+ "schema": "OmgCompatContractSnapshot",
3
+ "contract_version": "1.0.0",
4
+ "count": 47,
5
+ "contracts": [
6
+ {
7
+ "skill": "analyze",
8
+ "route": "maintainer",
9
+ "maturity": "native",
10
+ "inputs": {
11
+ "required": [
12
+ "problem"
13
+ ],
14
+ "optional": [
15
+ "context"
16
+ ]
17
+ },
18
+ "outputs": {
19
+ "schema": "AnalysisCompatArtifact"
20
+ },
21
+ "side_effects": [
22
+ ".omg/evidence/analysis-analyze.json"
23
+ ],
24
+ "notes": "Writes structured analysis evidence artifact."
25
+ },
26
+ {
27
+ "skill": "autopilot",
28
+ "route": "runtime_ship",
29
+ "maturity": "native",
30
+ "inputs": {
31
+ "required": [
32
+ "problem"
33
+ ],
34
+ "optional": [
35
+ "expected_outcome"
36
+ ]
37
+ },
38
+ "outputs": {
39
+ "schema": "RuntimeDispatchResult"
40
+ },
41
+ "side_effects": [
42
+ ".omg/state/persistent-mode.json"
43
+ ],
44
+ "notes": ""
45
+ },
46
+ {
47
+ "skill": "beads",
48
+ "route": "maintainer",
49
+ "maturity": "native",
50
+ "inputs": {
51
+ "required": [
52
+ "problem"
53
+ ],
54
+ "optional": [
55
+ "context"
56
+ ]
57
+ },
58
+ "outputs": {
59
+ "schema": "MaintainerCompatArtifact"
60
+ },
61
+ "side_effects": [
62
+ ".omg/evidence/compat-beads.json"
63
+ ],
64
+ "notes": "Maps to maintainer route for context engineering artifacts."
65
+ },
66
+ {
67
+ "skill": "build-fix",
68
+ "route": "runtime_ship",
69
+ "maturity": "native",
70
+ "inputs": {
71
+ "required": [
72
+ "problem"
73
+ ],
74
+ "optional": [
75
+ "expected_outcome"
76
+ ]
77
+ },
78
+ "outputs": {
79
+ "schema": "RuntimeDispatchResult"
80
+ },
81
+ "side_effects": [
82
+ ".omg/state/build-fix.md"
83
+ ],
84
+ "notes": "Creates targeted fix checklist and routes execution to runtime."
85
+ },
86
+ {
87
+ "skill": "cancel",
88
+ "route": "cancel",
89
+ "maturity": "native",
90
+ "inputs": {
91
+ "required": [],
92
+ "optional": []
93
+ },
94
+ "outputs": {
95
+ "schema": "CancelResult"
96
+ },
97
+ "side_effects": [
98
+ ".omg/shadow/active-run (removed when exists)"
99
+ ],
100
+ "notes": ""
101
+ },
102
+ {
103
+ "skill": "ccg",
104
+ "route": "ccg",
105
+ "maturity": "native",
106
+ "inputs": {
107
+ "required": [
108
+ "problem"
109
+ ],
110
+ "optional": [
111
+ "context",
112
+ "files",
113
+ "expected_outcome"
114
+ ]
115
+ },
116
+ "outputs": {
117
+ "schema": "TeamDispatchResult"
118
+ },
119
+ "side_effects": [],
120
+ "notes": ""
121
+ },
122
+ {
123
+ "skill": "claude-flow",
124
+ "route": "ccg",
125
+ "maturity": "native",
126
+ "inputs": {
127
+ "required": [
128
+ "problem"
129
+ ],
130
+ "optional": [
131
+ "context",
132
+ "files",
133
+ "expected_outcome"
134
+ ]
135
+ },
136
+ "outputs": {
137
+ "schema": "TeamDispatchResult"
138
+ },
139
+ "side_effects": [],
140
+ "notes": "Maps to CCG route for multi-agent orchestration semantics."
141
+ },
142
+ {
143
+ "skill": "claude-mem",
144
+ "route": "memory",
145
+ "maturity": "native",
146
+ "inputs": {
147
+ "required": [
148
+ "problem"
149
+ ],
150
+ "optional": [
151
+ "context"
152
+ ]
153
+ },
154
+ "outputs": {
155
+ "schema": "StateMutationResult"
156
+ },
157
+ "side_effects": [
158
+ ".omg/state/working-memory.md"
159
+ ],
160
+ "notes": "Maps to memory route for durable working-context updates."
161
+ },
162
+ {
163
+ "skill": "code-review",
164
+ "route": "review",
165
+ "maturity": "native",
166
+ "inputs": {
167
+ "required": [
168
+ "problem"
169
+ ],
170
+ "optional": [
171
+ "context",
172
+ "files"
173
+ ]
174
+ },
175
+ "outputs": {
176
+ "schema": "ReviewSynthesis"
177
+ },
178
+ "side_effects": [],
179
+ "notes": ""
180
+ },
181
+ {
182
+ "skill": "compound-engineering",
183
+ "route": "ccg",
184
+ "maturity": "native",
185
+ "inputs": {
186
+ "required": [
187
+ "problem"
188
+ ],
189
+ "optional": [
190
+ "context",
191
+ "files",
192
+ "expected_outcome"
193
+ ]
194
+ },
195
+ "outputs": {
196
+ "schema": "TeamDispatchResult"
197
+ },
198
+ "side_effects": [],
199
+ "notes": "Maps to CCG route for compounding, iterative orchestration."
200
+ },
201
+ {
202
+ "skill": "compounding-engineering",
203
+ "route": "ccg",
204
+ "maturity": "native",
205
+ "inputs": {
206
+ "required": [
207
+ "problem"
208
+ ],
209
+ "optional": [
210
+ "context",
211
+ "files",
212
+ "expected_outcome"
213
+ ]
214
+ },
215
+ "outputs": {
216
+ "schema": "TeamDispatchResult"
217
+ },
218
+ "side_effects": [],
219
+ "notes": "Alias to compound-engineering orchestration route."
220
+ },
221
+ {
222
+ "skill": "configure-notifications",
223
+ "route": "health",
224
+ "maturity": "native",
225
+ "inputs": {
226
+ "required": [],
227
+ "optional": [
228
+ "problem"
229
+ ]
230
+ },
231
+ "outputs": {
232
+ "schema": "HealthSnapshot"
233
+ },
234
+ "side_effects": [],
235
+ "notes": ""
236
+ },
237
+ {
238
+ "skill": "configure-openclaw",
239
+ "route": "health",
240
+ "maturity": "native",
241
+ "inputs": {
242
+ "required": [],
243
+ "optional": [
244
+ "problem"
245
+ ]
246
+ },
247
+ "outputs": {
248
+ "schema": "HealthSnapshot"
249
+ },
250
+ "side_effects": [],
251
+ "notes": ""
252
+ },
253
+ {
254
+ "skill": "deepinit",
255
+ "route": "init",
256
+ "maturity": "native",
257
+ "inputs": {
258
+ "required": [],
259
+ "optional": [
260
+ "problem"
261
+ ]
262
+ },
263
+ "outputs": {
264
+ "schema": "BootstrapResult"
265
+ },
266
+ "side_effects": [
267
+ ".omg/state/*",
268
+ ".omg/idea.yml",
269
+ ".omg/policy.yaml",
270
+ ".omg/runtime.yaml"
271
+ ],
272
+ "notes": ""
273
+ },
274
+ {
275
+ "skill": "external-context",
276
+ "route": "teams",
277
+ "maturity": "native",
278
+ "inputs": {
279
+ "required": [
280
+ "problem"
281
+ ],
282
+ "optional": [
283
+ "context",
284
+ "files",
285
+ "expected_outcome"
286
+ ]
287
+ },
288
+ "outputs": {
289
+ "schema": "TeamDispatchResult"
290
+ },
291
+ "side_effects": [],
292
+ "notes": ""
293
+ },
294
+ {
295
+ "skill": "hooks-mastery",
296
+ "route": "health",
297
+ "maturity": "native",
298
+ "inputs": {
299
+ "required": [],
300
+ "optional": [
301
+ "problem"
302
+ ]
303
+ },
304
+ "outputs": {
305
+ "schema": "HealthSnapshot"
306
+ },
307
+ "side_effects": [],
308
+ "notes": "Maps to health route for hook quality and readiness checks."
309
+ },
310
+ {
311
+ "skill": "hud",
312
+ "route": "health",
313
+ "maturity": "native",
314
+ "inputs": {
315
+ "required": [],
316
+ "optional": [
317
+ "problem"
318
+ ]
319
+ },
320
+ "outputs": {
321
+ "schema": "HealthSnapshot"
322
+ },
323
+ "side_effects": [],
324
+ "notes": ""
325
+ },
326
+ {
327
+ "skill": "learn-about-omc",
328
+ "route": "learn",
329
+ "maturity": "native",
330
+ "inputs": {
331
+ "required": [
332
+ "problem"
333
+ ],
334
+ "optional": [
335
+ "context"
336
+ ]
337
+ },
338
+ "outputs": {
339
+ "schema": "LearningArtifact"
340
+ },
341
+ "side_effects": [
342
+ ".omg/knowledge/learning/learn-about-omc.md"
343
+ ],
344
+ "notes": ""
345
+ },
346
+ {
347
+ "skill": "learner",
348
+ "route": "learn",
349
+ "maturity": "native",
350
+ "inputs": {
351
+ "required": [
352
+ "problem"
353
+ ],
354
+ "optional": [
355
+ "context"
356
+ ]
357
+ },
358
+ "outputs": {
359
+ "schema": "LearningArtifact"
360
+ },
361
+ "side_effects": [
362
+ ".omg/knowledge/learning/learner.md"
363
+ ],
364
+ "notes": "Writes learning note into .omg/knowledge/learning."
365
+ },
366
+ {
367
+ "skill": "mcp-setup",
368
+ "route": "health",
369
+ "maturity": "native",
370
+ "inputs": {
371
+ "required": [],
372
+ "optional": [
373
+ "problem"
374
+ ]
375
+ },
376
+ "outputs": {
377
+ "schema": "HealthSnapshot"
378
+ },
379
+ "side_effects": [],
380
+ "notes": ""
381
+ },
382
+ {
383
+ "skill": "memsearch",
384
+ "route": "memory",
385
+ "maturity": "native",
386
+ "inputs": {
387
+ "required": [
388
+ "problem"
389
+ ],
390
+ "optional": [
391
+ "context"
392
+ ]
393
+ },
394
+ "outputs": {
395
+ "schema": "StateMutationResult"
396
+ },
397
+ "side_effects": [
398
+ ".omg/state/working-memory.md"
399
+ ],
400
+ "notes": "Maps to memory route for retrieval-oriented context search workflow."
401
+ },
402
+ {
403
+ "skill": "note",
404
+ "route": "memory",
405
+ "maturity": "native",
406
+ "inputs": {
407
+ "required": [
408
+ "problem"
409
+ ],
410
+ "optional": [
411
+ "context"
412
+ ]
413
+ },
414
+ "outputs": {
415
+ "schema": "StateMutationResult"
416
+ },
417
+ "side_effects": [
418
+ ".omg/knowledge/notes.md"
419
+ ],
420
+ "notes": ""
421
+ },
422
+ {
423
+ "skill": "omc-doctor",
424
+ "route": "health",
425
+ "maturity": "native",
426
+ "inputs": {
427
+ "required": [],
428
+ "optional": [
429
+ "problem"
430
+ ]
431
+ },
432
+ "outputs": {
433
+ "schema": "HealthSnapshot"
434
+ },
435
+ "side_effects": [],
436
+ "notes": "Health checks run against OMG standalone layout."
437
+ },
438
+ {
439
+ "skill": "omc-help",
440
+ "route": "help",
441
+ "maturity": "native",
442
+ "inputs": {
443
+ "required": [],
444
+ "optional": []
445
+ },
446
+ "outputs": {
447
+ "schema": "CompatibilityHelp"
448
+ },
449
+ "side_effects": [],
450
+ "notes": ""
451
+ },
452
+ {
453
+ "skill": "omc-setup",
454
+ "route": "init",
455
+ "maturity": "native",
456
+ "inputs": {
457
+ "required": [],
458
+ "optional": [
459
+ "problem"
460
+ ]
461
+ },
462
+ "outputs": {
463
+ "schema": "BootstrapResult"
464
+ },
465
+ "side_effects": [
466
+ ".omg/state/*",
467
+ ".omg/idea.yml",
468
+ ".omg/policy.yaml",
469
+ ".omg/runtime.yaml"
470
+ ],
471
+ "notes": "Bootstraps OMG standalone state and baseline config files."
472
+ },
473
+ {
474
+ "skill": "omc-teams",
475
+ "route": "teams",
476
+ "maturity": "native",
477
+ "inputs": {
478
+ "required": [
479
+ "problem"
480
+ ],
481
+ "optional": [
482
+ "context",
483
+ "files",
484
+ "expected_outcome"
485
+ ]
486
+ },
487
+ "outputs": {
488
+ "schema": "TeamDispatchResult"
489
+ },
490
+ "side_effects": [],
491
+ "notes": "Legacy tmux worker dispatch replaced by internal Team router."
492
+ },
493
+ {
494
+ "skill": "pipeline",
495
+ "route": "pipeline",
496
+ "maturity": "native",
497
+ "inputs": {
498
+ "required": [
499
+ "problem"
500
+ ],
501
+ "optional": [
502
+ "context"
503
+ ]
504
+ },
505
+ "outputs": {
506
+ "schema": "LabPipelineResult"
507
+ },
508
+ "side_effects": [],
509
+ "notes": "Routes to OMG lab policy+pipeline executor."
510
+ },
511
+ {
512
+ "skill": "plan",
513
+ "route": "plan",
514
+ "maturity": "native",
515
+ "inputs": {
516
+ "required": [
517
+ "problem"
518
+ ],
519
+ "optional": [
520
+ "expected_outcome"
521
+ ]
522
+ },
523
+ "outputs": {
524
+ "schema": "PlanningArtifacts"
525
+ },
526
+ "side_effects": [
527
+ ".omg/state/_plan.md",
528
+ ".omg/state/_checklist.md",
529
+ ".omg/idea.yml"
530
+ ],
531
+ "notes": ""
532
+ },
533
+ {
534
+ "skill": "planning-with-files",
535
+ "route": "plan",
536
+ "maturity": "native",
537
+ "inputs": {
538
+ "required": [
539
+ "problem"
540
+ ],
541
+ "optional": [
542
+ "expected_outcome"
543
+ ]
544
+ },
545
+ "outputs": {
546
+ "schema": "PlanningArtifacts"
547
+ },
548
+ "side_effects": [
549
+ ".omg/state/_plan.md",
550
+ ".omg/state/_checklist.md"
551
+ ],
552
+ "notes": "Strengthens file-native planning artifacts in .omg/state."
553
+ },
554
+ {
555
+ "skill": "project-session-manager",
556
+ "route": "memory",
557
+ "maturity": "native",
558
+ "inputs": {
559
+ "required": [
560
+ "problem"
561
+ ],
562
+ "optional": [
563
+ "context"
564
+ ]
565
+ },
566
+ "outputs": {
567
+ "schema": "SessionState"
568
+ },
569
+ "side_effects": [
570
+ ".omg/state/session.json"
571
+ ],
572
+ "notes": "Session metadata maintained in .omg/state/session.json."
573
+ },
574
+ {
575
+ "skill": "ralph",
576
+ "route": "runtime_ship",
577
+ "maturity": "native",
578
+ "inputs": {
579
+ "required": [
580
+ "problem"
581
+ ],
582
+ "optional": [
583
+ "expected_outcome"
584
+ ]
585
+ },
586
+ "outputs": {
587
+ "schema": "RuntimeDispatchResult"
588
+ },
589
+ "side_effects": [
590
+ ".omg/state/persistent-mode.json"
591
+ ],
592
+ "notes": ""
593
+ },
594
+ {
595
+ "skill": "ralph-init",
596
+ "route": "init",
597
+ "maturity": "native",
598
+ "inputs": {
599
+ "required": [],
600
+ "optional": [
601
+ "problem"
602
+ ]
603
+ },
604
+ "outputs": {
605
+ "schema": "BootstrapResult"
606
+ },
607
+ "side_effects": [
608
+ ".omg/state/*",
609
+ ".omg/idea.yml",
610
+ ".omg/policy.yaml",
611
+ ".omg/runtime.yaml"
612
+ ],
613
+ "notes": ""
614
+ },
615
+ {
616
+ "skill": "ralph-wiggum",
617
+ "route": "runtime_ship",
618
+ "maturity": "native",
619
+ "inputs": {
620
+ "required": [
621
+ "problem"
622
+ ],
623
+ "optional": [
624
+ "expected_outcome"
625
+ ]
626
+ },
627
+ "outputs": {
628
+ "schema": "RuntimeDispatchResult"
629
+ },
630
+ "side_effects": [
631
+ ".omg/state/persistent-mode.json"
632
+ ],
633
+ "notes": "Persistent iteration loop via runtime persistent-mode state."
634
+ },
635
+ {
636
+ "skill": "ralplan",
637
+ "route": "plan",
638
+ "maturity": "native",
639
+ "inputs": {
640
+ "required": [
641
+ "problem"
642
+ ],
643
+ "optional": [
644
+ "expected_outcome"
645
+ ]
646
+ },
647
+ "outputs": {
648
+ "schema": "PlanningArtifacts"
649
+ },
650
+ "side_effects": [
651
+ ".omg/state/_plan.md",
652
+ ".omg/state/_checklist.md",
653
+ ".omg/idea.yml"
654
+ ],
655
+ "notes": ""
656
+ },
657
+ {
658
+ "skill": "release",
659
+ "route": "runtime_ship",
660
+ "maturity": "native",
661
+ "inputs": {
662
+ "required": [
663
+ "problem"
664
+ ],
665
+ "optional": [
666
+ "expected_outcome"
667
+ ]
668
+ },
669
+ "outputs": {
670
+ "schema": "RuntimeDispatchResult"
671
+ },
672
+ "side_effects": [
673
+ ".omg/evidence/release-draft.md"
674
+ ],
675
+ "notes": "Routes to runtime ship and emits release draft artifact."
676
+ },
677
+ {
678
+ "skill": "review",
679
+ "route": "review",
680
+ "maturity": "native",
681
+ "inputs": {
682
+ "required": [
683
+ "problem"
684
+ ],
685
+ "optional": [
686
+ "context",
687
+ "files"
688
+ ]
689
+ },
690
+ "outputs": {
691
+ "schema": "ReviewSynthesis"
692
+ },
693
+ "side_effects": [],
694
+ "notes": ""
695
+ },
696
+ {
697
+ "skill": "sciomc",
698
+ "route": "maintainer",
699
+ "maturity": "native",
700
+ "inputs": {
701
+ "required": [
702
+ "problem"
703
+ ],
704
+ "optional": [
705
+ "context"
706
+ ]
707
+ },
708
+ "outputs": {
709
+ "schema": "AnalysisCompatArtifact"
710
+ },
711
+ "side_effects": [
712
+ ".omg/evidence/analysis-sciomc.json"
713
+ ],
714
+ "notes": ""
715
+ },
716
+ {
717
+ "skill": "security-review",
718
+ "route": "secure",
719
+ "maturity": "native",
720
+ "inputs": {
721
+ "required": [
722
+ "problem"
723
+ ],
724
+ "optional": []
725
+ },
726
+ "outputs": {
727
+ "schema": "PolicyDecision"
728
+ },
729
+ "side_effects": [],
730
+ "notes": ""
731
+ },
732
+ {
733
+ "skill": "skill",
734
+ "route": "learn",
735
+ "maturity": "native",
736
+ "inputs": {
737
+ "required": [
738
+ "problem"
739
+ ],
740
+ "optional": [
741
+ "context"
742
+ ]
743
+ },
744
+ "outputs": {
745
+ "schema": "LearningArtifact"
746
+ },
747
+ "side_effects": [
748
+ ".omg/knowledge/learning/skill.md"
749
+ ],
750
+ "notes": ""
751
+ },
752
+ {
753
+ "skill": "superpowers",
754
+ "route": "plan",
755
+ "maturity": "native",
756
+ "inputs": {
757
+ "required": [
758
+ "problem"
759
+ ],
760
+ "optional": [
761
+ "expected_outcome"
762
+ ]
763
+ },
764
+ "outputs": {
765
+ "schema": "PlanningArtifacts"
766
+ },
767
+ "side_effects": [
768
+ ".omg/state/_plan.md",
769
+ ".omg/state/_checklist.md"
770
+ ],
771
+ "notes": "Imports TDD-first planning discipline into OMG plan route."
772
+ },
773
+ {
774
+ "skill": "tdd",
775
+ "route": "plan",
776
+ "maturity": "native",
777
+ "inputs": {
778
+ "required": [
779
+ "problem"
780
+ ],
781
+ "optional": [
782
+ "expected_outcome"
783
+ ]
784
+ },
785
+ "outputs": {
786
+ "schema": "PlanningArtifacts"
787
+ },
788
+ "side_effects": [
789
+ ".omg/state/_plan.md",
790
+ ".omg/state/_checklist.md",
791
+ ".omg/idea.yml"
792
+ ],
793
+ "notes": "Generates plan/checklist scaffolding for red-green-refactor workflow."
794
+ },
795
+ {
796
+ "skill": "team",
797
+ "route": "teams",
798
+ "maturity": "native",
799
+ "inputs": {
800
+ "required": [
801
+ "problem"
802
+ ],
803
+ "optional": [
804
+ "context",
805
+ "files",
806
+ "expected_outcome"
807
+ ]
808
+ },
809
+ "outputs": {
810
+ "schema": "TeamDispatchResult"
811
+ },
812
+ "side_effects": [],
813
+ "notes": ""
814
+ },
815
+ {
816
+ "skill": "trace",
817
+ "route": "maintainer",
818
+ "maturity": "native",
819
+ "inputs": {
820
+ "required": [
821
+ "problem"
822
+ ],
823
+ "optional": [
824
+ "context"
825
+ ]
826
+ },
827
+ "outputs": {
828
+ "schema": "AnalysisCompatArtifact"
829
+ },
830
+ "side_effects": [
831
+ ".omg/evidence/analysis-trace.json"
832
+ ],
833
+ "notes": "Writes trace evidence artifact for debugging chain."
834
+ },
835
+ {
836
+ "skill": "ultrapilot",
837
+ "route": "runtime_ship",
838
+ "maturity": "native",
839
+ "inputs": {
840
+ "required": [
841
+ "problem"
842
+ ],
843
+ "optional": [
844
+ "expected_outcome"
845
+ ]
846
+ },
847
+ "outputs": {
848
+ "schema": "RuntimeDispatchResult"
849
+ },
850
+ "side_effects": [
851
+ ".omg/state/persistent-mode.json"
852
+ ],
853
+ "notes": ""
854
+ },
855
+ {
856
+ "skill": "ultraqa",
857
+ "route": "review",
858
+ "maturity": "native",
859
+ "inputs": {
860
+ "required": [
861
+ "problem"
862
+ ],
863
+ "optional": [
864
+ "context",
865
+ "files"
866
+ ]
867
+ },
868
+ "outputs": {
869
+ "schema": "ReviewSynthesis"
870
+ },
871
+ "side_effects": [],
872
+ "notes": ""
873
+ },
874
+ {
875
+ "skill": "ultrawork",
876
+ "route": "runtime_ship",
877
+ "maturity": "native",
878
+ "inputs": {
879
+ "required": [
880
+ "problem"
881
+ ],
882
+ "optional": [
883
+ "expected_outcome"
884
+ ]
885
+ },
886
+ "outputs": {
887
+ "schema": "RuntimeDispatchResult"
888
+ },
889
+ "side_effects": [
890
+ ".omg/state/persistent-mode.json"
891
+ ],
892
+ "notes": ""
893
+ },
894
+ {
895
+ "skill": "writer-memory",
896
+ "route": "memory",
897
+ "maturity": "native",
898
+ "inputs": {
899
+ "required": [
900
+ "problem"
901
+ ],
902
+ "optional": [
903
+ "context"
904
+ ]
905
+ },
906
+ "outputs": {
907
+ "schema": "StateMutationResult"
908
+ },
909
+ "side_effects": [
910
+ ".omg/knowledge/writer-memory.md"
911
+ ],
912
+ "notes": "Writes long-form memory artifact for writing workflows."
913
+ }
914
+ ],
915
+ "generated_at": "2026-02-27T21:35:09.541636+00:00"
916
+ }