@damian87/omp 0.1.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 (166) hide show
  1. package/.github/agents/architect.md +25 -0
  2. package/.github/agents/code-reviewer.md +25 -0
  3. package/.github/agents/designer.md +26 -0
  4. package/.github/agents/executor.md +24 -0
  5. package/.github/agents/planner.md +26 -0
  6. package/.github/agents/researcher.md +26 -0
  7. package/.github/agents/verifier.md +26 -0
  8. package/.github/copilot-instructions.md +20 -0
  9. package/.github/plugin/marketplace.json +30 -0
  10. package/.github/skills/caveman/SKILL.md +20 -0
  11. package/.github/skills/code-review/SKILL.md +22 -0
  12. package/.github/skills/codebase-research/SKILL.md +20 -0
  13. package/.github/skills/create-skill/SKILL.md +78 -0
  14. package/.github/skills/create-skill/references/best-practices.md +449 -0
  15. package/.github/skills/create-skill/references/examples.md +69 -0
  16. package/.github/skills/create-skill/references/progressive-disclosure.md +25 -0
  17. package/.github/skills/create-skill/references/skill-structure.md +55 -0
  18. package/.github/skills/debug/SKILL.md +22 -0
  19. package/.github/skills/grill-me/SKILL.md +16 -0
  20. package/.github/skills/jira-ticket/SKILL.md +21 -0
  21. package/.github/skills/omp-autopilot/SKILL.md +20 -0
  22. package/.github/skills/prototype/SKILL.md +21 -0
  23. package/.github/skills/ralph/SKILL.md +20 -0
  24. package/.github/skills/ralplan/SKILL.md +21 -0
  25. package/.github/skills/self-evolve/SKILL.md +157 -0
  26. package/.github/skills/tdd/SKILL.md +19 -0
  27. package/.github/skills/team/SKILL.md +20 -0
  28. package/.github/skills/ultraqa/SKILL.md +20 -0
  29. package/.github/skills/ultrawork/SKILL.md +20 -0
  30. package/.github/skills/verify/SKILL.md +20 -0
  31. package/LICENSE +21 -0
  32. package/README.md +214 -0
  33. package/catalog/capabilities.json +729 -0
  34. package/catalog/skills-general.json +427 -0
  35. package/dist/src/catalog.d.ts +79 -0
  36. package/dist/src/catalog.js +113 -0
  37. package/dist/src/catalog.js.map +1 -0
  38. package/dist/src/cli.d.ts +9 -0
  39. package/dist/src/cli.js +475 -0
  40. package/dist/src/cli.js.map +1 -0
  41. package/dist/src/copilot/config.d.ts +7 -0
  42. package/dist/src/copilot/config.js +24 -0
  43. package/dist/src/copilot/config.js.map +1 -0
  44. package/dist/src/copilot/doctor.d.ts +18 -0
  45. package/dist/src/copilot/doctor.js +85 -0
  46. package/dist/src/copilot/doctor.js.map +1 -0
  47. package/dist/src/copilot/launch.d.ts +14 -0
  48. package/dist/src/copilot/launch.js +64 -0
  49. package/dist/src/copilot/launch.js.map +1 -0
  50. package/dist/src/copilot/list.d.ts +17 -0
  51. package/dist/src/copilot/list.js +82 -0
  52. package/dist/src/copilot/list.js.map +1 -0
  53. package/dist/src/copilot/paths.d.ts +21 -0
  54. package/dist/src/copilot/paths.js +36 -0
  55. package/dist/src/copilot/paths.js.map +1 -0
  56. package/dist/src/copilot/setup.d.ts +20 -0
  57. package/dist/src/copilot/setup.js +90 -0
  58. package/dist/src/copilot/setup.js.map +1 -0
  59. package/dist/src/copilot/version.d.ts +13 -0
  60. package/dist/src/copilot/version.js +34 -0
  61. package/dist/src/copilot/version.js.map +1 -0
  62. package/dist/src/jira.d.ts +149 -0
  63. package/dist/src/jira.js +492 -0
  64. package/dist/src/jira.js.map +1 -0
  65. package/dist/src/lint.d.ts +11 -0
  66. package/dist/src/lint.js +85 -0
  67. package/dist/src/lint.js.map +1 -0
  68. package/dist/src/mcp/server.d.ts +10 -0
  69. package/dist/src/mcp/server.js +44 -0
  70. package/dist/src/mcp/server.js.map +1 -0
  71. package/dist/src/mcp/tools/index.d.ts +9 -0
  72. package/dist/src/mcp/tools/index.js +15 -0
  73. package/dist/src/mcp/tools/index.js.map +1 -0
  74. package/dist/src/mcp/tools/notepad.d.ts +2 -0
  75. package/dist/src/mcp/tools/notepad.js +135 -0
  76. package/dist/src/mcp/tools/notepad.js.map +1 -0
  77. package/dist/src/mcp/tools/project-memory.d.ts +2 -0
  78. package/dist/src/mcp/tools/project-memory.js +91 -0
  79. package/dist/src/mcp/tools/project-memory.js.map +1 -0
  80. package/dist/src/mcp/tools/shared-memory.d.ts +2 -0
  81. package/dist/src/mcp/tools/shared-memory.js +148 -0
  82. package/dist/src/mcp/tools/shared-memory.js.map +1 -0
  83. package/dist/src/mcp/tools/state.d.ts +2 -0
  84. package/dist/src/mcp/tools/state.js +107 -0
  85. package/dist/src/mcp/tools/state.js.map +1 -0
  86. package/dist/src/mcp/tools/trace.d.ts +10 -0
  87. package/dist/src/mcp/tools/trace.js +102 -0
  88. package/dist/src/mcp/tools/trace.js.map +1 -0
  89. package/dist/src/mcp/types.d.ts +29 -0
  90. package/dist/src/mcp/types.js +7 -0
  91. package/dist/src/mcp/types.js.map +1 -0
  92. package/dist/src/mode-state/index.d.ts +4 -0
  93. package/dist/src/mode-state/index.js +5 -0
  94. package/dist/src/mode-state/index.js.map +1 -0
  95. package/dist/src/mode-state/paths.d.ts +5 -0
  96. package/dist/src/mode-state/paths.js +29 -0
  97. package/dist/src/mode-state/paths.js.map +1 -0
  98. package/dist/src/mode-state/ralph.d.ts +25 -0
  99. package/dist/src/mode-state/ralph.js +44 -0
  100. package/dist/src/mode-state/ralph.js.map +1 -0
  101. package/dist/src/mode-state/ultraqa.d.ts +26 -0
  102. package/dist/src/mode-state/ultraqa.js +51 -0
  103. package/dist/src/mode-state/ultraqa.js.map +1 -0
  104. package/dist/src/mode-state/ultrawork.d.ts +20 -0
  105. package/dist/src/mode-state/ultrawork.js +34 -0
  106. package/dist/src/mode-state/ultrawork.js.map +1 -0
  107. package/dist/src/project.d.ts +29 -0
  108. package/dist/src/project.js +101 -0
  109. package/dist/src/project.js.map +1 -0
  110. package/dist/src/skills.d.ts +17 -0
  111. package/dist/src/skills.js +61 -0
  112. package/dist/src/skills.js.map +1 -0
  113. package/dist/src/sync.d.ts +6 -0
  114. package/dist/src/sync.js +27 -0
  115. package/dist/src/sync.js.map +1 -0
  116. package/dist/src/team/api.d.ts +20 -0
  117. package/dist/src/team/api.js +55 -0
  118. package/dist/src/team/api.js.map +1 -0
  119. package/dist/src/team/heartbeat.d.ts +4 -0
  120. package/dist/src/team/heartbeat.js +27 -0
  121. package/dist/src/team/heartbeat.js.map +1 -0
  122. package/dist/src/team/idle-nudge.d.ts +27 -0
  123. package/dist/src/team/idle-nudge.js +60 -0
  124. package/dist/src/team/idle-nudge.js.map +1 -0
  125. package/dist/src/team/inbox.d.ts +3 -0
  126. package/dist/src/team/inbox.js +16 -0
  127. package/dist/src/team/inbox.js.map +1 -0
  128. package/dist/src/team/index.d.ts +11 -0
  129. package/dist/src/team/index.js +12 -0
  130. package/dist/src/team/index.js.map +1 -0
  131. package/dist/src/team/outbox.d.ts +14 -0
  132. package/dist/src/team/outbox.js +82 -0
  133. package/dist/src/team/outbox.js.map +1 -0
  134. package/dist/src/team/runtime.d.ts +84 -0
  135. package/dist/src/team/runtime.js +243 -0
  136. package/dist/src/team/runtime.js.map +1 -0
  137. package/dist/src/team/state-paths.d.ts +31 -0
  138. package/dist/src/team/state-paths.js +54 -0
  139. package/dist/src/team/state-paths.js.map +1 -0
  140. package/dist/src/team/task-store.d.ts +41 -0
  141. package/dist/src/team/task-store.js +153 -0
  142. package/dist/src/team/task-store.js.map +1 -0
  143. package/dist/src/team/tmux.d.ts +26 -0
  144. package/dist/src/team/tmux.js +87 -0
  145. package/dist/src/team/tmux.js.map +1 -0
  146. package/dist/src/team/types.d.ts +45 -0
  147. package/dist/src/team/types.js +2 -0
  148. package/dist/src/team/types.js.map +1 -0
  149. package/dist/src/team/worker-bootstrap.d.ts +8 -0
  150. package/dist/src/team/worker-bootstrap.js +52 -0
  151. package/dist/src/team/worker-bootstrap.js.map +1 -0
  152. package/docs/copilot-distribution.md +100 -0
  153. package/docs/general-skills.md +76 -0
  154. package/docs/jira.md +64 -0
  155. package/docs/self-evolve.md +22 -0
  156. package/hooks/hooks.json +74 -0
  157. package/package.json +58 -0
  158. package/plugin.json +14 -0
  159. package/scripts/error.mjs +31 -0
  160. package/scripts/lib/hook-output.mjs +30 -0
  161. package/scripts/lib/stdin.mjs +29 -0
  162. package/scripts/post-tool-use.mjs +31 -0
  163. package/scripts/pre-tool-use.mjs +30 -0
  164. package/scripts/prompt-submit.mjs +66 -0
  165. package/scripts/session-end.mjs +29 -0
  166. package/scripts/session-start.mjs +33 -0
@@ -0,0 +1,729 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "providerStates": [
4
+ "native",
5
+ "handoff",
6
+ "stub",
7
+ "unsupported"
8
+ ],
9
+ "compatProviderStates": [
10
+ "supported",
11
+ "fallback",
12
+ "unsupported"
13
+ ],
14
+ "capabilities": [
15
+ {
16
+ "id": "codebase-research",
17
+ "name": "codebase-research",
18
+ "title": "Codebase research",
19
+ "category": "research",
20
+ "summary": "Read repo evidence before planning or asking.",
21
+ "notes": "Lite slash project skill; no bundled scripts or external runtime requirement.",
22
+ "defaultCommand": "codebase-research",
23
+ "phase1": true,
24
+ "sourceSkill": "codebase-research",
25
+ "providers": {
26
+ "copilot": "supported"
27
+ },
28
+ "support": {
29
+ "copilot": "native"
30
+ },
31
+ "providerSupport": {
32
+ "copilot": {
33
+ "state": "native",
34
+ "notes": "Use /codebase-research from .github/skills/codebase-research/SKILL.md."
35
+ }
36
+ }
37
+ },
38
+ {
39
+ "id": "research.codebase",
40
+ "name": "research.codebase",
41
+ "title": "Codebase research",
42
+ "category": "research",
43
+ "summary": "Read repo evidence before planning or asking.",
44
+ "notes": "Lite slash project skill; no bundled scripts or external runtime requirement.",
45
+ "defaultCommand": "codebase-research",
46
+ "phase1": true,
47
+ "sourceSkill": "codebase-research",
48
+ "providers": {
49
+ "copilot": "supported"
50
+ },
51
+ "support": {
52
+ "copilot": "native"
53
+ },
54
+ "providerSupport": {
55
+ "copilot": {
56
+ "state": "native",
57
+ "notes": "Use /codebase-research from .github/skills/codebase-research/SKILL.md."
58
+ }
59
+ }
60
+ },
61
+ {
62
+ "id": "grill-me",
63
+ "name": "grill-me",
64
+ "title": "Grill me",
65
+ "category": "clarification",
66
+ "summary": "Ask one sharp clarification question after research.",
67
+ "notes": "Lite slash project skill; no bundled scripts or external runtime requirement.",
68
+ "defaultCommand": "grill-me",
69
+ "phase1": true,
70
+ "sourceSkill": "grill-me",
71
+ "providers": {
72
+ "copilot": "supported"
73
+ },
74
+ "support": {
75
+ "copilot": "native"
76
+ },
77
+ "providerSupport": {
78
+ "copilot": {
79
+ "state": "native",
80
+ "notes": "Use /grill-me from .github/skills/grill-me/SKILL.md."
81
+ }
82
+ }
83
+ },
84
+ {
85
+ "id": "planning.challenge",
86
+ "name": "planning.challenge",
87
+ "title": "Grill me",
88
+ "category": "clarification",
89
+ "summary": "Ask one sharp clarification question after research.",
90
+ "notes": "Lite slash project skill; no bundled scripts or external runtime requirement.",
91
+ "defaultCommand": "grill-me",
92
+ "phase1": true,
93
+ "sourceSkill": "grill-me",
94
+ "providers": {
95
+ "copilot": "supported"
96
+ },
97
+ "support": {
98
+ "copilot": "native"
99
+ },
100
+ "providerSupport": {
101
+ "copilot": {
102
+ "state": "native",
103
+ "notes": "Use /grill-me from .github/skills/grill-me/SKILL.md."
104
+ }
105
+ }
106
+ },
107
+ {
108
+ "id": "ralplan",
109
+ "name": "ralplan",
110
+ "title": "Ralplan",
111
+ "category": "planning",
112
+ "summary": "Create implementation-ready plans and test shape.",
113
+ "notes": "Lite slash project skill; no bundled scripts or external runtime requirement.",
114
+ "defaultCommand": "ralplan",
115
+ "phase1": true,
116
+ "sourceSkill": "ralplan",
117
+ "providers": {
118
+ "copilot": "supported"
119
+ },
120
+ "support": {
121
+ "copilot": "native"
122
+ },
123
+ "providerSupport": {
124
+ "copilot": {
125
+ "state": "native",
126
+ "notes": "Use /ralplan from .github/skills/ralplan/SKILL.md."
127
+ }
128
+ }
129
+ },
130
+ {
131
+ "id": "planning.consensus",
132
+ "name": "planning.consensus",
133
+ "title": "Ralplan",
134
+ "category": "planning",
135
+ "summary": "Create implementation-ready plans and test shape.",
136
+ "notes": "Lite slash project skill; no bundled scripts or external runtime requirement.",
137
+ "defaultCommand": "ralplan",
138
+ "phase1": true,
139
+ "sourceSkill": "ralplan",
140
+ "providers": {
141
+ "copilot": "supported"
142
+ },
143
+ "support": {
144
+ "copilot": "native"
145
+ },
146
+ "providerSupport": {
147
+ "copilot": {
148
+ "state": "native",
149
+ "notes": "Use /ralplan from .github/skills/ralplan/SKILL.md."
150
+ }
151
+ }
152
+ },
153
+ {
154
+ "id": "team",
155
+ "name": "team",
156
+ "title": "Team",
157
+ "category": "execution",
158
+ "summary": "Split approved plans into parallel lanes.",
159
+ "notes": "Lite slash project skill; instructional only, with no bundled scripts, durable orchestration, or external runtime requirement.",
160
+ "defaultCommand": "team",
161
+ "phase1": true,
162
+ "sourceSkill": "team",
163
+ "providers": {
164
+ "copilot": "supported"
165
+ },
166
+ "support": {
167
+ "copilot": "native"
168
+ },
169
+ "providerSupport": {
170
+ "copilot": {
171
+ "state": "native",
172
+ "notes": "Use /team from .github/skills/team/SKILL.md. Project skill only; not a durable runtime."
173
+ }
174
+ }
175
+ },
176
+ {
177
+ "id": "execution.parallel",
178
+ "name": "execution.parallel",
179
+ "title": "Team",
180
+ "category": "execution",
181
+ "summary": "Split approved plans into parallel lanes.",
182
+ "notes": "Lite slash project skill; instructional only, with no bundled scripts, durable orchestration, or external runtime requirement.",
183
+ "defaultCommand": "team",
184
+ "phase1": true,
185
+ "sourceSkill": "team",
186
+ "providers": {
187
+ "copilot": "supported"
188
+ },
189
+ "support": {
190
+ "copilot": "native"
191
+ },
192
+ "providerSupport": {
193
+ "copilot": {
194
+ "state": "native",
195
+ "notes": "Use /team from .github/skills/team/SKILL.md. Project skill only; not a durable runtime."
196
+ }
197
+ }
198
+ },
199
+ {
200
+ "id": "ralph",
201
+ "name": "ralph",
202
+ "title": "Ralph",
203
+ "category": "execution",
204
+ "summary": "Run a single-owner execute-fix-verify loop.",
205
+ "notes": "Lite slash project skill; instructional only, with no bundled scripts, durable orchestration, or external runtime requirement.",
206
+ "defaultCommand": "ralph",
207
+ "phase1": true,
208
+ "sourceSkill": "ralph",
209
+ "providers": {
210
+ "copilot": "supported"
211
+ },
212
+ "support": {
213
+ "copilot": "native"
214
+ },
215
+ "providerSupport": {
216
+ "copilot": {
217
+ "state": "native",
218
+ "notes": "Use /ralph from .github/skills/ralph/SKILL.md. Project skill only; not a durable runtime."
219
+ }
220
+ }
221
+ },
222
+ {
223
+ "id": "execution.single-owner",
224
+ "name": "execution.single-owner",
225
+ "title": "Ralph",
226
+ "category": "execution",
227
+ "summary": "Run a single-owner execute-fix-verify loop.",
228
+ "notes": "Lite slash project skill; instructional only, with no bundled scripts, durable orchestration, or external runtime requirement.",
229
+ "defaultCommand": "ralph",
230
+ "phase1": true,
231
+ "sourceSkill": "ralph",
232
+ "providers": {
233
+ "copilot": "supported"
234
+ },
235
+ "support": {
236
+ "copilot": "native"
237
+ },
238
+ "providerSupport": {
239
+ "copilot": {
240
+ "state": "native",
241
+ "notes": "Use /ralph from .github/skills/ralph/SKILL.md. Project skill only; not a durable runtime."
242
+ }
243
+ }
244
+ },
245
+ {
246
+ "id": "ultrawork",
247
+ "name": "ultrawork",
248
+ "title": "Ultrawork",
249
+ "category": "execution",
250
+ "summary": "Batch many independent small work items.",
251
+ "notes": "Lite slash project skill; instructional only, with no bundled scripts, durable orchestration, or external runtime requirement.",
252
+ "defaultCommand": "ultrawork",
253
+ "phase1": true,
254
+ "sourceSkill": "ultrawork",
255
+ "providers": {
256
+ "copilot": "supported"
257
+ },
258
+ "support": {
259
+ "copilot": "native"
260
+ },
261
+ "providerSupport": {
262
+ "copilot": {
263
+ "state": "native",
264
+ "notes": "Use /ultrawork from .github/skills/ultrawork/SKILL.md. Project skill only; not a durable runtime."
265
+ }
266
+ }
267
+ },
268
+ {
269
+ "id": "ultraqa",
270
+ "name": "ultraqa",
271
+ "title": "UltraQA",
272
+ "category": "verification",
273
+ "summary": "Run adversarial behavior and regression QA.",
274
+ "notes": "Lite slash project skill; no bundled scripts or external runtime requirement.",
275
+ "defaultCommand": "ultraqa",
276
+ "phase1": true,
277
+ "sourceSkill": "ultraqa",
278
+ "providers": {
279
+ "copilot": "supported"
280
+ },
281
+ "support": {
282
+ "copilot": "native"
283
+ },
284
+ "providerSupport": {
285
+ "copilot": {
286
+ "state": "native",
287
+ "notes": "Use /ultraqa from .github/skills/ultraqa/SKILL.md."
288
+ }
289
+ }
290
+ },
291
+ {
292
+ "id": "qa.behavioral",
293
+ "name": "qa.behavioral",
294
+ "title": "UltraQA",
295
+ "category": "verification",
296
+ "summary": "Run adversarial behavior and regression QA.",
297
+ "notes": "Lite slash project skill; no bundled scripts or external runtime requirement.",
298
+ "defaultCommand": "ultraqa",
299
+ "phase1": true,
300
+ "sourceSkill": "ultraqa",
301
+ "providers": {
302
+ "copilot": "supported"
303
+ },
304
+ "support": {
305
+ "copilot": "native"
306
+ },
307
+ "providerSupport": {
308
+ "copilot": {
309
+ "state": "native",
310
+ "notes": "Use /ultraqa from .github/skills/ultraqa/SKILL.md."
311
+ }
312
+ }
313
+ },
314
+ {
315
+ "id": "omp-autopilot",
316
+ "name": "omp-autopilot",
317
+ "title": "Autopilot",
318
+ "category": "execution",
319
+ "summary": "Run the lightweight end-to-end skill flow.",
320
+ "notes": "Lite slash project skill; instructional only, with no bundled scripts, durable orchestration, or external runtime requirement. Renamed from `autopilot` to avoid Copilot CLI built-in collision.",
321
+ "defaultCommand": "omp-autopilot",
322
+ "phase1": true,
323
+ "sourceSkill": "omp-autopilot",
324
+ "providers": {
325
+ "copilot": "supported"
326
+ },
327
+ "support": {
328
+ "copilot": "native"
329
+ },
330
+ "providerSupport": {
331
+ "copilot": {
332
+ "state": "native",
333
+ "notes": "Use /omp-autopilot from .github/skills/omp-autopilot/SKILL.md (renamed from /autopilot to avoid Copilot CLI built-in collision). Project skill only; not a durable runtime."
334
+ }
335
+ }
336
+ },
337
+ {
338
+ "id": "execution.autonomous",
339
+ "name": "execution.autonomous",
340
+ "title": "Autopilot",
341
+ "category": "execution",
342
+ "summary": "Run the lightweight end-to-end skill flow.",
343
+ "notes": "Lite slash project skill; instructional only, with no bundled scripts, durable orchestration, or external runtime requirement.",
344
+ "defaultCommand": "omp-autopilot",
345
+ "phase1": true,
346
+ "sourceSkill": "omp-autopilot",
347
+ "providers": {
348
+ "copilot": "supported"
349
+ },
350
+ "support": {
351
+ "copilot": "native"
352
+ },
353
+ "providerSupport": {
354
+ "copilot": {
355
+ "state": "native",
356
+ "notes": "Use /omp-autopilot from .github/skills/omp-autopilot/SKILL.md (renamed from /autopilot to avoid Copilot CLI built-in collision). Project skill only; not a durable runtime."
357
+ }
358
+ }
359
+ },
360
+ {
361
+ "id": "code-review",
362
+ "name": "code-review",
363
+ "title": "Code review",
364
+ "category": "verification",
365
+ "summary": "Review completed changes before merge or handoff.",
366
+ "notes": "Lite slash project skill; no bundled scripts or external runtime requirement.",
367
+ "defaultCommand": "code-review",
368
+ "phase1": true,
369
+ "sourceSkill": "code-review",
370
+ "providers": {
371
+ "copilot": "supported"
372
+ },
373
+ "support": {
374
+ "copilot": "native"
375
+ },
376
+ "providerSupport": {
377
+ "copilot": {
378
+ "state": "native",
379
+ "notes": "Use /code-review from .github/skills/code-review/SKILL.md."
380
+ }
381
+ }
382
+ },
383
+ {
384
+ "id": "review.independent",
385
+ "name": "review.independent",
386
+ "title": "Code review",
387
+ "category": "verification",
388
+ "summary": "Review completed changes before merge or handoff.",
389
+ "notes": "Lite slash project skill; no bundled scripts or external runtime requirement.",
390
+ "defaultCommand": "code-review",
391
+ "phase1": true,
392
+ "sourceSkill": "code-review",
393
+ "providers": {
394
+ "copilot": "supported"
395
+ },
396
+ "support": {
397
+ "copilot": "native"
398
+ },
399
+ "providerSupport": {
400
+ "copilot": {
401
+ "state": "native",
402
+ "notes": "Use /code-review from .github/skills/code-review/SKILL.md."
403
+ }
404
+ }
405
+ },
406
+ {
407
+ "id": "verify",
408
+ "name": "verify",
409
+ "title": "Verify",
410
+ "category": "verification",
411
+ "summary": "Prove completion claims with evidence.",
412
+ "notes": "Lite slash project skill; no bundled scripts or external runtime requirement.",
413
+ "defaultCommand": "verify",
414
+ "phase1": true,
415
+ "sourceSkill": "verify",
416
+ "providers": {
417
+ "copilot": "supported"
418
+ },
419
+ "support": {
420
+ "copilot": "native"
421
+ },
422
+ "providerSupport": {
423
+ "copilot": {
424
+ "state": "native",
425
+ "notes": "Use /verify from .github/skills/verify/SKILL.md."
426
+ }
427
+ }
428
+ },
429
+ {
430
+ "id": "verification.evidence",
431
+ "name": "verification.evidence",
432
+ "title": "Verify",
433
+ "category": "verification",
434
+ "summary": "Prove completion claims with evidence.",
435
+ "notes": "Lite slash project skill; no bundled scripts or external runtime requirement.",
436
+ "defaultCommand": "verify",
437
+ "phase1": true,
438
+ "sourceSkill": "verify",
439
+ "providers": {
440
+ "copilot": "supported"
441
+ },
442
+ "support": {
443
+ "copilot": "native"
444
+ },
445
+ "providerSupport": {
446
+ "copilot": {
447
+ "state": "native",
448
+ "notes": "Use /verify from .github/skills/verify/SKILL.md."
449
+ }
450
+ }
451
+ },
452
+ {
453
+ "id": "jira-ticket",
454
+ "name": "jira-ticket",
455
+ "title": "Jira ticket",
456
+ "category": "tracking",
457
+ "summary": "Prepare Jira payloads with safe fallback.",
458
+ "notes": "Lite slash project skill; no bundled scripts or external runtime requirement.",
459
+ "defaultCommand": "jira-ticket",
460
+ "phase1": true,
461
+ "sourceSkill": "jira-ticket",
462
+ "providers": {
463
+ "copilot": "supported"
464
+ },
465
+ "support": {
466
+ "copilot": "native"
467
+ },
468
+ "providerSupport": {
469
+ "copilot": {
470
+ "state": "native",
471
+ "notes": "Use /jira-ticket from .github/skills/jira-ticket/SKILL.md."
472
+ }
473
+ }
474
+ },
475
+ {
476
+ "id": "tracker.ticket",
477
+ "name": "tracker.ticket",
478
+ "title": "Jira ticket",
479
+ "category": "tracking",
480
+ "summary": "Prepare Jira payloads with safe fallback.",
481
+ "notes": "Lite slash project skill; no bundled scripts or external runtime requirement.",
482
+ "defaultCommand": "jira-ticket",
483
+ "phase1": true,
484
+ "sourceSkill": "jira-ticket",
485
+ "providers": {
486
+ "copilot": "supported"
487
+ },
488
+ "support": {
489
+ "copilot": "native"
490
+ },
491
+ "providerSupport": {
492
+ "copilot": {
493
+ "state": "native",
494
+ "notes": "Use /jira-ticket from .github/skills/jira-ticket/SKILL.md."
495
+ }
496
+ }
497
+ },
498
+ {
499
+ "id": "prototype",
500
+ "name": "prototype",
501
+ "title": "Prototype",
502
+ "category": "planning",
503
+ "summary": "Build disposable experiments to answer design questions.",
504
+ "notes": "Lite slash project skill; no bundled scripts or external runtime requirement.",
505
+ "defaultCommand": "prototype",
506
+ "phase1": true,
507
+ "sourceSkill": "prototype",
508
+ "providers": {
509
+ "copilot": "supported"
510
+ },
511
+ "support": {
512
+ "copilot": "native"
513
+ },
514
+ "providerSupport": {
515
+ "copilot": {
516
+ "state": "native",
517
+ "notes": "Use /prototype from .github/skills/prototype/SKILL.md."
518
+ }
519
+ }
520
+ },
521
+ {
522
+ "id": "design.prototype",
523
+ "name": "design.prototype",
524
+ "title": "Prototype",
525
+ "category": "planning",
526
+ "summary": "Build disposable experiments to answer design questions.",
527
+ "notes": "Lite slash project skill; no bundled scripts or external runtime requirement.",
528
+ "defaultCommand": "prototype",
529
+ "phase1": true,
530
+ "sourceSkill": "prototype",
531
+ "providers": {
532
+ "copilot": "supported"
533
+ },
534
+ "support": {
535
+ "copilot": "native"
536
+ },
537
+ "providerSupport": {
538
+ "copilot": {
539
+ "state": "native",
540
+ "notes": "Use /prototype from .github/skills/prototype/SKILL.md."
541
+ }
542
+ }
543
+ },
544
+ {
545
+ "id": "caveman",
546
+ "name": "caveman",
547
+ "title": "Caveman",
548
+ "category": "communication",
549
+ "summary": "Use ultra-compact response style.",
550
+ "notes": "Lite slash project skill; no bundled scripts or external runtime requirement.",
551
+ "defaultCommand": "caveman",
552
+ "phase1": true,
553
+ "sourceSkill": "caveman",
554
+ "providers": {
555
+ "copilot": "supported"
556
+ },
557
+ "support": {
558
+ "copilot": "native"
559
+ },
560
+ "providerSupport": {
561
+ "copilot": {
562
+ "state": "native",
563
+ "notes": "Use /caveman from .github/skills/caveman/SKILL.md."
564
+ }
565
+ }
566
+ },
567
+ {
568
+ "id": "communication.compact",
569
+ "name": "communication.compact",
570
+ "title": "Caveman",
571
+ "category": "communication",
572
+ "summary": "Use ultra-compact response style.",
573
+ "notes": "Lite slash project skill; no bundled scripts or external runtime requirement.",
574
+ "defaultCommand": "caveman",
575
+ "phase1": true,
576
+ "sourceSkill": "caveman",
577
+ "providers": {
578
+ "copilot": "supported"
579
+ },
580
+ "support": {
581
+ "copilot": "native"
582
+ },
583
+ "providerSupport": {
584
+ "copilot": {
585
+ "state": "native",
586
+ "notes": "Use /caveman from .github/skills/caveman/SKILL.md."
587
+ }
588
+ }
589
+ },
590
+ {
591
+ "id": "debug",
592
+ "name": "debug",
593
+ "title": "Debug",
594
+ "category": "debugging",
595
+ "summary": "Reproduce, diagnose, fix, and regression-test bugs.",
596
+ "notes": "Lite slash project skill; no bundled scripts or external runtime requirement.",
597
+ "defaultCommand": "debug",
598
+ "phase1": true,
599
+ "sourceSkill": "debug",
600
+ "providers": {
601
+ "copilot": "supported"
602
+ },
603
+ "support": {
604
+ "copilot": "native"
605
+ },
606
+ "providerSupport": {
607
+ "copilot": {
608
+ "state": "native",
609
+ "notes": "Use /debug from .github/skills/debug/SKILL.md."
610
+ }
611
+ }
612
+ },
613
+ {
614
+ "id": "debug.systematic",
615
+ "name": "debug.systematic",
616
+ "title": "Debug",
617
+ "category": "debugging",
618
+ "summary": "Reproduce, diagnose, fix, and regression-test bugs.",
619
+ "notes": "Lite slash project skill; no bundled scripts or external runtime requirement.",
620
+ "defaultCommand": "debug",
621
+ "phase1": true,
622
+ "sourceSkill": "debug",
623
+ "providers": {
624
+ "copilot": "supported"
625
+ },
626
+ "support": {
627
+ "copilot": "native"
628
+ },
629
+ "providerSupport": {
630
+ "copilot": {
631
+ "state": "native",
632
+ "notes": "Use /debug from .github/skills/debug/SKILL.md."
633
+ }
634
+ }
635
+ },
636
+ {
637
+ "id": "tdd",
638
+ "name": "tdd",
639
+ "title": "TDD",
640
+ "category": "verification",
641
+ "summary": "Use red-green-refactor for behavior changes.",
642
+ "notes": "Lite slash project skill; no bundled scripts or external runtime requirement.",
643
+ "defaultCommand": "tdd",
644
+ "phase1": true,
645
+ "sourceSkill": "tdd",
646
+ "providers": {
647
+ "copilot": "supported"
648
+ },
649
+ "support": {
650
+ "copilot": "native"
651
+ },
652
+ "providerSupport": {
653
+ "copilot": {
654
+ "state": "native",
655
+ "notes": "Use /tdd from .github/skills/tdd/SKILL.md."
656
+ }
657
+ }
658
+ },
659
+ {
660
+ "id": "testing.tdd",
661
+ "name": "testing.tdd",
662
+ "title": "TDD",
663
+ "category": "verification",
664
+ "summary": "Use red-green-refactor for behavior changes.",
665
+ "notes": "Lite slash project skill; no bundled scripts or external runtime requirement.",
666
+ "defaultCommand": "tdd",
667
+ "phase1": true,
668
+ "sourceSkill": "tdd",
669
+ "providers": {
670
+ "copilot": "supported"
671
+ },
672
+ "support": {
673
+ "copilot": "native"
674
+ },
675
+ "providerSupport": {
676
+ "copilot": {
677
+ "state": "native",
678
+ "notes": "Use /tdd from .github/skills/tdd/SKILL.md."
679
+ }
680
+ }
681
+ },
682
+ {
683
+ "id": "self-evolve",
684
+ "name": "self-evolve",
685
+ "title": "Self-evolve",
686
+ "category": "meta",
687
+ "summary": "Capture user-correction patterns and draft a new project skill on the third repeat.",
688
+ "notes": "Lite slash project skill; session-lifecycle, no bundled scripts or external runtime requirement.",
689
+ "defaultCommand": "self-evolve",
690
+ "phase1": true,
691
+ "sourceSkill": "self-evolve",
692
+ "providers": {
693
+ "copilot": "supported"
694
+ },
695
+ "support": {
696
+ "copilot": "native"
697
+ },
698
+ "providerSupport": {
699
+ "copilot": {
700
+ "state": "native",
701
+ "notes": "Use /self-evolve from .github/skills/self-evolve/SKILL.md."
702
+ }
703
+ }
704
+ },
705
+ {
706
+ "id": "meta.self-improvement",
707
+ "name": "meta.self-improvement",
708
+ "title": "Self-evolve",
709
+ "category": "meta",
710
+ "summary": "Capture user-correction patterns and draft a new project skill on the third repeat.",
711
+ "notes": "Lite slash project skill; session-lifecycle, no bundled scripts or external runtime requirement.",
712
+ "defaultCommand": "self-evolve",
713
+ "phase1": true,
714
+ "sourceSkill": "self-evolve",
715
+ "providers": {
716
+ "copilot": "supported"
717
+ },
718
+ "support": {
719
+ "copilot": "native"
720
+ },
721
+ "providerSupport": {
722
+ "copilot": {
723
+ "state": "native",
724
+ "notes": "Use /self-evolve from .github/skills/self-evolve/SKILL.md."
725
+ }
726
+ }
727
+ }
728
+ ]
729
+ }