@lifeaitools/rdc-skills 0.24.41 → 0.25.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 (198) hide show
  1. package/.claude/settings.json +15 -15
  2. package/.claude-plugin/marketplace.json +21 -21
  3. package/.claude-plugin/plugin.json +1518 -1371
  4. package/.github/workflows/publish.yml +34 -34
  5. package/.github/workflows/self-test.yml +58 -58
  6. package/CHANGELOG.md +310 -310
  7. package/LICENSE +21 -21
  8. package/MANIFEST.md +221 -221
  9. package/README.md +375 -376
  10. package/README.sandbox.md +3 -3
  11. package/assets/watcher/viewer.html +164 -164
  12. package/bin/rdc-skills-mcp.mjs +316 -316
  13. package/commands/build.md +183 -183
  14. package/commands/collab.md +180 -180
  15. package/commands/deploy.md +152 -152
  16. package/commands/design.md +31 -31
  17. package/commands/edit.md +28 -28
  18. package/commands/fixit.md +150 -124
  19. package/commands/handoff.md +173 -173
  20. package/commands/help.md +95 -95
  21. package/commands/overnight.md +220 -220
  22. package/commands/plan.md +158 -158
  23. package/commands/preplan.md +131 -131
  24. package/commands/prototype.md +145 -145
  25. package/commands/release.md +49 -49
  26. package/commands/report.md +99 -99
  27. package/commands/review.md +120 -120
  28. package/commands/self-test.md +113 -113
  29. package/commands/status.md +86 -86
  30. package/commands/watch.md +98 -98
  31. package/commands/workitems.md +137 -137
  32. package/git-sha.json +1 -1
  33. package/guides/agent-bootstrap.md +295 -295
  34. package/guides/agents/backend.md +104 -104
  35. package/guides/agents/content.md +94 -94
  36. package/guides/agents/cs2.md +56 -56
  37. package/guides/agents/data.md +87 -87
  38. package/guides/agents/design.md +77 -77
  39. package/guides/agents/frontend.md +92 -92
  40. package/guides/agents/infrastructure.md +81 -81
  41. package/guides/agents/setup.md +281 -281
  42. package/guides/agents/verify.md +151 -151
  43. package/guides/agents/viz.md +106 -106
  44. package/guides/backend.md +146 -146
  45. package/guides/content.md +147 -147
  46. package/guides/cs2.md +190 -190
  47. package/guides/data.md +123 -123
  48. package/guides/design.md +116 -116
  49. package/guides/engineering-behavior.md +43 -43
  50. package/guides/escalation-protocol.md +125 -125
  51. package/guides/frontend.md +151 -151
  52. package/guides/history-md-spec.md +297 -297
  53. package/guides/infrastructure.md +179 -179
  54. package/guides/lessons-learned-spec.md +145 -151
  55. package/guides/output-contract.md +108 -108
  56. package/guides/publish-md-spec.md +289 -289
  57. package/guides/rdc-skills-startup.md +30 -30
  58. package/guides/verify.md +11 -11
  59. package/hooks/check-cwd.js +31 -31
  60. package/hooks/check-rdc-environment.js +164 -164
  61. package/hooks/check-services.js +6 -6
  62. package/hooks/check-stale-work-items.js +19 -19
  63. package/hooks/foreground-process-gate.js +128 -128
  64. package/hooks/gate-watchdog-selfcheck.js +257 -257
  65. package/hooks/hook-logger.js +25 -25
  66. package/hooks/lib/run-evidence-gate.mjs +241 -241
  67. package/hooks/no-stop-open-epics.js +127 -127
  68. package/hooks/post-tool-batch-gate.js +203 -203
  69. package/hooks/post-work-check.js +21 -21
  70. package/hooks/postcompact-log.js +13 -13
  71. package/hooks/precompact-log.js +13 -13
  72. package/hooks/rate-limit-retry.js +46 -46
  73. package/hooks/rdc-invocation-marker.js +157 -157
  74. package/hooks/rdc-output-contract-gate.js +94 -94
  75. package/hooks/require-work-item-on-commit.js +294 -294
  76. package/hooks/restart-brief.js +19 -19
  77. package/hooks/run-hidden-hook.ps1 +47 -47
  78. package/hooks/task-completed-gate.js +274 -274
  79. package/hooks/work-item-exit-gate.js +944 -944
  80. package/lib/catalog.mjs +236 -236
  81. package/lib/cloud-rewrite.mjs +155 -155
  82. package/package.json +57 -57
  83. package/rules/work-items-rpc.md +520 -520
  84. package/scaffold/templates/HISTORY.md.template +39 -39
  85. package/scaffold/templates/PUBLISH.md.template +21 -21
  86. package/scaffold/templates/brochure-studio-default.html +70 -70
  87. package/scripts/acceptance.mjs +502 -502
  88. package/scripts/fixtures/guides/bad-guide.md +15 -15
  89. package/scripts/fixtures/guides-clean/good-guide.md +16 -16
  90. package/scripts/install-rdc-skills.js +1289 -1289
  91. package/scripts/install.ps1 +202 -202
  92. package/scripts/install.sh +132 -132
  93. package/scripts/lib/assertions.mjs +287 -287
  94. package/scripts/lib/manifest-schema.mjs +754 -754
  95. package/scripts/lib/runner.mjs +465 -465
  96. package/scripts/lib/sandbox.mjs +435 -435
  97. package/scripts/prepack.mjs +32 -32
  98. package/scripts/rdc-brochure.mjs +482 -482
  99. package/scripts/rdc-design-cli.mjs +134 -134
  100. package/scripts/rebuild-mcp.mjs +107 -107
  101. package/scripts/self-test.mjs +1460 -1460
  102. package/scripts/stamp-git-sha.mjs +29 -29
  103. package/scripts/test-guide-validator.mjs +196 -196
  104. package/scripts/test-rdc-hooks.mjs +145 -145
  105. package/scripts/uninstall.ps1 +77 -77
  106. package/scripts/uninstall.sh +69 -69
  107. package/scripts/update.ps1 +43 -43
  108. package/scripts/update.sh +43 -43
  109. package/scripts/validate-place-histories.js +461 -461
  110. package/scripts/validate-publish-manifests.js +502 -424
  111. package/scripts/watch-init.mjs +100 -100
  112. package/skills/brochure/SKILL.md +107 -107
  113. package/skills/build/SKILL.md +563 -563
  114. package/skills/channel-formatter/SKILL.md +538 -533
  115. package/skills/co-develop/SKILL.md +196 -196
  116. package/skills/collab/SKILL.md +239 -239
  117. package/skills/convert/SKILL.md +167 -140
  118. package/skills/deploy/SKILL.md +541 -541
  119. package/skills/design/SKILL.md +211 -211
  120. package/skills/design/reference/ownership.md +16 -16
  121. package/skills/design/reference/rampa.md +92 -92
  122. package/skills/design/reference/studio-model.md +153 -153
  123. package/skills/edit/SKILL.md +98 -98
  124. package/skills/fixit/SKILL.md +203 -165
  125. package/skills/fs-mcp/SKILL.md +148 -148
  126. package/skills/handoff/SKILL.md +236 -236
  127. package/skills/help/SKILL.md +143 -143
  128. package/skills/housekeeping/SKILL.md +160 -219
  129. package/skills/lifeai-brochure-author/SKILL.md +340 -340
  130. package/skills/onramp/SKILL.md +248 -0
  131. package/skills/overnight/SKILL.md +251 -251
  132. package/skills/plan/SKILL.md +345 -345
  133. package/skills/preplan/SKILL.md +90 -90
  134. package/skills/prototype/SKILL.md +150 -150
  135. package/skills/rdc-brochurify/SKILL.md +245 -245
  136. package/skills/rdc-extract-verifier-rules/SKILL.md +191 -191
  137. package/skills/release/SKILL.md +140 -140
  138. package/skills/report/SKILL.md +100 -100
  139. package/skills/review/SKILL.md +152 -152
  140. package/skills/rpms-filemap/SKILL.cloud.md +111 -111
  141. package/skills/rpms-filemap/SKILL.md +111 -111
  142. package/skills/self-test/SKILL.md +132 -132
  143. package/skills/status/SKILL.md +99 -99
  144. package/skills/terminal-config/SKILL.md +62 -62
  145. package/skills/tests/MATRIX.md +54 -54
  146. package/skills/tests/README.md +47 -47
  147. package/skills/tests/onramp.test.json +87 -0
  148. package/skills/tests/rdc-brochure.test.json +34 -34
  149. package/skills/tests/rdc-build.test.json +36 -36
  150. package/skills/tests/rdc-channel-formatter.test.json +45 -45
  151. package/skills/tests/rdc-co-develop.test.json +29 -29
  152. package/skills/tests/rdc-collab.test.json +29 -29
  153. package/skills/tests/rdc-convert.test.json +35 -35
  154. package/skills/tests/rdc-deploy.test.json +30 -30
  155. package/skills/tests/rdc-design.test.json +27 -27
  156. package/skills/tests/rdc-edit.test.json +29 -29
  157. package/skills/tests/rdc-fixit.test.json +36 -36
  158. package/skills/tests/rdc-fs-mcp.test.json +36 -36
  159. package/skills/tests/rdc-handoff.test.json +28 -28
  160. package/skills/tests/rdc-help.test.json +29 -29
  161. package/skills/tests/rdc-housekeeping.test.json +28 -32
  162. package/skills/tests/rdc-lifeai-brochure-author.test.json +35 -35
  163. package/skills/tests/rdc-overnight.test.json +37 -37
  164. package/skills/tests/rdc-plan.test.json +27 -27
  165. package/skills/tests/rdc-preplan.test.json +31 -31
  166. package/skills/tests/rdc-prototype.test.json +28 -28
  167. package/skills/tests/rdc-rdc-brochurify.test.json +23 -23
  168. package/skills/tests/rdc-rdc-extract-verifier-rules.test.json +34 -34
  169. package/skills/tests/rdc-release.test.json +29 -29
  170. package/skills/tests/rdc-report.test.json +28 -28
  171. package/skills/tests/rdc-review.test.json +29 -29
  172. package/skills/tests/rdc-rpms-filemap.test.json +28 -28
  173. package/skills/tests/rdc-self-test.test.json +24 -24
  174. package/skills/tests/rdc-status.test.json +29 -29
  175. package/skills/tests/rdc-terminal-config.test.json +29 -29
  176. package/skills/tests/rdc-watch.test.json +24 -24
  177. package/skills/tests/rdc-workitems.test.json +27 -27
  178. package/skills/watch/SKILL.md +97 -97
  179. package/skills/workitems/SKILL.md +151 -151
  180. package/tests/acceptance.test.mjs +59 -59
  181. package/tests/channel-formatter.contract.test.mjs +251 -251
  182. package/tests/curl-surface.test.mjs +289 -289
  183. package/tests/harness-gates.test.mjs +325 -325
  184. package/tests/help-surface.test.mjs +61 -61
  185. package/tests/install-rdc-skills.test.mjs +49 -49
  186. package/tests/manifest-contract-fields.test.mjs +78 -78
  187. package/tests/mcp.test.mjs +271 -271
  188. package/tests/rdc-brochure.test.mjs +125 -125
  189. package/tests/require-work-item-on-commit.test.mjs +162 -162
  190. package/tests/run-evidence-gate.test.mjs +82 -82
  191. package/tests/skill-test-matrix.test.mjs +66 -66
  192. package/tests/validate-skills.js +27 -27
  193. package/tests/work-item-exit-gate-l2.test.mjs +368 -368
  194. package/tests/work-item-exit-gate-l3.test.mjs +197 -197
  195. package/RELEASE.md +0 -42
  196. package/tests/housekeeping-lessons-triage.test.mjs +0 -49
  197. package/tests/lessons-pipeline-contract.test.mjs +0 -26
  198. package/tests/release-contract.test.mjs +0 -16
@@ -1,1371 +1,1518 @@
1
- {
2
- "name": "rdc",
3
- "version": "0.24.41",
4
- "description": "RDC typed-agent dispatch skill suite for Claude Code — plan, build, review, overnight unattended builds with work-item tracking and TDD enforcement.",
5
- "author": {
6
- "name": "LIFEAI",
7
- "email": "support@lifeai.tools"
8
- },
9
- "homepage": "https://github.com/LIFEAI/rdc-skills",
10
- "repository": "https://github.com/LIFEAI/rdc-skills",
11
- "skills_meta_schema": {
12
- "$comment": "Schema for entries in skills_meta. Each skill object has the same shape.",
13
- "name": "string — skill slug (matches directory name under skills/)",
14
- "slash": "string — slash-command form, e.g. 'rdc:build'",
15
- "category": "planning | build | deploy | release | reporting | tooling | infra | dev-loop",
16
- "usage": "string — single-line invocation example",
17
- "args": {
18
- "positional": "array of { name, required, description, accepts }",
19
- "flags": "array of { name, type, default, description }"
20
- },
21
- "requires": "array of capabilities — subset of: supabase, clauth, codeflow, neo4j, github, coolify, pm2, npm, git, codeflow-http, agent-dispatch, work-items-rpc",
22
- "produces": "array of side effects — subset of: work_items, git_commits, supabase_writes, git_pushes, deploys, npm_publishes, .rdc/plans/, .rdc/reports/, prototype_registry, akg_ingests",
23
- "default_model": "opus | sonnet | haiku | inherit",
24
- "triggers": "array of natural-language phrases that should suggest this skill",
25
- "follows": "array of skill names that typically run before this one",
26
- "leads_to": "array of skill names that typically run after this one",
27
- "sandbox_aware": "bool — true if skill honors RDC_TEST=1 short-circuit",
28
- "output_contract": "string — relative path to the skill's output contract (usually guides/output-contract.md)",
29
- "enabled_default": "bool — installer default; user can override in settings.json",
30
- "codeflow_required": "bool — true if the skill MUST consult CodeFlow before acting on the codebase"
31
- },
32
- "skills_meta": {
33
- "channel-formatter": {
34
- "name": "channel-formatter",
35
- "slash": "rdc:channel-formatter",
36
- "category": "tooling",
37
- "usage": "rdc:channel-formatter <channel|pack> [content]",
38
- "args": {
39
- "positional": [
40
- {
41
- "name": "channel",
42
- "required": false,
43
- "description": "Target channel or pack: linkedin | twitter | twitter-thread | slack | email-ext | email-int | pitch-deck | word | pdf-report | web | strict-format | social-pack | campaign-pack | exec-pack | launch-pack. Inferred from the request if omitted.",
44
- "accepts": "string"
45
- },
46
- {
47
- "name": "content",
48
- "required": false,
49
- "description": "Text/content to format or repurpose. If omitted, formats or repurposes content from the surrounding conversation.",
50
- "accepts": "string"
51
- }
52
- ],
53
- "flags": []
54
- },
55
- "requires": [],
56
- "produces": [],
57
- "default_model": "inherit",
58
- "triggers": [
59
- "format this for linkedin",
60
- "turn this article into a linkedin post",
61
- "repurpose this article",
62
- "make a content pack",
63
- "make a social pack",
64
- "make a campaign pack",
65
- "turn this into a twitter thread",
66
- "make posts from this",
67
- "write launch posts",
68
- "format this for social",
69
- "extract posts from this report",
70
- "write a tweet",
71
- "social media post",
72
- "draft an email",
73
- "make this a slide",
74
- "format for slack",
75
- "reformat this for"
76
- ],
77
- "follows": [],
78
- "leads_to": [
79
- "convert",
80
- "brochure",
81
- "rdc-brochurify",
82
- "lifeai-brochure-author"
83
- ],
84
- "sandbox_aware": true,
85
- "output_contract": "guides/output-contract.md",
86
- "enabled_default": true,
87
- "codeflow_required": false
88
- },
89
- "brochure": {
90
- "name": "brochure",
91
- "slash": "rdc:brochure",
92
- "category": "tooling",
93
- "usage": "rdc:brochure <input> [--out path] [--template name] [--format Letter|A4]",
94
- "args": {
95
- "positional": [
96
- {
97
- "name": "input",
98
- "required": true,
99
- "description": "Path to .zip, folder, .html, .md, or http(s)://... URL",
100
- "accepts": "path|url"
101
- }
102
- ],
103
- "flags": [
104
- {
105
- "name": "--out",
106
- "type": "path",
107
- "default": null,
108
- "description": "Output PDF path. Defaults to <input-basename>.pdf next to the input."
109
- },
110
- {
111
- "name": "--template",
112
- "type": "string",
113
- "default": "studio-default",
114
- "description": "Compose-mode template (scaffold/templates/brochure-<name>.html)."
115
- },
116
- {
117
- "name": "--format",
118
- "type": "string",
119
- "default": "Letter",
120
- "description": "Page size: Letter or A4."
121
- },
122
- {
123
- "name": "--margin",
124
- "type": "string",
125
- "default": null,
126
- "description": "Override CSS @page margin (e.g. \"0.5in\")."
127
- },
128
- {
129
- "name": "--no-print-emulate",
130
- "type": "bool",
131
- "default": false,
132
- "description": "Render with screen media instead of print."
133
- },
134
- {
135
- "name": "--keep-workdir",
136
- "type": "bool",
137
- "default": false,
138
- "description": "Keep the staged working directory for inspection."
139
- }
140
- ]
141
- },
142
- "requires": [],
143
- "produces": [
144
- "pdf_artifact"
145
- ],
146
- "default_model": "sonnet",
147
- "triggers": [
148
- "make a brochure",
149
- "render this html to pdf",
150
- "convert this zip to pdf",
151
- "puppeteer pdf",
152
- "print this to pdf"
153
- ],
154
- "follows": [],
155
- "leads_to": [],
156
- "sandbox_aware": true,
157
- "output_contract": "guides/output-contract.md",
158
- "enabled_default": true,
159
- "codeflow_required": false
160
- },
161
- "rdc-brochurify": {
162
- "name": "rdc-brochurify",
163
- "slash": "rdc:brochurify",
164
- "category": "tooling",
165
- "usage": "rdc:brochurify <source|job-payload>",
166
- "args": {
167
- "positional": [
168
- {
169
- "name": "source",
170
- "required": true,
171
- "description": "URL, HTML, DOCX, Markdown, JSX, corpus query, or broker job payload to turn into a brochure PDF.",
172
- "accepts": "path|url|json|string"
173
- }
174
- ],
175
- "flags": []
176
- },
177
- "requires": [
178
- "agent-dispatch"
179
- ],
180
- "produces": [
181
- "pdf_artifact",
182
- ".rdc/reports/"
183
- ],
184
- "default_model": "opus",
185
- "triggers": [
186
- "rdc:brochurify",
187
- "brochurify this",
188
- "make a brochure from",
189
- "convert this to a brochure PDF",
190
- "generate brochure from",
191
- "monkey_dispatch payload with skill=\"brochurify\""
192
- ],
193
- "follows": [
194
- "channel-formatter",
195
- "convert",
196
- "lifeai-brochure-author"
197
- ],
198
- "leads_to": [],
199
- "sandbox_aware": true,
200
- "output_contract": "guides/output-contract.md",
201
- "enabled_default": true,
202
- "codeflow_required": false
203
- },
204
- "lifeai-brochure-author": {
205
- "name": "lifeai-brochure-author",
206
- "slash": "lifeai-brochure-author",
207
- "category": "tooling",
208
- "usage": "lifeai-brochure-author <brochure-jsx-task>",
209
- "args": {
210
- "positional": [
211
- {
212
- "name": "brochure-jsx-task",
213
- "required": true,
214
- "description": "Brief, source content, or JSX verification task for @lifeai/brochure-kit output.",
215
- "accepts": "string|path"
216
- }
217
- ],
218
- "flags": []
219
- },
220
- "requires": [],
221
- "produces": [
222
- "brochure_jsx_guidance"
223
- ],
224
- "default_model": "opus",
225
- "triggers": [
226
- "write a brochure",
227
- "make a one-pager",
228
- "draft a PDF report",
229
- "design a brochure",
230
- "create an investor doc",
231
- "generate a fact sheet",
232
- "brochurify",
233
- "@lifeai/brochure-kit"
234
- ],
235
- "follows": [],
236
- "leads_to": [
237
- "rdc-brochurify"
238
- ],
239
- "sandbox_aware": false,
240
- "output_contract": "guides/output-contract.md",
241
- "enabled_default": true,
242
- "codeflow_required": false
243
- },
244
- "build": {
245
- "name": "build",
246
- "slash": "rdc:build",
247
- "category": "build",
248
- "usage": "rdc:build <epic-id>",
249
- "args": {
250
- "positional": [
251
- {
252
- "name": "epic-id",
253
- "required": true,
254
- "description": "UUID of a work_items epic with todo children",
255
- "accepts": "uuid"
256
- }
257
- ],
258
- "flags": [
259
- {
260
- "name": "--no-review",
261
- "type": "bool",
262
- "default": false,
263
- "description": "Skip the mandatory per-wave code-review gate (NOT recommended)"
264
- }
265
- ]
266
- },
267
- "requires": [
268
- "supabase",
269
- "clauth",
270
- "codeflow",
271
- "agent-dispatch",
272
- "work-items-rpc",
273
- "git"
274
- ],
275
- "produces": [
276
- "git_commits",
277
- "work_items",
278
- "supabase_writes",
279
- "git_pushes"
280
- ],
281
- "default_model": "opus",
282
- "triggers": [
283
- "build the epic",
284
- "execute the plan",
285
- "dispatch agents",
286
- "run rdc build"
287
- ],
288
- "follows": [
289
- "plan",
290
- "handoff"
291
- ],
292
- "leads_to": [
293
- "review",
294
- "report"
295
- ],
296
- "sandbox_aware": true,
297
- "output_contract": "guides/output-contract.md",
298
- "enabled_default": true,
299
- "codeflow_required": true
300
- },
301
- "co-develop": {
302
- "name": "co-develop",
303
- "slash": "rdc:co-develop",
304
- "category": "dev-loop",
305
- "usage": "rdc:co-develop <ask|reply|inbox|start|resume|status>",
306
- "args": {
307
- "positional": [
308
- {
309
- "name": "subcommand",
310
- "required": true,
311
- "description": "Action verb",
312
- "accepts": "ask | reply | inbox | start | resume | status"
313
- }
314
- ],
315
- "flags": [
316
- {
317
- "name": "--wait",
318
- "type": "bool",
319
- "default": false,
320
- "description": "Block until peer responds (default for `ask`)"
321
- }
322
- ]
323
- },
324
- "requires": [
325
- "clauth"
326
- ],
327
- "produces": [],
328
- "default_model": "inherit",
329
- "triggers": [
330
- "ask codex",
331
- "send to codex",
332
- "claude codex co-development",
333
- "peer-aware delegation"
334
- ],
335
- "follows": [],
336
- "leads_to": [],
337
- "sandbox_aware": true,
338
- "output_contract": "guides/output-contract.md",
339
- "enabled_default": true,
340
- "codeflow_required": false
341
- },
342
- "collab": {
343
- "name": "collab",
344
- "slash": "rdc:collab",
345
- "category": "dev-loop",
346
- "usage": "rdc:collab --session <session_id>",
347
- "args": {
348
- "positional": [],
349
- "flags": [
350
- {
351
- "name": "--session",
352
- "type": "string",
353
- "default": null,
354
- "description": "claude.ai session id to relay with",
355
- "required": true
356
- }
357
- ]
358
- },
359
- "requires": [
360
- "clauth",
361
- "git"
362
- ],
363
- "produces": [
364
- "git_commits",
365
- "git_pushes"
366
- ],
367
- "default_model": "inherit",
368
- "triggers": [
369
- "collab with claude ai",
370
- "relay session",
371
- "bidirectional session"
372
- ],
373
- "follows": [],
374
- "leads_to": [],
375
- "sandbox_aware": true,
376
- "output_contract": "guides/output-contract.md",
377
- "enabled_default": true,
378
- "codeflow_required": true
379
- },
380
- "convert": {
381
- "name": "convert",
382
- "slash": "rdc:convert",
383
- "category": "tooling",
384
- "usage": "rdc:convert <input> [--out <dir>] [--to markdown|word] [--images assets|base64|s3]",
385
- "args": {
386
- "positional": [
387
- {
388
- "name": "input",
389
- "required": true,
390
- "description": "One or more .docx, .pptx, .ppt, or .md files or directories",
391
- "accepts": "path"
392
- }
393
- ],
394
- "flags": [
395
- {
396
- "name": "--out",
397
- "type": "path",
398
- "default": null,
399
- "description": "Output directory for the converted tree."
400
- },
401
- {
402
- "name": "--out-same-dir",
403
- "type": "bool",
404
- "default": false,
405
- "description": "Write .md, .assets, and reports beside each source file."
406
- },
407
- {
408
- "name": "--to",
409
- "type": "string",
410
- "default": "auto",
411
- "description": "Output target: auto | markdown | word."
412
- },
413
- {
414
- "name": "--images",
415
- "type": "string",
416
- "default": "assets",
417
- "description": "Image handling: assets | base64 | s3."
418
- },
419
- {
420
- "name": "--equations",
421
- "type": "string",
422
- "default": "tex",
423
- "description": "OMML equations: tex (KaTeX) | image (debug)."
424
- },
425
- {
426
- "name": "--inline-images",
427
- "type": "bool",
428
- "default": false,
429
- "description": "Emit <name>.inline.md with images as data URIs."
430
- },
431
- {
432
- "name": "--word-template",
433
- "type": "path",
434
- "default": null,
435
- "description": ".docx/.dotx template for Markdown -> Word."
436
- },
437
- {
438
- "name": "--move-sources",
439
- "type": "bool",
440
- "default": false,
441
- "description": "Move processed sources into a sources/ folder."
442
- },
443
- {
444
- "name": "--config",
445
- "type": "path",
446
- "default": null,
447
- "description": "JSON config with conversion/output/S3 defaults."
448
- }
449
- ]
450
- },
451
- "requires": [],
452
- "produces": [
453
- "markdown_artifact",
454
- "word_artifact"
455
- ],
456
- "default_model": "inherit",
457
- "triggers": [
458
- "convert this docx to markdown",
459
- "convert to word",
460
- "docx to markdown",
461
- "pptx to markdown",
462
- "build a markdown corpus",
463
- "open the report in regen-mde"
464
- ],
465
- "follows": [],
466
- "leads_to": [],
467
- "sandbox_aware": false,
468
- "output_contract": "guides/output-contract.md",
469
- "enabled_default": true,
470
- "codeflow_required": false
471
- },
472
- "deploy": {
473
- "name": "deploy",
474
- "slash": "rdc:deploy",
475
- "category": "deploy",
476
- "usage": "rdc:deploy <slug> [new|diagnose|audit|promote] [--fix|--hotfix <sha>]",
477
- "args": {
478
- "positional": [
479
- {
480
- "name": "slug",
481
- "required": true,
482
- "description": "app_deployments.app_slug or pm2_name",
483
- "accepts": "string"
484
- },
485
- {
486
- "name": "action",
487
- "required": false,
488
- "description": "Operation kind",
489
- "accepts": "new | diagnose | audit | promote | (omit for default deploy)"
490
- }
491
- ],
492
- "flags": [
493
- {
494
- "name": "--fix",
495
- "type": "bool",
496
- "default": false,
497
- "description": "Apply remediation during diagnose/audit"
498
- },
499
- {
500
- "name": "--hotfix",
501
- "type": "string",
502
- "default": null,
503
- "description": "With promote: cherry-pick this specific commit sha to main instead of the app-path develop delta"
504
- }
505
- ]
506
- },
507
- "requires": [
508
- "clauth",
509
- "coolify",
510
- "pm2",
511
- "supabase",
512
- "codeflow"
513
- ],
514
- "produces": [
515
- "deploys",
516
- "supabase_writes"
517
- ],
518
- "default_model": "opus",
519
- "triggers": [
520
- "deploy to dev",
521
- "deploy to coolify",
522
- "audit watch paths",
523
- "fix deploy"
524
- ],
525
- "follows": [
526
- "build",
527
- "review"
528
- ],
529
- "leads_to": [
530
- "release"
531
- ],
532
- "sandbox_aware": true,
533
- "output_contract": "guides/output-contract.md",
534
- "enabled_default": true,
535
- "codeflow_required": true
536
- },
537
- "edit": {
538
- "name": "edit",
539
- "slash": "rdc:edit",
540
- "category": "dev-loop",
541
- "usage": "rdc:edit <site|brand|route|file>",
542
- "args": {
543
- "positional": [
544
- {
545
- "name": "target",
546
- "required": true,
547
- "description": "Site, brand, route, or file to open in the local editor host",
548
- "accepts": "string"
549
- }
550
- ],
551
- "flags": []
552
- },
553
- "requires": [
554
- "git"
555
- ],
556
- "produces": [],
557
- "default_model": "inherit",
558
- "triggers": [
559
- "open this in the editor",
560
- "edit this site",
561
- "open site in editor",
562
- "launch editor host"
563
- ],
564
- "follows": [],
565
- "leads_to": [
566
- "design"
567
- ],
568
- "sandbox_aware": true,
569
- "output_contract": "guides/output-contract.md",
570
- "enabled_default": true,
571
- "codeflow_required": false
572
- },
573
- "design": {
574
- "name": "design",
575
- "slash": "rdc:design",
576
- "category": "build",
577
- "usage": "rdc:design <topic>",
578
- "args": {
579
- "positional": [
580
- {
581
- "name": "topic",
582
- "required": true,
583
- "description": "Design subject — palette, token system, Studio surface",
584
- "accepts": "string"
585
- }
586
- ],
587
- "flags": []
588
- },
589
- "requires": [
590
- "supabase",
591
- "clauth",
592
- "codeflow",
593
- "git"
594
- ],
595
- "produces": [
596
- "git_commits",
597
- "supabase_writes"
598
- ],
599
- "default_model": "opus",
600
- "triggers": [
601
- "design palette",
602
- "studio design",
603
- "token-aware ui",
604
- "rampant color work"
605
- ],
606
- "follows": [],
607
- "leads_to": [
608
- "build"
609
- ],
610
- "sandbox_aware": true,
611
- "output_contract": "guides/output-contract.md",
612
- "enabled_default": true,
613
- "codeflow_required": true
614
- },
615
- "fixit": {
616
- "name": "fixit",
617
- "slash": "rdc:fixit",
618
- "category": "dev-loop",
619
- "usage": "rdc:fixit <description>",
620
- "args": {
621
- "positional": [
622
- {
623
- "name": "description",
624
- "required": true,
625
- "description": "Short prose description of the fix",
626
- "accepts": "string"
627
- }
628
- ],
629
- "flags": []
630
- },
631
- "requires": [
632
- "supabase",
633
- "clauth",
634
- "codeflow",
635
- "agent-dispatch",
636
- "work-items-rpc",
637
- "git"
638
- ],
639
- "produces": [
640
- "git_commits",
641
- "work_items",
642
- "supabase_writes",
643
- "git_pushes"
644
- ],
645
- "default_model": "opus",
646
- "triggers": [
647
- "quick fix",
648
- "small fix",
649
- "hotfix",
650
- "typo fix",
651
- "less than 5 files"
652
- ],
653
- "follows": [],
654
- "leads_to": [],
655
- "sandbox_aware": true,
656
- "output_contract": "guides/output-contract.md",
657
- "enabled_default": true,
658
- "codeflow_required": true,
659
- "constraint": "Files touched MUST be < 5 AND time MUST be < 30 min. Otherwise use rdc:plan."
660
- },
661
- "fs-mcp": {
662
- "name": "fs-mcp",
663
- "slash": "rdc:fs-mcp",
664
- "category": "tooling",
665
- "usage": "rdc:fs-mcp <task>",
666
- "args": {
667
- "positional": [
668
- {
669
- "name": "task",
670
- "required": true,
671
- "description": "Free-text task referencing fs_read/fs_write/fs_import_git_files",
672
- "accepts": "string"
673
- }
674
- ],
675
- "flags": []
676
- },
677
- "requires": [
678
- "clauth"
679
- ],
680
- "produces": [],
681
- "default_model": "inherit",
682
- "triggers": [
683
- "file system mcp",
684
- "fs_read",
685
- "fs_write",
686
- "fs_import_git_files",
687
- "claude.ai filesystem"
688
- ],
689
- "follows": [],
690
- "leads_to": [],
691
- "sandbox_aware": false,
692
- "output_contract": "guides/output-contract.md",
693
- "enabled_default": true,
694
- "codeflow_required": false
695
- },
696
- "handoff": {
697
- "name": "handoff",
698
- "slash": "rdc:handoff",
699
- "category": "planning",
700
- "usage": "rdc:handoff [--from-prototype <id>]",
701
- "args": {
702
- "positional": [],
703
- "flags": [
704
- {
705
- "name": "--from-prototype",
706
- "type": "string",
707
- "default": null,
708
- "description": "prototype_registry id to convert into a plan"
709
- }
710
- ]
711
- },
712
- "requires": [
713
- "supabase",
714
- "clauth",
715
- "codeflow",
716
- "work-items-rpc",
717
- "git"
718
- ],
719
- "produces": [
720
- "work_items",
721
- "supabase_writes",
722
- "git_commits",
723
- ".rdc/plans/",
724
- "prototype_registry"
725
- ],
726
- "default_model": "opus",
727
- "triggers": [
728
- "handoff to build",
729
- "convert prototype to plan",
730
- "finalize plan"
731
- ],
732
- "follows": [
733
- "plan",
734
- "prototype"
735
- ],
736
- "leads_to": [
737
- "build"
738
- ],
739
- "sandbox_aware": true,
740
- "output_contract": "guides/output-contract.md",
741
- "enabled_default": true,
742
- "codeflow_required": true
743
- },
744
- "help": {
745
- "name": "help",
746
- "slash": "rdc:help",
747
- "category": "reporting",
748
- "usage": "rdc:help",
749
- "args": {
750
- "positional": [],
751
- "flags": []
752
- },
753
- "requires": [],
754
- "produces": [],
755
- "default_model": "haiku",
756
- "triggers": [
757
- "rdc help",
758
- "what rdc skills exist",
759
- "list skills"
760
- ],
761
- "follows": [],
762
- "leads_to": [],
763
- "sandbox_aware": false,
764
- "output_contract": "guides/output-contract.md",
765
- "enabled_default": true,
766
- "codeflow_required": false
767
- },
768
- "overnight": {
769
- "name": "overnight",
770
- "slash": "rdc:overnight",
771
- "category": "build",
772
- "usage": "rdc:overnight [epic-id|label=<label>]",
773
- "args": {
774
- "positional": [
775
- {
776
- "name": "scope",
777
- "required": false,
778
- "description": "Specific epic UUID or label=<labelname> to drain",
779
- "accepts": "uuid | label=string"
780
- }
781
- ],
782
- "flags": []
783
- },
784
- "requires": [
785
- "supabase",
786
- "clauth",
787
- "codeflow",
788
- "agent-dispatch",
789
- "work-items-rpc",
790
- "git"
791
- ],
792
- "produces": [
793
- "git_commits",
794
- "work_items",
795
- "supabase_writes",
796
- "git_pushes",
797
- ".rdc/reports/"
798
- ],
799
- "default_model": "opus",
800
- "triggers": [
801
- "unattended build",
802
- "overnight run",
803
- "drain queue",
804
- "let claude run"
805
- ],
806
- "follows": [],
807
- "leads_to": [],
808
- "sandbox_aware": true,
809
- "output_contract": "guides/output-contract.md",
810
- "enabled_default": true,
811
- "codeflow_required": true
812
- },
813
- "plan": {
814
- "name": "plan",
815
- "slash": "rdc:plan",
816
- "category": "planning",
817
- "usage": "rdc:plan <topic>",
818
- "args": {
819
- "positional": [
820
- {
821
- "name": "topic",
822
- "required": true,
823
- "description": "What you want planned",
824
- "accepts": "string"
825
- }
826
- ],
827
- "flags": []
828
- },
829
- "requires": [
830
- "supabase",
831
- "clauth",
832
- "codeflow",
833
- "work-items-rpc"
834
- ],
835
- "produces": [
836
- "work_items",
837
- "supabase_writes",
838
- ".rdc/plans/"
839
- ],
840
- "default_model": "opus",
841
- "triggers": [
842
- "plan an epic",
843
- "break down work",
844
- "architecture decision",
845
- "design decisions"
846
- ],
847
- "follows": [
848
- "preplan"
849
- ],
850
- "leads_to": [
851
- "handoff",
852
- "build"
853
- ],
854
- "sandbox_aware": true,
855
- "output_contract": "guides/output-contract.md",
856
- "enabled_default": true,
857
- "codeflow_required": true
858
- },
859
- "preplan": {
860
- "name": "preplan",
861
- "slash": "rdc:preplan",
862
- "category": "planning",
863
- "usage": "rdc:preplan <topic>",
864
- "args": {
865
- "positional": [
866
- {
867
- "name": "topic",
868
- "required": true,
869
- "description": "What you want researched",
870
- "accepts": "string"
871
- }
872
- ],
873
- "flags": []
874
- },
875
- "requires": [
876
- "codeflow"
877
- ],
878
- "produces": [],
879
- "default_model": "opus",
880
- "triggers": [
881
- "research before planning",
882
- "preplan",
883
- "research unknowns",
884
- "what should we use"
885
- ],
886
- "follows": [],
887
- "leads_to": [
888
- "plan"
889
- ],
890
- "sandbox_aware": true,
891
- "output_contract": "guides/output-contract.md",
892
- "enabled_default": true,
893
- "codeflow_required": true
894
- },
895
- "prototype": {
896
- "name": "prototype",
897
- "slash": "rdc:prototype",
898
- "category": "build",
899
- "usage": "rdc:prototype <description>",
900
- "args": {
901
- "positional": [
902
- {
903
- "name": "description",
904
- "required": true,
905
- "description": "What to mock up",
906
- "accepts": "string"
907
- }
908
- ],
909
- "flags": []
910
- },
911
- "requires": [
912
- "supabase",
913
- "clauth",
914
- "codeflow"
915
- ],
916
- "produces": [
917
- "supabase_writes",
918
- "prototype_registry"
919
- ],
920
- "default_model": "opus",
921
- "triggers": [
922
- "mock it up",
923
- "prototype this",
924
- "show me what it looks like",
925
- "jsx mockup"
926
- ],
927
- "follows": [],
928
- "leads_to": [
929
- "handoff",
930
- "plan"
931
- ],
932
- "sandbox_aware": true,
933
- "output_contract": "guides/output-contract.md",
934
- "enabled_default": true,
935
- "codeflow_required": true
936
- },
937
- "rdc-extract-verifier-rules": {
938
- "name": "rdc-extract-verifier-rules",
939
- "slash": "rdc:extract-verifier-rules",
940
- "category": "tooling",
941
- "usage": "rdc:extract-verifier-rules [enhancement-log]",
942
- "args": {
943
- "positional": [
944
- {
945
- "name": "enhancement-log",
946
- "required": false,
947
- "description": "Optional path or description of enhancement-log entries to cluster into verifier-rule candidates.",
948
- "accepts": "path|string"
949
- }
950
- ],
951
- "flags": []
952
- },
953
- "requires": [
954
- "git"
955
- ],
956
- "produces": [
957
- ".rdc/reports/",
958
- "git_commits"
959
- ],
960
- "default_model": "opus",
961
- "triggers": [
962
- "rdc:extract-verifier-rules",
963
- "extract verifier rules",
964
- "promote enhancement log",
965
- "what new rules should we add",
966
- "verifier corpus update",
967
- "nightly cron at 3:00 AM PT"
968
- ],
969
- "follows": [
970
- "rdc-brochurify"
971
- ],
972
- "leads_to": [
973
- "review"
974
- ],
975
- "sandbox_aware": false,
976
- "output_contract": "guides/output-contract.md",
977
- "enabled_default": true,
978
- "codeflow_required": false
979
- },
980
- "rpms-filemap": {
981
- "name": "rpms-filemap",
982
- "slash": "rdc:rpms-filemap",
983
- "category": "tooling",
984
- "usage": "rdc:rpms-filemap",
985
- "args": {
986
- "positional": [],
987
- "flags": []
988
- },
989
- "requires": [],
990
- "produces": [],
991
- "default_model": "haiku",
992
- "triggers": [
993
- "rpms file map",
994
- "rule #1",
995
- "context export",
996
- "where does this file belong",
997
- "where should pm artifacts go"
998
- ],
999
- "follows": [],
1000
- "leads_to": [],
1001
- "sandbox_aware": false,
1002
- "output_contract": "guides/output-contract.md",
1003
- "enabled_default": true,
1004
- "codeflow_required": false
1005
- },
1006
- "release": {
1007
- "name": "release",
1008
- "slash": "rdc:release",
1009
- "category": "release",
1010
- "usage": "rdc:release <repo> [version|--patch|--minor|--major|--dry-run]",
1011
- "args": {
1012
- "positional": [
1013
- {
1014
- "name": "repo",
1015
- "required": true,
1016
- "description": "package slug or repo name",
1017
- "accepts": "string"
1018
- },
1019
- {
1020
- "name": "version",
1021
- "required": false,
1022
- "description": "Explicit semver",
1023
- "accepts": "semver"
1024
- }
1025
- ],
1026
- "flags": [
1027
- {
1028
- "name": "--patch",
1029
- "type": "bool",
1030
- "default": false,
1031
- "description": "Bump patch"
1032
- },
1033
- {
1034
- "name": "--minor",
1035
- "type": "bool",
1036
- "default": false,
1037
- "description": "Bump minor"
1038
- },
1039
- {
1040
- "name": "--major",
1041
- "type": "bool",
1042
- "default": false,
1043
- "description": "Bump major"
1044
- },
1045
- {
1046
- "name": "--dry-run",
1047
- "type": "bool",
1048
- "default": false,
1049
- "description": "Show actions without executing"
1050
- }
1051
- ]
1052
- },
1053
- "requires": [
1054
- "clauth",
1055
- "git",
1056
- "npm",
1057
- "coolify"
1058
- ],
1059
- "produces": [
1060
- "git_commits",
1061
- "git_pushes",
1062
- "npm_publishes",
1063
- "deploys"
1064
- ],
1065
- "default_model": "opus",
1066
- "triggers": [
1067
- "promote to production",
1068
- "release the package",
1069
- "push to main",
1070
- "bump version and ship"
1071
- ],
1072
- "follows": [
1073
- "deploy",
1074
- "review"
1075
- ],
1076
- "leads_to": [
1077
- "report"
1078
- ],
1079
- "sandbox_aware": true,
1080
- "output_contract": "guides/output-contract.md",
1081
- "enabled_default": true,
1082
- "codeflow_required": false,
1083
- "production_gate": "Promotion to main/production requires explicit user go-ahead. Dev deploys do not."
1084
- },
1085
- "report": {
1086
- "name": "report",
1087
- "slash": "rdc:report",
1088
- "category": "reporting",
1089
- "usage": "rdc:report",
1090
- "args": {
1091
- "positional": [],
1092
- "flags": []
1093
- },
1094
- "requires": [
1095
- "supabase",
1096
- "clauth",
1097
- "codeflow"
1098
- ],
1099
- "produces": [
1100
- ".rdc/reports/"
1101
- ],
1102
- "default_model": "opus",
1103
- "triggers": [
1104
- "session report",
1105
- "nightly report",
1106
- "summarize work done"
1107
- ],
1108
- "follows": [
1109
- "build",
1110
- "review",
1111
- "deploy",
1112
- "release"
1113
- ],
1114
- "leads_to": [],
1115
- "sandbox_aware": true,
1116
- "output_contract": "guides/output-contract.md",
1117
- "enabled_default": true,
1118
- "codeflow_required": true
1119
- },
1120
- "review": {
1121
- "name": "review",
1122
- "slash": "rdc:review",
1123
- "category": "build",
1124
- "usage": "rdc:review [--unattended]",
1125
- "args": {
1126
- "positional": [],
1127
- "flags": [
1128
- {
1129
- "name": "--unattended",
1130
- "type": "bool",
1131
- "default": false,
1132
- "description": "Auto-fix what is fixable; escalate the rest"
1133
- }
1134
- ]
1135
- },
1136
- "requires": [
1137
- "supabase",
1138
- "clauth",
1139
- "codeflow",
1140
- "agent-dispatch",
1141
- "git"
1142
- ],
1143
- "produces": [
1144
- "git_commits",
1145
- "supabase_writes"
1146
- ],
1147
- "default_model": "opus",
1148
- "triggers": [
1149
- "code review",
1150
- "post-build review",
1151
- "audit the work",
1152
- "tsc check"
1153
- ],
1154
- "follows": [
1155
- "build",
1156
- "fixit"
1157
- ],
1158
- "leads_to": [
1159
- "deploy",
1160
- "release",
1161
- "report"
1162
- ],
1163
- "sandbox_aware": true,
1164
- "output_contract": "guides/output-contract.md",
1165
- "enabled_default": true,
1166
- "codeflow_required": true
1167
- },
1168
- "self-test": {
1169
- "name": "self-test",
1170
- "slash": "rdc:self-test",
1171
- "category": "infra",
1172
- "usage": "rdc:self-test [--strict]",
1173
- "args": {
1174
- "positional": [],
1175
- "flags": [
1176
- {
1177
- "name": "--strict",
1178
- "type": "bool",
1179
- "default": false,
1180
- "description": "Fail on any warning"
1181
- }
1182
- ]
1183
- },
1184
- "requires": [
1185
- "clauth"
1186
- ],
1187
- "produces": [],
1188
- "default_model": "opus",
1189
- "triggers": [
1190
- "self test rdc skills",
1191
- "validate plugin",
1192
- "skill manifest consistency"
1193
- ],
1194
- "follows": [],
1195
- "leads_to": [],
1196
- "sandbox_aware": true,
1197
- "output_contract": "guides/output-contract.md",
1198
- "enabled_default": true,
1199
- "codeflow_required": false
1200
- },
1201
- "housekeeping": {
1202
- "name": "housekeeping",
1203
- "slash": "rdc:housekeeping",
1204
- "category": "reporting",
1205
- "usage": "rdc:housekeeping [--fix]",
1206
- "args": {
1207
- "positional": [],
1208
- "flags": [
1209
- {
1210
- "name": "--fix",
1211
- "type": "boolean",
1212
- "default": false,
1213
- "description": "Auto-remediate safe issues (scaffold CLAUDE.md, fix PUBLISH.md URLs, create missing dirs)"
1214
- }
1215
- ]
1216
- },
1217
- "requires": [
1218
- "supabase",
1219
- "clauth",
1220
- "coolify",
1221
- "git"
1222
- ],
1223
- "produces": [
1224
- ".rdc/reports/"
1225
- ],
1226
- "default_model": "sonnet",
1227
- "triggers": [
1228
- "weekly maintenance",
1229
- "housekeeping",
1230
- "directory structure audit",
1231
- "verify all apps",
1232
- "check repo health",
1233
- "maintenance audit"
1234
- ],
1235
- "follows": [],
1236
- "leads_to": [
1237
- "review"
1238
- ],
1239
- "sandbox_aware": true,
1240
- "output_contract": "guides/output-contract.md",
1241
- "enabled_default": true,
1242
- "codeflow_required": false
1243
- },
1244
- "status": {
1245
- "name": "status",
1246
- "slash": "rdc:status",
1247
- "category": "reporting",
1248
- "usage": "rdc:status",
1249
- "args": {
1250
- "positional": [],
1251
- "flags": []
1252
- },
1253
- "requires": [
1254
- "supabase",
1255
- "clauth"
1256
- ],
1257
- "produces": [],
1258
- "default_model": "haiku",
1259
- "triggers": [
1260
- "rdc status",
1261
- "what is open",
1262
- "session snapshot",
1263
- "kanban"
1264
- ],
1265
- "follows": [],
1266
- "leads_to": [],
1267
- "sandbox_aware": false,
1268
- "output_contract": "guides/output-contract.md",
1269
- "enabled_default": true,
1270
- "codeflow_required": false
1271
- },
1272
- "terminal-config": {
1273
- "name": "terminal-config",
1274
- "slash": "rdc:terminal-config",
1275
- "category": "infra",
1276
- "usage": "rdc:terminal-config <task>",
1277
- "args": {
1278
- "positional": [
1279
- {
1280
- "name": "task",
1281
- "required": true,
1282
- "description": "Free-text terminal-config task",
1283
- "accepts": "string"
1284
- }
1285
- ],
1286
- "flags": []
1287
- },
1288
- "requires": [
1289
- "git"
1290
- ],
1291
- "produces": [
1292
- "git_commits"
1293
- ],
1294
- "default_model": "opus",
1295
- "triggers": [
1296
- "windows terminal config",
1297
- "shell profile",
1298
- "agent startup order"
1299
- ],
1300
- "follows": [],
1301
- "leads_to": [],
1302
- "sandbox_aware": false,
1303
- "output_contract": "guides/output-contract.md",
1304
- "enabled_default": true,
1305
- "codeflow_required": false
1306
- },
1307
- "watch": {
1308
- "name": "watch",
1309
- "slash": "rdc:watch",
1310
- "category": "reporting",
1311
- "usage": "rdc:watch",
1312
- "args": {
1313
- "positional": [],
1314
- "flags": []
1315
- },
1316
- "requires": [],
1317
- "produces": [],
1318
- "default_model": "haiku",
1319
- "triggers": [
1320
- "watch session",
1321
- "live viewer",
1322
- "watch claude work"
1323
- ],
1324
- "follows": [],
1325
- "leads_to": [],
1326
- "sandbox_aware": true,
1327
- "output_contract": "guides/output-contract.md",
1328
- "enabled_default": true,
1329
- "codeflow_required": false
1330
- },
1331
- "workitems": {
1332
- "name": "workitems",
1333
- "slash": "rdc:workitems",
1334
- "category": "tooling",
1335
- "usage": "rdc:workitems [add|done|status|list|query]",
1336
- "args": {
1337
- "positional": [
1338
- {
1339
- "name": "subcommand",
1340
- "required": false,
1341
- "description": "CRUD verb",
1342
- "accepts": "add | done | status | list | query"
1343
- }
1344
- ],
1345
- "flags": []
1346
- },
1347
- "requires": [
1348
- "supabase",
1349
- "clauth",
1350
- "work-items-rpc"
1351
- ],
1352
- "produces": [
1353
- "work_items",
1354
- "supabase_writes"
1355
- ],
1356
- "default_model": "haiku",
1357
- "triggers": [
1358
- "add work item",
1359
- "close work item",
1360
- "list epics",
1361
- "query by label"
1362
- ],
1363
- "follows": [],
1364
- "leads_to": [],
1365
- "sandbox_aware": true,
1366
- "output_contract": "guides/output-contract.md",
1367
- "enabled_default": true,
1368
- "codeflow_required": false
1369
- }
1370
- }
1371
- }
1
+ {
2
+ "name": "rdc",
3
+ "version": "0.25.0",
4
+ "description": "RDC typed-agent dispatch skill suite for Claude Code — plan, build, review, overnight unattended builds with work-item tracking and TDD enforcement.",
5
+ "author": {
6
+ "name": "LIFEAI",
7
+ "email": "support@lifeai.tools"
8
+ },
9
+ "homepage": "https://github.com/LIFEAI/rdc-skills",
10
+ "repository": "https://github.com/LIFEAI/rdc-skills",
11
+ "skills_meta_schema": {
12
+ "$comment": "Schema for entries in skills_meta. Each skill object has the same shape.",
13
+ "name": "string — skill slug (matches directory name under skills/)",
14
+ "slash": "string — slash-command form, e.g. 'rdc:build'",
15
+ "category": "planning | build | deploy | release | reporting | tooling | infra | dev-loop",
16
+ "usage": "string — single-line invocation example",
17
+ "args": {
18
+ "positional": "array of { name, required, description, accepts }",
19
+ "flags": "array of { name, type, default, description }"
20
+ },
21
+ "requires": "array of capabilities — subset of: supabase, clauth, codeflow, neo4j, github, coolify, pm2, npm, git, codeflow-http, agent-dispatch, work-items-rpc",
22
+ "produces": "array of side effects — subset of: work_items, git_commits, supabase_writes, git_pushes, deploys, npm_publishes, .rdc/plans/, .rdc/reports/, prototype_registry, akg_ingests",
23
+ "default_model": "opus | sonnet | haiku | inherit",
24
+ "triggers": "array of natural-language phrases that should suggest this skill",
25
+ "follows": "array of skill names that typically run before this one",
26
+ "leads_to": "array of skill names that typically run after this one",
27
+ "sandbox_aware": "bool — true if skill honors RDC_TEST=1 short-circuit",
28
+ "output_contract": "string — relative path to the skill's output contract (usually guides/output-contract.md)",
29
+ "enabled_default": "bool — installer default; user can override in settings.json",
30
+ "codeflow_required": "bool — true if the skill MUST consult CodeFlow before acting on the codebase"
31
+ },
32
+ "skills_meta": {
33
+ "channel-formatter": {
34
+ "name": "channel-formatter",
35
+ "slash": "rdc:channel-formatter",
36
+ "category": "tooling",
37
+ "usage": "rdc:channel-formatter <channel|pack> [content]",
38
+ "args": {
39
+ "positional": [
40
+ {
41
+ "name": "channel",
42
+ "required": false,
43
+ "description": "Target channel or pack: linkedin | twitter | twitter-thread | slack | email-ext | email-int | pitch-deck | word | pdf-report | web | strict-format | social-pack | campaign-pack | exec-pack | launch-pack. Inferred from the request if omitted.",
44
+ "accepts": "string"
45
+ },
46
+ {
47
+ "name": "content",
48
+ "required": false,
49
+ "description": "Text/content to format or repurpose. If omitted, formats or repurposes content from the surrounding conversation.",
50
+ "accepts": "string"
51
+ }
52
+ ],
53
+ "flags": []
54
+ },
55
+ "requires": [],
56
+ "produces": [],
57
+ "default_model": "inherit",
58
+ "triggers": [
59
+ "format this for linkedin",
60
+ "turn this article into a linkedin post",
61
+ "repurpose this article",
62
+ "make a content pack",
63
+ "make a social pack",
64
+ "make a campaign pack",
65
+ "turn this into a twitter thread",
66
+ "make posts from this",
67
+ "write launch posts",
68
+ "format this for social",
69
+ "extract posts from this report",
70
+ "write a tweet",
71
+ "social media post",
72
+ "draft an email",
73
+ "make this a slide",
74
+ "format for slack",
75
+ "reformat this for"
76
+ ],
77
+ "follows": [],
78
+ "leads_to": [
79
+ "convert",
80
+ "brochure",
81
+ "rdc-brochurify",
82
+ "lifeai-brochure-author"
83
+ ],
84
+ "sandbox_aware": true,
85
+ "output_contract": "guides/output-contract.md",
86
+ "enabled_default": true,
87
+ "codeflow_required": false
88
+ },
89
+ "brochure": {
90
+ "name": "brochure",
91
+ "slash": "rdc:brochure",
92
+ "category": "tooling",
93
+ "usage": "rdc:brochure <input> [--out path] [--template name] [--format Letter|A4]",
94
+ "args": {
95
+ "positional": [
96
+ {
97
+ "name": "input",
98
+ "required": true,
99
+ "description": "Path to .zip, folder, .html, .md, or http(s)://... URL",
100
+ "accepts": "path|url"
101
+ }
102
+ ],
103
+ "flags": [
104
+ {
105
+ "name": "--out",
106
+ "type": "path",
107
+ "default": null,
108
+ "description": "Output PDF path. Defaults to <input-basename>.pdf next to the input."
109
+ },
110
+ {
111
+ "name": "--template",
112
+ "type": "string",
113
+ "default": "studio-default",
114
+ "description": "Compose-mode template (scaffold/templates/brochure-<name>.html)."
115
+ },
116
+ {
117
+ "name": "--format",
118
+ "type": "string",
119
+ "default": "Letter",
120
+ "description": "Page size: Letter or A4."
121
+ },
122
+ {
123
+ "name": "--margin",
124
+ "type": "string",
125
+ "default": null,
126
+ "description": "Override CSS @page margin (e.g. \"0.5in\")."
127
+ },
128
+ {
129
+ "name": "--no-print-emulate",
130
+ "type": "bool",
131
+ "default": false,
132
+ "description": "Render with screen media instead of print."
133
+ },
134
+ {
135
+ "name": "--keep-workdir",
136
+ "type": "bool",
137
+ "default": false,
138
+ "description": "Keep the staged working directory for inspection."
139
+ }
140
+ ]
141
+ },
142
+ "requires": [],
143
+ "produces": [
144
+ "pdf_artifact"
145
+ ],
146
+ "default_model": "sonnet",
147
+ "triggers": [
148
+ "make a brochure",
149
+ "render this html to pdf",
150
+ "convert this zip to pdf",
151
+ "puppeteer pdf",
152
+ "print this to pdf"
153
+ ],
154
+ "follows": [],
155
+ "leads_to": [],
156
+ "sandbox_aware": true,
157
+ "output_contract": "guides/output-contract.md",
158
+ "enabled_default": true,
159
+ "codeflow_required": false
160
+ },
161
+ "rdc-brochurify": {
162
+ "name": "rdc-brochurify",
163
+ "slash": "rdc:brochurify",
164
+ "category": "tooling",
165
+ "usage": "rdc:brochurify <source|job-payload>",
166
+ "args": {
167
+ "positional": [
168
+ {
169
+ "name": "source",
170
+ "required": true,
171
+ "description": "URL, HTML, DOCX, Markdown, JSX, corpus query, or broker job payload to turn into a brochure PDF.",
172
+ "accepts": "path|url|json|string"
173
+ }
174
+ ],
175
+ "flags": []
176
+ },
177
+ "requires": [
178
+ "agent-dispatch"
179
+ ],
180
+ "produces": [
181
+ "pdf_artifact",
182
+ ".rdc/reports/"
183
+ ],
184
+ "default_model": "opus",
185
+ "triggers": [
186
+ "rdc:brochurify",
187
+ "brochurify this",
188
+ "make a brochure from",
189
+ "convert this to a brochure PDF",
190
+ "generate brochure from",
191
+ "monkey_dispatch payload with skill=\"brochurify\""
192
+ ],
193
+ "follows": [
194
+ "channel-formatter",
195
+ "convert",
196
+ "lifeai-brochure-author"
197
+ ],
198
+ "leads_to": [],
199
+ "sandbox_aware": true,
200
+ "output_contract": "guides/output-contract.md",
201
+ "enabled_default": true,
202
+ "codeflow_required": false
203
+ },
204
+ "lifeai-brochure-author": {
205
+ "name": "lifeai-brochure-author",
206
+ "slash": "lifeai-brochure-author",
207
+ "category": "tooling",
208
+ "usage": "lifeai-brochure-author <brochure-jsx-task>",
209
+ "args": {
210
+ "positional": [
211
+ {
212
+ "name": "brochure-jsx-task",
213
+ "required": true,
214
+ "description": "Brief, source content, or JSX verification task for @lifeai/brochure-kit output.",
215
+ "accepts": "string|path"
216
+ }
217
+ ],
218
+ "flags": []
219
+ },
220
+ "requires": [],
221
+ "produces": [
222
+ "brochure_jsx_guidance"
223
+ ],
224
+ "default_model": "opus",
225
+ "triggers": [
226
+ "write a brochure",
227
+ "make a one-pager",
228
+ "draft a PDF report",
229
+ "design a brochure",
230
+ "create an investor doc",
231
+ "generate a fact sheet",
232
+ "brochurify",
233
+ "@lifeai/brochure-kit"
234
+ ],
235
+ "follows": [],
236
+ "leads_to": [
237
+ "rdc-brochurify"
238
+ ],
239
+ "sandbox_aware": false,
240
+ "output_contract": "guides/output-contract.md",
241
+ "enabled_default": true,
242
+ "codeflow_required": false
243
+ },
244
+ "build": {
245
+ "name": "build",
246
+ "slash": "rdc:build",
247
+ "category": "build",
248
+ "usage": "rdc:build <epic-id>",
249
+ "args": {
250
+ "positional": [
251
+ {
252
+ "name": "epic-id",
253
+ "required": true,
254
+ "description": "UUID of a work_items epic with todo children",
255
+ "accepts": "uuid"
256
+ }
257
+ ],
258
+ "flags": [
259
+ {
260
+ "name": "--no-review",
261
+ "type": "bool",
262
+ "default": false,
263
+ "description": "Skip the mandatory per-wave code-review gate (NOT recommended)"
264
+ }
265
+ ]
266
+ },
267
+ "requires": [
268
+ "supabase",
269
+ "clauth",
270
+ "codeflow",
271
+ "agent-dispatch",
272
+ "work-items-rpc",
273
+ "git"
274
+ ],
275
+ "produces": [
276
+ "git_commits",
277
+ "work_items",
278
+ "supabase_writes",
279
+ "git_pushes"
280
+ ],
281
+ "default_model": "opus",
282
+ "triggers": [
283
+ "build the epic",
284
+ "execute the plan",
285
+ "dispatch agents",
286
+ "run rdc build"
287
+ ],
288
+ "follows": [
289
+ "plan",
290
+ "handoff"
291
+ ],
292
+ "leads_to": [
293
+ "review",
294
+ "report"
295
+ ],
296
+ "sandbox_aware": true,
297
+ "output_contract": "guides/output-contract.md",
298
+ "enabled_default": true,
299
+ "codeflow_required": true
300
+ },
301
+ "co-develop": {
302
+ "name": "co-develop",
303
+ "slash": "rdc:co-develop",
304
+ "category": "dev-loop",
305
+ "usage": "rdc:co-develop <ask|reply|inbox|start|resume|status>",
306
+ "args": {
307
+ "positional": [
308
+ {
309
+ "name": "subcommand",
310
+ "required": true,
311
+ "description": "Action verb",
312
+ "accepts": "ask | reply | inbox | start | resume | status"
313
+ }
314
+ ],
315
+ "flags": [
316
+ {
317
+ "name": "--wait",
318
+ "type": "bool",
319
+ "default": false,
320
+ "description": "Block until peer responds (default for `ask`)"
321
+ }
322
+ ]
323
+ },
324
+ "requires": [
325
+ "clauth"
326
+ ],
327
+ "produces": [],
328
+ "default_model": "inherit",
329
+ "triggers": [
330
+ "ask codex",
331
+ "send to codex",
332
+ "claude codex co-development",
333
+ "peer-aware delegation"
334
+ ],
335
+ "follows": [],
336
+ "leads_to": [],
337
+ "sandbox_aware": true,
338
+ "output_contract": "guides/output-contract.md",
339
+ "enabled_default": true,
340
+ "codeflow_required": false
341
+ },
342
+ "collab": {
343
+ "name": "collab",
344
+ "slash": "rdc:collab",
345
+ "category": "dev-loop",
346
+ "usage": "rdc:collab --session <session_id>",
347
+ "args": {
348
+ "positional": [],
349
+ "flags": [
350
+ {
351
+ "name": "--session",
352
+ "type": "string",
353
+ "default": null,
354
+ "description": "claude.ai session id to relay with",
355
+ "required": true
356
+ }
357
+ ]
358
+ },
359
+ "requires": [
360
+ "clauth",
361
+ "git"
362
+ ],
363
+ "produces": [
364
+ "git_commits",
365
+ "git_pushes"
366
+ ],
367
+ "default_model": "inherit",
368
+ "triggers": [
369
+ "collab with claude ai",
370
+ "relay session",
371
+ "bidirectional session"
372
+ ],
373
+ "follows": [],
374
+ "leads_to": [],
375
+ "sandbox_aware": true,
376
+ "output_contract": "guides/output-contract.md",
377
+ "enabled_default": true,
378
+ "codeflow_required": true
379
+ },
380
+ "convert": {
381
+ "name": "convert",
382
+ "slash": "rdc:convert",
383
+ "category": "tooling",
384
+ "usage": "rdc:convert <input> [--out <dir>] [--to markdown|word] [--images assets|base64|s3]",
385
+ "args": {
386
+ "positional": [
387
+ {
388
+ "name": "input",
389
+ "required": true,
390
+ "description": "One or more .docx, .pptx, .ppt, or .md files or directories",
391
+ "accepts": "path"
392
+ }
393
+ ],
394
+ "flags": [
395
+ {
396
+ "name": "--out",
397
+ "type": "path",
398
+ "default": null,
399
+ "description": "Output directory for the converted tree."
400
+ },
401
+ {
402
+ "name": "--out-same-dir",
403
+ "type": "bool",
404
+ "default": false,
405
+ "description": "Write .md, .assets, and reports beside each source file."
406
+ },
407
+ {
408
+ "name": "--to",
409
+ "type": "string",
410
+ "default": "auto",
411
+ "description": "Output target: auto | markdown | word."
412
+ },
413
+ {
414
+ "name": "--images",
415
+ "type": "string",
416
+ "default": "assets",
417
+ "description": "Image handling: assets | base64 | s3."
418
+ },
419
+ {
420
+ "name": "--equations",
421
+ "type": "string",
422
+ "default": "tex",
423
+ "description": "OMML equations: tex (KaTeX) | image (debug)."
424
+ },
425
+ {
426
+ "name": "--inline-images",
427
+ "type": "bool",
428
+ "default": false,
429
+ "description": "Emit <name>.inline.md with images as data URIs."
430
+ },
431
+ {
432
+ "name": "--word-template",
433
+ "type": "path",
434
+ "default": null,
435
+ "description": ".docx/.dotx template for Markdown -> Word."
436
+ },
437
+ {
438
+ "name": "--move-sources",
439
+ "type": "bool",
440
+ "default": false,
441
+ "description": "Move processed sources into a sources/ folder."
442
+ },
443
+ {
444
+ "name": "--config",
445
+ "type": "path",
446
+ "default": null,
447
+ "description": "JSON config with conversion/output/S3 defaults."
448
+ }
449
+ ]
450
+ },
451
+ "requires": [],
452
+ "produces": [
453
+ "markdown_artifact",
454
+ "word_artifact"
455
+ ],
456
+ "default_model": "inherit",
457
+ "triggers": [
458
+ "convert this docx to markdown",
459
+ "convert to word",
460
+ "docx to markdown",
461
+ "pptx to markdown",
462
+ "build a markdown corpus",
463
+ "open the report in regen-mde"
464
+ ],
465
+ "follows": [],
466
+ "leads_to": [],
467
+ "sandbox_aware": false,
468
+ "output_contract": "guides/output-contract.md",
469
+ "enabled_default": true,
470
+ "codeflow_required": false
471
+ },
472
+ "deploy": {
473
+ "name": "deploy",
474
+ "slash": "rdc:deploy",
475
+ "category": "deploy",
476
+ "usage": "rdc:deploy <slug> [new|diagnose|audit|promote] [--fix|--hotfix <sha>]",
477
+ "args": {
478
+ "positional": [
479
+ {
480
+ "name": "slug",
481
+ "required": true,
482
+ "description": "app_deployments.app_slug or pm2_name",
483
+ "accepts": "string"
484
+ },
485
+ {
486
+ "name": "action",
487
+ "required": false,
488
+ "description": "Operation kind",
489
+ "accepts": "new | diagnose | audit | promote | (omit for default deploy)"
490
+ }
491
+ ],
492
+ "flags": [
493
+ {
494
+ "name": "--fix",
495
+ "type": "bool",
496
+ "default": false,
497
+ "description": "Apply remediation during diagnose/audit"
498
+ },
499
+ {
500
+ "name": "--hotfix",
501
+ "type": "string",
502
+ "default": null,
503
+ "description": "With promote: cherry-pick this specific commit sha to main instead of the app-path develop delta"
504
+ }
505
+ ]
506
+ },
507
+ "requires": [
508
+ "clauth",
509
+ "coolify",
510
+ "pm2",
511
+ "supabase",
512
+ "codeflow"
513
+ ],
514
+ "produces": [
515
+ "deploys",
516
+ "supabase_writes"
517
+ ],
518
+ "default_model": "opus",
519
+ "triggers": [
520
+ "deploy to dev",
521
+ "deploy to coolify",
522
+ "audit watch paths",
523
+ "fix deploy"
524
+ ],
525
+ "follows": [
526
+ "build",
527
+ "review"
528
+ ],
529
+ "leads_to": [
530
+ "release"
531
+ ],
532
+ "sandbox_aware": true,
533
+ "output_contract": "guides/output-contract.md",
534
+ "enabled_default": true,
535
+ "codeflow_required": true
536
+ },
537
+ "regen-media": {
538
+ "name": "regen-media",
539
+ "slash": "rdc:regen-media",
540
+ "category": "tooling",
541
+ "usage": "rdc:regen-media <generate|edit|upscale|upload> <brief-or-path>",
542
+ "args": {
543
+ "positional": [
544
+ {
545
+ "name": "action",
546
+ "required": true,
547
+ "description": "Image workflow action",
548
+ "accepts": "generate | edit | upscale | upload"
549
+ },
550
+ {
551
+ "name": "brief-or-path",
552
+ "required": true,
553
+ "description": "Prompt text for generation/editing, or an image path for upload/upscale",
554
+ "accepts": "string|path"
555
+ }
556
+ ],
557
+ "flags": [
558
+ {
559
+ "name": "--size",
560
+ "type": "string",
561
+ "default": "2048x1152",
562
+ "description": "Target gpt-image-2 size such as 2048x1152, 2048x2048, 3840x2160, or auto"
563
+ },
564
+ {
565
+ "name": "--upload",
566
+ "type": "bool",
567
+ "default": false,
568
+ "description": "Upload finished local artifact to Regen Media after generation"
569
+ }
570
+ ]
571
+ },
572
+ "requires": [
573
+ "clauth"
574
+ ],
575
+ "produces": [
576
+ "image_artifact",
577
+ "media_asset"
578
+ ],
579
+ "default_model": "inherit",
580
+ "triggers": [
581
+ "generate an image",
582
+ "make an image",
583
+ "create a hero image",
584
+ "gpt-image-2",
585
+ "built-in image_gen",
586
+ "codex image generation",
587
+ "upscale this image",
588
+ "edit this image",
589
+ "upload to regen media",
590
+ "regen-media image"
591
+ ],
592
+ "follows": [],
593
+ "leads_to": [
594
+ "design",
595
+ "deploy"
596
+ ],
597
+ "sandbox_aware": true,
598
+ "output_contract": "guides/output-contract.md",
599
+ "enabled_default": true,
600
+ "codeflow_required": false
601
+ },
602
+ "edit": {
603
+ "name": "edit",
604
+ "slash": "rdc:edit",
605
+ "category": "dev-loop",
606
+ "usage": "rdc:edit <site|brand|route|file>",
607
+ "args": {
608
+ "positional": [
609
+ {
610
+ "name": "target",
611
+ "required": true,
612
+ "description": "Site, brand, route, or file to open in the local editor host",
613
+ "accepts": "string"
614
+ }
615
+ ],
616
+ "flags": []
617
+ },
618
+ "requires": [
619
+ "git"
620
+ ],
621
+ "produces": [],
622
+ "default_model": "inherit",
623
+ "triggers": [
624
+ "open this in the editor",
625
+ "edit this site",
626
+ "open site in editor",
627
+ "launch editor host"
628
+ ],
629
+ "follows": [],
630
+ "leads_to": [
631
+ "design"
632
+ ],
633
+ "sandbox_aware": true,
634
+ "output_contract": "guides/output-contract.md",
635
+ "enabled_default": true,
636
+ "codeflow_required": false
637
+ },
638
+ "design": {
639
+ "name": "design",
640
+ "slash": "rdc:design",
641
+ "category": "build",
642
+ "usage": "rdc:design <topic>",
643
+ "args": {
644
+ "positional": [
645
+ {
646
+ "name": "topic",
647
+ "required": true,
648
+ "description": "Design subject — palette, token system, Studio surface",
649
+ "accepts": "string"
650
+ }
651
+ ],
652
+ "flags": []
653
+ },
654
+ "requires": [
655
+ "supabase",
656
+ "clauth",
657
+ "codeflow",
658
+ "git"
659
+ ],
660
+ "produces": [
661
+ "git_commits",
662
+ "supabase_writes"
663
+ ],
664
+ "default_model": "opus",
665
+ "triggers": [
666
+ "design palette",
667
+ "studio design",
668
+ "token-aware ui",
669
+ "rampant color work"
670
+ ],
671
+ "follows": [],
672
+ "leads_to": [
673
+ "build"
674
+ ],
675
+ "sandbox_aware": true,
676
+ "output_contract": "guides/output-contract.md",
677
+ "enabled_default": true,
678
+ "codeflow_required": true
679
+ },
680
+ "fixit": {
681
+ "name": "fixit",
682
+ "slash": "rdc:fixit",
683
+ "category": "dev-loop",
684
+ "usage": "rdc:fixit <description>",
685
+ "args": {
686
+ "positional": [
687
+ {
688
+ "name": "description",
689
+ "required": true,
690
+ "description": "Short prose description of the fix",
691
+ "accepts": "string"
692
+ }
693
+ ],
694
+ "flags": []
695
+ },
696
+ "requires": [
697
+ "supabase",
698
+ "clauth",
699
+ "codeflow",
700
+ "agent-dispatch",
701
+ "work-items-rpc",
702
+ "git"
703
+ ],
704
+ "produces": [
705
+ "git_commits",
706
+ "work_items",
707
+ "supabase_writes",
708
+ "git_pushes"
709
+ ],
710
+ "default_model": "opus",
711
+ "triggers": [
712
+ "quick fix",
713
+ "small fix",
714
+ "hotfix",
715
+ "typo fix",
716
+ "less than 5 files"
717
+ ],
718
+ "follows": [],
719
+ "leads_to": [],
720
+ "sandbox_aware": true,
721
+ "output_contract": "guides/output-contract.md",
722
+ "enabled_default": true,
723
+ "codeflow_required": true,
724
+ "constraint": "Files touched MUST be < 5 AND time MUST be < 30 min. Otherwise use rdc:plan."
725
+ },
726
+ "fs-mcp": {
727
+ "name": "fs-mcp",
728
+ "slash": "rdc:fs-mcp",
729
+ "category": "tooling",
730
+ "usage": "rdc:fs-mcp <task>",
731
+ "args": {
732
+ "positional": [
733
+ {
734
+ "name": "task",
735
+ "required": true,
736
+ "description": "Free-text task referencing fs_read/fs_write/fs_import_git_files",
737
+ "accepts": "string"
738
+ }
739
+ ],
740
+ "flags": []
741
+ },
742
+ "requires": [
743
+ "clauth"
744
+ ],
745
+ "produces": [],
746
+ "default_model": "inherit",
747
+ "triggers": [
748
+ "file system mcp",
749
+ "fs_read",
750
+ "fs_write",
751
+ "fs_import_git_files",
752
+ "claude.ai filesystem"
753
+ ],
754
+ "follows": [],
755
+ "leads_to": [],
756
+ "sandbox_aware": false,
757
+ "output_contract": "guides/output-contract.md",
758
+ "enabled_default": true,
759
+ "codeflow_required": false
760
+ },
761
+ "handoff": {
762
+ "name": "handoff",
763
+ "slash": "rdc:handoff",
764
+ "category": "planning",
765
+ "usage": "rdc:handoff [--from-prototype <id>]",
766
+ "args": {
767
+ "positional": [],
768
+ "flags": [
769
+ {
770
+ "name": "--from-prototype",
771
+ "type": "string",
772
+ "default": null,
773
+ "description": "prototype_registry id to convert into a plan"
774
+ }
775
+ ]
776
+ },
777
+ "requires": [
778
+ "supabase",
779
+ "clauth",
780
+ "codeflow",
781
+ "work-items-rpc",
782
+ "git"
783
+ ],
784
+ "produces": [
785
+ "work_items",
786
+ "supabase_writes",
787
+ "git_commits",
788
+ ".rdc/plans/",
789
+ "prototype_registry"
790
+ ],
791
+ "default_model": "opus",
792
+ "triggers": [
793
+ "handoff to build",
794
+ "convert prototype to plan",
795
+ "finalize plan"
796
+ ],
797
+ "follows": [
798
+ "plan",
799
+ "prototype"
800
+ ],
801
+ "leads_to": [
802
+ "build"
803
+ ],
804
+ "sandbox_aware": true,
805
+ "output_contract": "guides/output-contract.md",
806
+ "enabled_default": true,
807
+ "codeflow_required": true
808
+ },
809
+ "help": {
810
+ "name": "help",
811
+ "slash": "rdc:help",
812
+ "category": "reporting",
813
+ "usage": "rdc:help",
814
+ "args": {
815
+ "positional": [],
816
+ "flags": []
817
+ },
818
+ "requires": [],
819
+ "produces": [],
820
+ "default_model": "haiku",
821
+ "triggers": [
822
+ "rdc help",
823
+ "what rdc skills exist",
824
+ "list skills"
825
+ ],
826
+ "follows": [],
827
+ "leads_to": [],
828
+ "sandbox_aware": false,
829
+ "output_contract": "guides/output-contract.md",
830
+ "enabled_default": true,
831
+ "codeflow_required": false
832
+ },
833
+ "overnight": {
834
+ "name": "overnight",
835
+ "slash": "rdc:overnight",
836
+ "category": "build",
837
+ "usage": "rdc:overnight [epic-id|label=<label>]",
838
+ "args": {
839
+ "positional": [
840
+ {
841
+ "name": "scope",
842
+ "required": false,
843
+ "description": "Specific epic UUID or label=<labelname> to drain",
844
+ "accepts": "uuid | label=string"
845
+ }
846
+ ],
847
+ "flags": []
848
+ },
849
+ "requires": [
850
+ "supabase",
851
+ "clauth",
852
+ "codeflow",
853
+ "agent-dispatch",
854
+ "work-items-rpc",
855
+ "git"
856
+ ],
857
+ "produces": [
858
+ "git_commits",
859
+ "work_items",
860
+ "supabase_writes",
861
+ "git_pushes",
862
+ ".rdc/reports/"
863
+ ],
864
+ "default_model": "opus",
865
+ "triggers": [
866
+ "unattended build",
867
+ "overnight run",
868
+ "drain queue",
869
+ "let claude run"
870
+ ],
871
+ "follows": [],
872
+ "leads_to": [],
873
+ "sandbox_aware": true,
874
+ "output_contract": "guides/output-contract.md",
875
+ "enabled_default": true,
876
+ "codeflow_required": true
877
+ },
878
+ "plan": {
879
+ "name": "plan",
880
+ "slash": "rdc:plan",
881
+ "category": "planning",
882
+ "usage": "rdc:plan <topic>",
883
+ "args": {
884
+ "positional": [
885
+ {
886
+ "name": "topic",
887
+ "required": true,
888
+ "description": "What you want planned",
889
+ "accepts": "string"
890
+ }
891
+ ],
892
+ "flags": []
893
+ },
894
+ "requires": [
895
+ "supabase",
896
+ "clauth",
897
+ "codeflow",
898
+ "work-items-rpc"
899
+ ],
900
+ "produces": [
901
+ "work_items",
902
+ "supabase_writes",
903
+ ".rdc/plans/"
904
+ ],
905
+ "default_model": "opus",
906
+ "triggers": [
907
+ "plan an epic",
908
+ "break down work",
909
+ "architecture decision",
910
+ "design decisions"
911
+ ],
912
+ "follows": [
913
+ "preplan"
914
+ ],
915
+ "leads_to": [
916
+ "handoff",
917
+ "build"
918
+ ],
919
+ "sandbox_aware": true,
920
+ "output_contract": "guides/output-contract.md",
921
+ "enabled_default": true,
922
+ "codeflow_required": true
923
+ },
924
+ "preplan": {
925
+ "name": "preplan",
926
+ "slash": "rdc:preplan",
927
+ "category": "planning",
928
+ "usage": "rdc:preplan <topic>",
929
+ "args": {
930
+ "positional": [
931
+ {
932
+ "name": "topic",
933
+ "required": true,
934
+ "description": "What you want researched",
935
+ "accepts": "string"
936
+ }
937
+ ],
938
+ "flags": []
939
+ },
940
+ "requires": [
941
+ "codeflow"
942
+ ],
943
+ "produces": [],
944
+ "default_model": "opus",
945
+ "triggers": [
946
+ "research before planning",
947
+ "preplan",
948
+ "research unknowns",
949
+ "what should we use"
950
+ ],
951
+ "follows": [],
952
+ "leads_to": [
953
+ "plan"
954
+ ],
955
+ "sandbox_aware": true,
956
+ "output_contract": "guides/output-contract.md",
957
+ "enabled_default": true,
958
+ "codeflow_required": true
959
+ },
960
+ "prototype": {
961
+ "name": "prototype",
962
+ "slash": "rdc:prototype",
963
+ "category": "build",
964
+ "usage": "rdc:prototype <description>",
965
+ "args": {
966
+ "positional": [
967
+ {
968
+ "name": "description",
969
+ "required": true,
970
+ "description": "What to mock up",
971
+ "accepts": "string"
972
+ }
973
+ ],
974
+ "flags": []
975
+ },
976
+ "requires": [
977
+ "supabase",
978
+ "clauth",
979
+ "codeflow"
980
+ ],
981
+ "produces": [
982
+ "supabase_writes",
983
+ "prototype_registry"
984
+ ],
985
+ "default_model": "opus",
986
+ "triggers": [
987
+ "mock it up",
988
+ "prototype this",
989
+ "show me what it looks like",
990
+ "jsx mockup"
991
+ ],
992
+ "follows": [],
993
+ "leads_to": [
994
+ "handoff",
995
+ "plan"
996
+ ],
997
+ "sandbox_aware": true,
998
+ "output_contract": "guides/output-contract.md",
999
+ "enabled_default": true,
1000
+ "codeflow_required": true
1001
+ },
1002
+ "rdc-extract-verifier-rules": {
1003
+ "name": "rdc-extract-verifier-rules",
1004
+ "slash": "rdc:extract-verifier-rules",
1005
+ "category": "tooling",
1006
+ "usage": "rdc:extract-verifier-rules [enhancement-log]",
1007
+ "args": {
1008
+ "positional": [
1009
+ {
1010
+ "name": "enhancement-log",
1011
+ "required": false,
1012
+ "description": "Optional path or description of enhancement-log entries to cluster into verifier-rule candidates.",
1013
+ "accepts": "path|string"
1014
+ }
1015
+ ],
1016
+ "flags": []
1017
+ },
1018
+ "requires": [
1019
+ "git"
1020
+ ],
1021
+ "produces": [
1022
+ ".rdc/reports/",
1023
+ "git_commits"
1024
+ ],
1025
+ "default_model": "opus",
1026
+ "triggers": [
1027
+ "rdc:extract-verifier-rules",
1028
+ "extract verifier rules",
1029
+ "promote enhancement log",
1030
+ "what new rules should we add",
1031
+ "verifier corpus update",
1032
+ "nightly cron at 3:00 AM PT"
1033
+ ],
1034
+ "follows": [
1035
+ "rdc-brochurify"
1036
+ ],
1037
+ "leads_to": [
1038
+ "review"
1039
+ ],
1040
+ "sandbox_aware": false,
1041
+ "output_contract": "guides/output-contract.md",
1042
+ "enabled_default": true,
1043
+ "codeflow_required": false
1044
+ },
1045
+ "rpms-filemap": {
1046
+ "name": "rpms-filemap",
1047
+ "slash": "rdc:rpms-filemap",
1048
+ "category": "tooling",
1049
+ "usage": "rdc:rpms-filemap",
1050
+ "args": {
1051
+ "positional": [],
1052
+ "flags": []
1053
+ },
1054
+ "requires": [],
1055
+ "produces": [],
1056
+ "default_model": "haiku",
1057
+ "triggers": [
1058
+ "rpms file map",
1059
+ "rule #1",
1060
+ "context export",
1061
+ "where does this file belong",
1062
+ "where should pm artifacts go"
1063
+ ],
1064
+ "follows": [],
1065
+ "leads_to": [],
1066
+ "sandbox_aware": false,
1067
+ "output_contract": "guides/output-contract.md",
1068
+ "enabled_default": true,
1069
+ "codeflow_required": false
1070
+ },
1071
+ "release": {
1072
+ "name": "release",
1073
+ "slash": "rdc:release",
1074
+ "category": "release",
1075
+ "usage": "rdc:release <repo> [version|--patch|--minor|--major|--dry-run]",
1076
+ "args": {
1077
+ "positional": [
1078
+ {
1079
+ "name": "repo",
1080
+ "required": true,
1081
+ "description": "package slug or repo name",
1082
+ "accepts": "string"
1083
+ },
1084
+ {
1085
+ "name": "version",
1086
+ "required": false,
1087
+ "description": "Explicit semver",
1088
+ "accepts": "semver"
1089
+ }
1090
+ ],
1091
+ "flags": [
1092
+ {
1093
+ "name": "--patch",
1094
+ "type": "bool",
1095
+ "default": false,
1096
+ "description": "Bump patch"
1097
+ },
1098
+ {
1099
+ "name": "--minor",
1100
+ "type": "bool",
1101
+ "default": false,
1102
+ "description": "Bump minor"
1103
+ },
1104
+ {
1105
+ "name": "--major",
1106
+ "type": "bool",
1107
+ "default": false,
1108
+ "description": "Bump major"
1109
+ },
1110
+ {
1111
+ "name": "--dry-run",
1112
+ "type": "bool",
1113
+ "default": false,
1114
+ "description": "Show actions without executing"
1115
+ }
1116
+ ]
1117
+ },
1118
+ "requires": [
1119
+ "clauth",
1120
+ "git",
1121
+ "npm",
1122
+ "coolify"
1123
+ ],
1124
+ "produces": [
1125
+ "git_commits",
1126
+ "git_pushes",
1127
+ "npm_publishes",
1128
+ "deploys"
1129
+ ],
1130
+ "default_model": "opus",
1131
+ "triggers": [
1132
+ "promote to production",
1133
+ "release the package",
1134
+ "push to main",
1135
+ "bump version and ship"
1136
+ ],
1137
+ "follows": [
1138
+ "deploy",
1139
+ "review"
1140
+ ],
1141
+ "leads_to": [
1142
+ "report"
1143
+ ],
1144
+ "sandbox_aware": true,
1145
+ "output_contract": "guides/output-contract.md",
1146
+ "enabled_default": true,
1147
+ "codeflow_required": false,
1148
+ "production_gate": "Promotion to main/production requires explicit user go-ahead. Dev deploys do not."
1149
+ },
1150
+ "report": {
1151
+ "name": "report",
1152
+ "slash": "rdc:report",
1153
+ "category": "reporting",
1154
+ "usage": "rdc:report",
1155
+ "args": {
1156
+ "positional": [],
1157
+ "flags": []
1158
+ },
1159
+ "requires": [
1160
+ "supabase",
1161
+ "clauth",
1162
+ "codeflow"
1163
+ ],
1164
+ "produces": [
1165
+ ".rdc/reports/"
1166
+ ],
1167
+ "default_model": "opus",
1168
+ "triggers": [
1169
+ "session report",
1170
+ "nightly report",
1171
+ "summarize work done"
1172
+ ],
1173
+ "follows": [
1174
+ "build",
1175
+ "review",
1176
+ "deploy",
1177
+ "release"
1178
+ ],
1179
+ "leads_to": [],
1180
+ "sandbox_aware": true,
1181
+ "output_contract": "guides/output-contract.md",
1182
+ "enabled_default": true,
1183
+ "codeflow_required": true
1184
+ },
1185
+ "review": {
1186
+ "name": "review",
1187
+ "slash": "rdc:review",
1188
+ "category": "build",
1189
+ "usage": "rdc:review [--unattended]",
1190
+ "args": {
1191
+ "positional": [],
1192
+ "flags": [
1193
+ {
1194
+ "name": "--unattended",
1195
+ "type": "bool",
1196
+ "default": false,
1197
+ "description": "Auto-fix what is fixable; escalate the rest"
1198
+ }
1199
+ ]
1200
+ },
1201
+ "requires": [
1202
+ "supabase",
1203
+ "clauth",
1204
+ "codeflow",
1205
+ "agent-dispatch",
1206
+ "git"
1207
+ ],
1208
+ "produces": [
1209
+ "git_commits",
1210
+ "supabase_writes"
1211
+ ],
1212
+ "default_model": "opus",
1213
+ "triggers": [
1214
+ "code review",
1215
+ "post-build review",
1216
+ "audit the work",
1217
+ "tsc check"
1218
+ ],
1219
+ "follows": [
1220
+ "build",
1221
+ "fixit"
1222
+ ],
1223
+ "leads_to": [
1224
+ "deploy",
1225
+ "release",
1226
+ "report"
1227
+ ],
1228
+ "sandbox_aware": true,
1229
+ "output_contract": "guides/output-contract.md",
1230
+ "enabled_default": true,
1231
+ "codeflow_required": true
1232
+ },
1233
+ "self-test": {
1234
+ "name": "self-test",
1235
+ "slash": "rdc:self-test",
1236
+ "category": "infra",
1237
+ "usage": "rdc:self-test [--strict]",
1238
+ "args": {
1239
+ "positional": [],
1240
+ "flags": [
1241
+ {
1242
+ "name": "--strict",
1243
+ "type": "bool",
1244
+ "default": false,
1245
+ "description": "Fail on any warning"
1246
+ }
1247
+ ]
1248
+ },
1249
+ "requires": [
1250
+ "clauth"
1251
+ ],
1252
+ "produces": [],
1253
+ "default_model": "opus",
1254
+ "triggers": [
1255
+ "self test rdc skills",
1256
+ "validate plugin",
1257
+ "skill manifest consistency"
1258
+ ],
1259
+ "follows": [],
1260
+ "leads_to": [],
1261
+ "sandbox_aware": true,
1262
+ "output_contract": "guides/output-contract.md",
1263
+ "enabled_default": true,
1264
+ "codeflow_required": false
1265
+ },
1266
+ "housekeeping": {
1267
+ "name": "housekeeping",
1268
+ "slash": "rdc:housekeeping",
1269
+ "category": "reporting",
1270
+ "usage": "rdc:housekeeping [--fix]",
1271
+ "args": {
1272
+ "positional": [],
1273
+ "flags": [
1274
+ {
1275
+ "name": "--fix",
1276
+ "type": "boolean",
1277
+ "default": false,
1278
+ "description": "Auto-remediate safe issues (scaffold CLAUDE.md, fix PUBLISH.md URLs, create missing dirs)"
1279
+ }
1280
+ ]
1281
+ },
1282
+ "requires": [
1283
+ "supabase",
1284
+ "clauth",
1285
+ "coolify",
1286
+ "git"
1287
+ ],
1288
+ "produces": [
1289
+ ".rdc/reports/"
1290
+ ],
1291
+ "default_model": "sonnet",
1292
+ "triggers": [
1293
+ "weekly maintenance",
1294
+ "housekeeping",
1295
+ "directory structure audit",
1296
+ "verify all apps",
1297
+ "check repo health",
1298
+ "maintenance audit"
1299
+ ],
1300
+ "follows": [],
1301
+ "leads_to": [
1302
+ "review"
1303
+ ],
1304
+ "sandbox_aware": true,
1305
+ "output_contract": "guides/output-contract.md",
1306
+ "enabled_default": true,
1307
+ "codeflow_required": false
1308
+ },
1309
+ "status": {
1310
+ "name": "status",
1311
+ "slash": "rdc:status",
1312
+ "category": "reporting",
1313
+ "usage": "rdc:status",
1314
+ "args": {
1315
+ "positional": [],
1316
+ "flags": []
1317
+ },
1318
+ "requires": [
1319
+ "supabase",
1320
+ "clauth"
1321
+ ],
1322
+ "produces": [],
1323
+ "default_model": "haiku",
1324
+ "triggers": [
1325
+ "rdc status",
1326
+ "what is open",
1327
+ "session snapshot",
1328
+ "kanban"
1329
+ ],
1330
+ "follows": [],
1331
+ "leads_to": [],
1332
+ "sandbox_aware": false,
1333
+ "output_contract": "guides/output-contract.md",
1334
+ "enabled_default": true,
1335
+ "codeflow_required": false
1336
+ },
1337
+ "terminal-config": {
1338
+ "name": "terminal-config",
1339
+ "slash": "rdc:terminal-config",
1340
+ "category": "infra",
1341
+ "usage": "rdc:terminal-config <task>",
1342
+ "args": {
1343
+ "positional": [
1344
+ {
1345
+ "name": "task",
1346
+ "required": true,
1347
+ "description": "Free-text terminal-config task",
1348
+ "accepts": "string"
1349
+ }
1350
+ ],
1351
+ "flags": []
1352
+ },
1353
+ "requires": [
1354
+ "git"
1355
+ ],
1356
+ "produces": [
1357
+ "git_commits"
1358
+ ],
1359
+ "default_model": "opus",
1360
+ "triggers": [
1361
+ "windows terminal config",
1362
+ "shell profile",
1363
+ "agent startup order"
1364
+ ],
1365
+ "follows": [],
1366
+ "leads_to": [],
1367
+ "sandbox_aware": false,
1368
+ "output_contract": "guides/output-contract.md",
1369
+ "enabled_default": true,
1370
+ "codeflow_required": false
1371
+ },
1372
+ "watch": {
1373
+ "name": "watch",
1374
+ "slash": "rdc:watch",
1375
+ "category": "reporting",
1376
+ "usage": "rdc:watch",
1377
+ "args": {
1378
+ "positional": [],
1379
+ "flags": []
1380
+ },
1381
+ "requires": [],
1382
+ "produces": [],
1383
+ "default_model": "haiku",
1384
+ "triggers": [
1385
+ "watch session",
1386
+ "live viewer",
1387
+ "watch claude work"
1388
+ ],
1389
+ "follows": [],
1390
+ "leads_to": [],
1391
+ "sandbox_aware": true,
1392
+ "output_contract": "guides/output-contract.md",
1393
+ "enabled_default": true,
1394
+ "codeflow_required": false
1395
+ },
1396
+ "workitems": {
1397
+ "name": "workitems",
1398
+ "slash": "rdc:workitems",
1399
+ "category": "tooling",
1400
+ "usage": "rdc:workitems [add|done|status|list|query]",
1401
+ "args": {
1402
+ "positional": [
1403
+ {
1404
+ "name": "subcommand",
1405
+ "required": false,
1406
+ "description": "CRUD verb",
1407
+ "accepts": "add | done | status | list | query"
1408
+ }
1409
+ ],
1410
+ "flags": []
1411
+ },
1412
+ "requires": [
1413
+ "supabase",
1414
+ "clauth",
1415
+ "work-items-rpc"
1416
+ ],
1417
+ "produces": [
1418
+ "work_items",
1419
+ "supabase_writes"
1420
+ ],
1421
+ "default_model": "haiku",
1422
+ "triggers": [
1423
+ "add work item",
1424
+ "close work item",
1425
+ "list epics",
1426
+ "query by label"
1427
+ ],
1428
+ "follows": [],
1429
+ "leads_to": [],
1430
+ "sandbox_aware": true,
1431
+ "output_contract": "guides/output-contract.md",
1432
+ "enabled_default": true,
1433
+ "codeflow_required": false
1434
+ },
1435
+ "onramp": {
1436
+ "name": "onramp",
1437
+ "slash": "rdc:onramp",
1438
+ "category": "infra",
1439
+ "usage": "rdc:onramp <slug> --name \"<Display Name>\" [--location <json>] [--archetype <archetype>] [--owner place-fund|rdc|jv|client] [--history] [--dry-run]",
1440
+ "args": {
1441
+ "positional": [
1442
+ {
1443
+ "name": "slug",
1444
+ "required": true,
1445
+ "description": "kebab-case place identifier (e.g. spirit-bear-village). Validated against ^[a-z0-9]+(-[a-z0-9]+)*$.",
1446
+ "accepts": "string"
1447
+ }
1448
+ ],
1449
+ "flags": [
1450
+ {
1451
+ "name": "--name",
1452
+ "type": "string",
1453
+ "default": null,
1454
+ "description": "Human display name. Required. Passed verbatim to enroll_place and the scaffolder."
1455
+ },
1456
+ {
1457
+ "name": "--location",
1458
+ "type": "json",
1459
+ "default": "{}",
1460
+ "description": "JSON object for enroll_place p_location (e.g. {\"state\":\"BC\",\"country\":\"Canada\"}). Never guessed — omit if unknown."
1461
+ },
1462
+ {
1463
+ "name": "--archetype",
1464
+ "type": "string",
1465
+ "default": "TBD",
1466
+ "description": "Base-arc archetype slug. See corpus/_shared/onramp/ARCHETYPES.md."
1467
+ },
1468
+ {
1469
+ "name": "--owner",
1470
+ "type": "string",
1471
+ "default": "place-fund",
1472
+ "description": "place-fund | rdc | jv | client"
1473
+ },
1474
+ {
1475
+ "name": "--history",
1476
+ "type": "boolean",
1477
+ "default": false,
1478
+ "description": "Opt-in: also scaffold places/<slug>/HISTORY.md (see rdc-onramp-skill.md §D4)."
1479
+ },
1480
+ {
1481
+ "name": "--dry-run",
1482
+ "type": "boolean",
1483
+ "default": false,
1484
+ "description": "Resolve drift state + print plan; perform NO writes (no RPC, no work item, no scaffolder)."
1485
+ }
1486
+ ]
1487
+ },
1488
+ "requires": [
1489
+ "supabase",
1490
+ "clauth",
1491
+ "codeflow",
1492
+ "work-items-rpc",
1493
+ "git"
1494
+ ],
1495
+ "produces": [
1496
+ "work_items",
1497
+ "supabase_writes"
1498
+ ],
1499
+ "default_model": "opus",
1500
+ "triggers": [
1501
+ "onramp a place",
1502
+ "enroll a new place",
1503
+ "lay the infra for",
1504
+ "enroll this project",
1505
+ "start a new place fund project",
1506
+ "run enrollment for"
1507
+ ],
1508
+ "follows": [],
1509
+ "leads_to": [
1510
+ "design"
1511
+ ],
1512
+ "sandbox_aware": true,
1513
+ "output_contract": "guides/output-contract.md",
1514
+ "enabled_default": true,
1515
+ "codeflow_required": true
1516
+ }
1517
+ }
1518
+ }