@lifeaitools/rdc-skills 0.25.0 → 0.25.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/plugin.json +1560 -1518
- package/.github/workflows/self-test.yml +34 -34
- package/CHANGELOG.md +322 -310
- package/MANIFEST.md +224 -221
- package/README.md +379 -377
- package/commands/build.md +181 -181
- package/commands/collab.md +180 -180
- package/commands/deploy.md +148 -148
- package/commands/fixit.md +150 -150
- package/commands/handoff.md +173 -173
- package/commands/overnight.md +220 -220
- package/commands/plan.md +158 -158
- package/commands/preplan.md +131 -131
- package/commands/prototype.md +145 -145
- package/commands/report.md +99 -99
- package/commands/review.md +120 -120
- package/commands/status.md +86 -86
- package/commands/workitems.md +127 -127
- package/git-sha.json +1 -1
- package/guides/agent-bootstrap.md +195 -195
- package/guides/agents/backend.md +102 -102
- package/guides/agents/content.md +94 -94
- package/guides/agents/cs2.md +56 -56
- package/guides/agents/data.md +86 -86
- package/guides/agents/design.md +77 -77
- package/guides/agents/frontend.md +91 -91
- package/guides/agents/infrastructure.md +81 -81
- package/guides/agents/setup.md +272 -272
- package/guides/agents/verify.md +119 -119
- package/guides/agents/viz.md +106 -106
- package/package.json +57 -57
- package/scripts/install-rdc-skills.js +1401 -1289
- package/scripts/self-test.mjs +1460 -1460
- package/scripts/validate-publish-manifests.js +502 -502
- package/skills/build/SKILL.md +574 -559
- package/skills/channel-formatter/SKILL.md +538 -538
- package/skills/collab/SKILL.md +239 -239
- package/skills/convert/SKILL.md +167 -167
- package/skills/deploy/SKILL.md +541 -541
- package/skills/design/SKILL.md +205 -205
- package/skills/env/SKILL.md +141 -0
- package/skills/fixit/SKILL.md +203 -203
- package/skills/fs-mcp/SKILL.md +37 -2
- package/skills/handoff/SKILL.md +236 -236
- package/skills/new-model/SKILL.md +49 -0
- package/skills/onramp/SKILL.md +1459 -248
- package/skills/overnight/SKILL.md +251 -251
- package/skills/plan/SKILL.md +345 -345
- package/skills/preplan/SKILL.md +90 -90
- package/skills/prototype/SKILL.md +150 -150
- package/skills/regen-media/SKILL.md +94 -0
- package/skills/release/SKILL.md +140 -140
- package/skills/report/SKILL.md +100 -100
- package/skills/review/SKILL.md +159 -151
- package/skills/self-test/SKILL.md +108 -108
- package/skills/status/SKILL.md +99 -99
- package/skills/tests/MATRIX.md +55 -54
- package/skills/tests/onramp.test.json +87 -87
- package/skills/tests/rdc-regen-media.test.json +29 -0
- package/skills/watch/SKILL.md +84 -84
- package/skills/workitems/SKILL.md +151 -151
|
@@ -1,1518 +1,1560 @@
|
|
|
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
|
-
"
|
|
1338
|
-
"name": "
|
|
1339
|
-
"slash": "rdc:
|
|
1340
|
-
"category": "infra",
|
|
1341
|
-
"usage": "rdc:
|
|
1342
|
-
"args": {
|
|
1343
|
-
"positional": [
|
|
1344
|
-
{
|
|
1345
|
-
"name": "
|
|
1346
|
-
"required":
|
|
1347
|
-
"
|
|
1348
|
-
"
|
|
1349
|
-
}
|
|
1350
|
-
],
|
|
1351
|
-
"flags": []
|
|
1352
|
-
},
|
|
1353
|
-
"requires": [
|
|
1354
|
-
"
|
|
1355
|
-
],
|
|
1356
|
-
"produces": [
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
"
|
|
1362
|
-
"
|
|
1363
|
-
"
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
"
|
|
1370
|
-
"
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
"
|
|
1374
|
-
"
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
"
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
"
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
"
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
"
|
|
1399
|
-
"
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
"
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
"
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
"
|
|
1419
|
-
|
|
1420
|
-
],
|
|
1421
|
-
"
|
|
1422
|
-
"
|
|
1423
|
-
|
|
1424
|
-
"
|
|
1425
|
-
"
|
|
1426
|
-
"
|
|
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
|
-
"
|
|
1436
|
-
"name": "
|
|
1437
|
-
"slash": "rdc:
|
|
1438
|
-
"category": "
|
|
1439
|
-
"usage": "rdc:
|
|
1440
|
-
"args": {
|
|
1441
|
-
"positional": [
|
|
1442
|
-
{
|
|
1443
|
-
"name": "
|
|
1444
|
-
"required":
|
|
1445
|
-
"description": "
|
|
1446
|
-
"accepts": "
|
|
1447
|
-
}
|
|
1448
|
-
],
|
|
1449
|
-
"flags": [
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
"
|
|
1483
|
-
"
|
|
1484
|
-
"description": "
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
}
|
|
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
|
+
"env": {
|
|
1338
|
+
"name": "env",
|
|
1339
|
+
"slash": "rdc:env",
|
|
1340
|
+
"category": "infra",
|
|
1341
|
+
"usage": "rdc:env [status|install|repair|update]",
|
|
1342
|
+
"args": {
|
|
1343
|
+
"positional": [
|
|
1344
|
+
{
|
|
1345
|
+
"name": "action",
|
|
1346
|
+
"required": false,
|
|
1347
|
+
"default": "status",
|
|
1348
|
+
"values": ["status", "install", "repair", "update"]
|
|
1349
|
+
}
|
|
1350
|
+
],
|
|
1351
|
+
"flags": []
|
|
1352
|
+
},
|
|
1353
|
+
"requires": [
|
|
1354
|
+
"clauth"
|
|
1355
|
+
],
|
|
1356
|
+
"produces": [],
|
|
1357
|
+
"default_model": "sonnet",
|
|
1358
|
+
"triggers": [
|
|
1359
|
+
"check environment",
|
|
1360
|
+
"install environment",
|
|
1361
|
+
"repair environment",
|
|
1362
|
+
"update environment",
|
|
1363
|
+
"setup env",
|
|
1364
|
+
"fix env",
|
|
1365
|
+
"env status",
|
|
1366
|
+
"after reboot",
|
|
1367
|
+
"GPU crash"
|
|
1368
|
+
],
|
|
1369
|
+
"follows": [],
|
|
1370
|
+
"leads_to": ["status"],
|
|
1371
|
+
"sandbox_aware": false,
|
|
1372
|
+
"output_contract": "guides/output-contract.md",
|
|
1373
|
+
"enabled_default": true,
|
|
1374
|
+
"codeflow_required": false
|
|
1375
|
+
},
|
|
1376
|
+
"terminal-config": {
|
|
1377
|
+
"name": "terminal-config",
|
|
1378
|
+
"slash": "rdc:terminal-config",
|
|
1379
|
+
"category": "infra",
|
|
1380
|
+
"usage": "rdc:terminal-config <task>",
|
|
1381
|
+
"args": {
|
|
1382
|
+
"positional": [
|
|
1383
|
+
{
|
|
1384
|
+
"name": "task",
|
|
1385
|
+
"required": true,
|
|
1386
|
+
"description": "Free-text terminal-config task",
|
|
1387
|
+
"accepts": "string"
|
|
1388
|
+
}
|
|
1389
|
+
],
|
|
1390
|
+
"flags": []
|
|
1391
|
+
},
|
|
1392
|
+
"requires": [
|
|
1393
|
+
"git"
|
|
1394
|
+
],
|
|
1395
|
+
"produces": [
|
|
1396
|
+
"git_commits"
|
|
1397
|
+
],
|
|
1398
|
+
"default_model": "opus",
|
|
1399
|
+
"triggers": [
|
|
1400
|
+
"windows terminal config",
|
|
1401
|
+
"shell profile",
|
|
1402
|
+
"agent startup order"
|
|
1403
|
+
],
|
|
1404
|
+
"follows": [],
|
|
1405
|
+
"leads_to": [],
|
|
1406
|
+
"sandbox_aware": false,
|
|
1407
|
+
"output_contract": "guides/output-contract.md",
|
|
1408
|
+
"enabled_default": true,
|
|
1409
|
+
"codeflow_required": false
|
|
1410
|
+
},
|
|
1411
|
+
"watch": {
|
|
1412
|
+
"name": "watch",
|
|
1413
|
+
"slash": "rdc:watch",
|
|
1414
|
+
"category": "reporting",
|
|
1415
|
+
"usage": "rdc:watch",
|
|
1416
|
+
"args": {
|
|
1417
|
+
"positional": [],
|
|
1418
|
+
"flags": []
|
|
1419
|
+
},
|
|
1420
|
+
"requires": [],
|
|
1421
|
+
"produces": [],
|
|
1422
|
+
"default_model": "haiku",
|
|
1423
|
+
"triggers": [
|
|
1424
|
+
"watch session",
|
|
1425
|
+
"live viewer",
|
|
1426
|
+
"watch claude work"
|
|
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
|
+
"workitems": {
|
|
1436
|
+
"name": "workitems",
|
|
1437
|
+
"slash": "rdc:workitems",
|
|
1438
|
+
"category": "tooling",
|
|
1439
|
+
"usage": "rdc:workitems [add|done|status|list|query]",
|
|
1440
|
+
"args": {
|
|
1441
|
+
"positional": [
|
|
1442
|
+
{
|
|
1443
|
+
"name": "subcommand",
|
|
1444
|
+
"required": false,
|
|
1445
|
+
"description": "CRUD verb",
|
|
1446
|
+
"accepts": "add | done | status | list | query"
|
|
1447
|
+
}
|
|
1448
|
+
],
|
|
1449
|
+
"flags": []
|
|
1450
|
+
},
|
|
1451
|
+
"requires": [
|
|
1452
|
+
"supabase",
|
|
1453
|
+
"clauth",
|
|
1454
|
+
"work-items-rpc"
|
|
1455
|
+
],
|
|
1456
|
+
"produces": [
|
|
1457
|
+
"work_items",
|
|
1458
|
+
"supabase_writes"
|
|
1459
|
+
],
|
|
1460
|
+
"default_model": "haiku",
|
|
1461
|
+
"triggers": [
|
|
1462
|
+
"add work item",
|
|
1463
|
+
"close work item",
|
|
1464
|
+
"list epics",
|
|
1465
|
+
"query by label"
|
|
1466
|
+
],
|
|
1467
|
+
"follows": [],
|
|
1468
|
+
"leads_to": [],
|
|
1469
|
+
"sandbox_aware": true,
|
|
1470
|
+
"output_contract": "guides/output-contract.md",
|
|
1471
|
+
"enabled_default": true,
|
|
1472
|
+
"codeflow_required": false
|
|
1473
|
+
},
|
|
1474
|
+
"onramp": {
|
|
1475
|
+
"name": "onramp",
|
|
1476
|
+
"slash": "rdc:onramp",
|
|
1477
|
+
"category": "infra",
|
|
1478
|
+
"usage": "rdc:onramp <slug> --name \"<Display Name>\" [--location <json>] [--archetype <archetype>] [--owner place-fund|rdc|jv|client] [--history] [--skip-to <phase>] [--no-gate] [--dry-run]",
|
|
1479
|
+
"args": {
|
|
1480
|
+
"positional": [
|
|
1481
|
+
{
|
|
1482
|
+
"name": "slug",
|
|
1483
|
+
"required": true,
|
|
1484
|
+
"description": "kebab-case place identifier (e.g. spirit-bear-village). Validated against ^[a-z0-9]+(-[a-z0-9]+)*$.",
|
|
1485
|
+
"accepts": "string"
|
|
1486
|
+
}
|
|
1487
|
+
],
|
|
1488
|
+
"flags": [
|
|
1489
|
+
{
|
|
1490
|
+
"name": "--name",
|
|
1491
|
+
"type": "string",
|
|
1492
|
+
"default": null,
|
|
1493
|
+
"description": "Human display name. Required. Passed verbatim to enroll_place and the scaffolder."
|
|
1494
|
+
},
|
|
1495
|
+
{
|
|
1496
|
+
"name": "--location",
|
|
1497
|
+
"type": "json",
|
|
1498
|
+
"default": "{}",
|
|
1499
|
+
"description": "JSON object for enroll_place p_location (e.g. {\"state\":\"BC\",\"country\":\"Canada\"}). Never guessed — omit if unknown."
|
|
1500
|
+
},
|
|
1501
|
+
{
|
|
1502
|
+
"name": "--archetype",
|
|
1503
|
+
"type": "string",
|
|
1504
|
+
"default": "TBD",
|
|
1505
|
+
"description": "Base-arc archetype slug. See corpus/_shared/onramp/ARCHETYPES.md."
|
|
1506
|
+
},
|
|
1507
|
+
{
|
|
1508
|
+
"name": "--owner",
|
|
1509
|
+
"type": "string",
|
|
1510
|
+
"default": "place-fund",
|
|
1511
|
+
"description": "place-fund | rdc | jv | client"
|
|
1512
|
+
},
|
|
1513
|
+
{
|
|
1514
|
+
"name": "--history",
|
|
1515
|
+
"type": "boolean",
|
|
1516
|
+
"default": false,
|
|
1517
|
+
"description": "Opt-in: also scaffold places/<slug>/HISTORY.md (see rdc-onramp-skill.md §D4)."
|
|
1518
|
+
},
|
|
1519
|
+
{
|
|
1520
|
+
"name": "--dry-run",
|
|
1521
|
+
"type": "boolean",
|
|
1522
|
+
"default": false,
|
|
1523
|
+
"description": "Resolve drift state + print plan; perform NO writes (no RPC, no work item, no scaffolder)."
|
|
1524
|
+
}
|
|
1525
|
+
]
|
|
1526
|
+
},
|
|
1527
|
+
"requires": [
|
|
1528
|
+
"supabase",
|
|
1529
|
+
"clauth",
|
|
1530
|
+
"codeflow",
|
|
1531
|
+
"work-items-rpc",
|
|
1532
|
+
"git"
|
|
1533
|
+
],
|
|
1534
|
+
"produces": [
|
|
1535
|
+
"work_items",
|
|
1536
|
+
"supabase_writes",
|
|
1537
|
+
"git_commits",
|
|
1538
|
+
"git_pushes",
|
|
1539
|
+
"deploys"
|
|
1540
|
+
],
|
|
1541
|
+
"default_model": "opus",
|
|
1542
|
+
"triggers": [
|
|
1543
|
+
"onramp a place",
|
|
1544
|
+
"enroll a new place",
|
|
1545
|
+
"lay the infra for",
|
|
1546
|
+
"enroll this project",
|
|
1547
|
+
"start a new place fund project",
|
|
1548
|
+
"run enrollment for",
|
|
1549
|
+
"run the full pipeline for",
|
|
1550
|
+
"build a place from scratch"
|
|
1551
|
+
],
|
|
1552
|
+
"follows": [],
|
|
1553
|
+
"leads_to": [],
|
|
1554
|
+
"sandbox_aware": true,
|
|
1555
|
+
"output_contract": "guides/output-contract.md",
|
|
1556
|
+
"enabled_default": true,
|
|
1557
|
+
"codeflow_required": true
|
|
1558
|
+
}
|
|
1559
|
+
}
|
|
1560
|
+
}
|