@lifeaitools/rdc-skills 0.25.5 → 0.25.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. package/.claude-plugin/plugin.json +1550 -1550
  2. package/.github/workflows/self-test.yml +34 -34
  3. package/CHANGELOG.md +319 -319
  4. package/MANIFEST.md +224 -224
  5. package/README.md +367 -367
  6. package/commands/build.md +181 -181
  7. package/commands/collab.md +180 -180
  8. package/commands/deploy.md +148 -148
  9. package/commands/fixit.md +150 -150
  10. package/commands/handoff.md +173 -173
  11. package/commands/overnight.md +220 -220
  12. package/commands/plan.md +158 -158
  13. package/commands/preplan.md +131 -131
  14. package/commands/prototype.md +145 -145
  15. package/commands/report.md +99 -99
  16. package/commands/review.md +120 -120
  17. package/commands/status.md +86 -86
  18. package/commands/workitems.md +127 -127
  19. package/git-sha.json +1 -1
  20. package/guides/agent-bootstrap.md +195 -195
  21. package/guides/agents/backend.md +102 -102
  22. package/guides/agents/content.md +94 -94
  23. package/guides/agents/cs2.md +56 -56
  24. package/guides/agents/data.md +86 -86
  25. package/guides/agents/design.md +77 -77
  26. package/guides/agents/frontend.md +91 -91
  27. package/guides/agents/infrastructure.md +81 -81
  28. package/guides/agents/setup.md +272 -272
  29. package/guides/agents/verify.md +119 -119
  30. package/guides/agents/viz.md +106 -106
  31. package/hooks/check-rdc-environment.js +318 -164
  32. package/hooks/lib/box-lock.js +186 -0
  33. package/package.json +1 -1
  34. package/scripts/install-rdc-skills.js +1474 -1400
  35. package/scripts/local-install-with-stop.sh +41 -0
  36. package/scripts/probe-box-lock.mjs +179 -0
  37. package/scripts/probe-installed-hooks.mjs +60 -0
  38. package/scripts/probe-lock-holders.mjs +36 -0
  39. package/scripts/self-test.mjs +1459 -1459
  40. package/scripts/validate-publish-manifests.js +502 -502
  41. package/skills/build/SKILL.md +578 -578
  42. package/skills/channel-formatter/SKILL.md +538 -538
  43. package/skills/collab/SKILL.md +239 -239
  44. package/skills/convert/SKILL.md +138 -138
  45. package/skills/deploy/SKILL.md +541 -541
  46. package/skills/design/SKILL.md +205 -205
  47. package/skills/env/SKILL.md +139 -139
  48. package/skills/fixit/SKILL.md +203 -203
  49. package/skills/handoff/SKILL.md +236 -236
  50. package/skills/housekeeping/SKILL.md +189 -189
  51. package/skills/onramp/SKILL.md +1459 -1459
  52. package/skills/overnight/SKILL.md +251 -251
  53. package/skills/plan/SKILL.md +345 -345
  54. package/skills/preplan/SKILL.md +90 -90
  55. package/skills/prototype/SKILL.md +150 -150
  56. package/skills/regen-media/SKILL.md +94 -94
  57. package/skills/release/SKILL.md +140 -140
  58. package/skills/report/SKILL.md +100 -100
  59. package/skills/review/SKILL.md +151 -151
  60. package/skills/self-test/SKILL.md +108 -108
  61. package/skills/status/SKILL.md +99 -99
  62. package/skills/tests/MATRIX.md +55 -55
  63. package/skills/tests/onramp.test.json +87 -87
  64. package/skills/tests/rdc-regen-media.test.json +29 -29
  65. package/skills/watch/SKILL.md +84 -84
  66. package/skills/workitems/SKILL.md +151 -151
@@ -1,502 +1,502 @@
1
- #!/usr/bin/env node
2
- /**
3
- * validate-publish-manifests.js
4
- * WP-6: PUBLISH.md convention validator for rdc-skills
5
- *
6
- * Queries app_deployments (active rows), checks PUBLISH.md presence + schema
7
- * for each registered deployable target.
8
- *
9
- * 2026-07-05: DEPLOY-block enforcement (Approved: Dave, port-from-registry).
10
- * - Every deployable MUST carry a valid <!-- DEPLOY --> block (hard FAIL if absent).
11
- * - `port` MUST be the literal `registry` — a hardcoded integer is a FAIL.
12
- * - `port: registry` MUST resolve: if the app has a PM2 dev row, it MUST have pm2_port.
13
- * - slug→dir resolves via apps.monorepo_path (fixes slug≠dir apps like zoen, rapha).
14
- *
15
- * Usage:
16
- * node scripts/validate-publish-manifests.js [--mode warn|fail] [--slug <name>] [--json] [--strict]
17
- *
18
- * Exit codes:
19
- * 0 — all checks passed (or warn mode with only warnings)
20
- * 1 — one or more FAIL lines (hard error)
21
- * 2 — invocation error (bad args)
22
- */
23
-
24
- 'use strict';
25
-
26
- const fs = require('fs');
27
- const path = require('path');
28
- const https = require('https');
29
- const http = require('http');
30
-
31
- // ---------------------------------------------------------------------------
32
- // CLI argument parsing
33
- // ---------------------------------------------------------------------------
34
-
35
- const args = process.argv.slice(2);
36
- let mode = 'warn'; // warn | fail
37
- let slugFilter = null; // --slug <name>
38
- let jsonOutput = false; // --json
39
- let strict = false; // --strict (same as --mode fail)
40
-
41
- for (let i = 0; i < args.length; i++) {
42
- const a = args[i];
43
- if (a === '--mode') {
44
- const v = args[++i];
45
- if (v !== 'warn' && v !== 'fail') {
46
- console.error('ERROR: --mode must be warn or fail');
47
- process.exit(2);
48
- }
49
- mode = v;
50
- } else if (a === '--slug') {
51
- slugFilter = args[++i];
52
- if (!slugFilter) {
53
- console.error('ERROR: --slug requires a value');
54
- process.exit(2);
55
- }
56
- } else if (a === '--json') {
57
- jsonOutput = true;
58
- } else if (a === '--strict') {
59
- strict = true;
60
- mode = 'fail';
61
- } else {
62
- console.error(`ERROR: unknown argument: ${a}`);
63
- process.exit(2);
64
- }
65
- }
66
-
67
- // ---------------------------------------------------------------------------
68
- // Constants
69
- // ---------------------------------------------------------------------------
70
-
71
- const MONOREPO_ROOT = 'C:/Dev/regen-root';
72
- const CLAUTH_BASE = 'http://127.0.0.1:52437';
73
-
74
- // Ordered list of root-relative prefixes to probe when looking for app source
75
- const MONOREPO_SEARCH_DIRS = ['apps', 'sites', 'models', 'mcp-servers', 'packages'];
76
-
77
- const REQUIRED_FRONTMATTER_FIELDS = ['schema_version', 'entity_slug', 'artifact_type', 'environments', 'status'];
78
- const ALLOWED_ARTIFACT_TYPES = ['website', 'api', 'package', 'worker', 'mcp-server'];
79
- const ALLOWED_STATUSES = ['active', 'draft', 'deprecated'];
80
- const ALLOWED_ENVIRONMENTS = ['dev', 'prod'];
81
- const ALLOWED_SCHEMA_VERSIONS = ['1.0'];
82
-
83
- // Supabase project and REST base
84
- const SUPABASE_PROJECT_HOST = 'uvojezuorjgqzmhhgluu.supabase.co';
85
-
86
- // ---------------------------------------------------------------------------
87
- // Result tracking
88
- // ---------------------------------------------------------------------------
89
-
90
- const results = [];
91
- let hasHardFail = false;
92
-
93
- // Populated in main() from the registry (apps + app_deployments).
94
- const dirBySlug = new Map(); // slug -> monorepo_path (root-relative)
95
- const rowsBySlug = new Map(); // slug -> [app_deployments rows]
96
-
97
- function emit(level, slug, message, detail) {
98
- const entry = { level, slug, message, detail: detail || null };
99
- results.push(entry);
100
- if (level === 'FAIL') hasHardFail = true;
101
- if (!jsonOutput) {
102
- const prefix = level === 'FAIL' ? '✗ FAIL' : level === 'WARN' ? '⚠ WARN' : '✓ PASS';
103
- console.log(`${prefix} [${slug}] ${message}${detail ? ` — ${detail}` : ''}`);
104
- }
105
- }
106
-
107
- // ---------------------------------------------------------------------------
108
- // HTTP helpers
109
- // ---------------------------------------------------------------------------
110
-
111
- /** Fetch plain text from clauth daemon (never prints value) */
112
- function fetchClauth(service) {
113
- return new Promise((resolve, reject) => {
114
- const req = http.get(`${CLAUTH_BASE}/v/${service}`, (res) => {
115
- let buf = '';
116
- res.on('data', (c) => (buf += c));
117
- res.on('end', () => {
118
- if (res.statusCode !== 200) {
119
- reject(new Error(`clauth /v/${service} → HTTP ${res.statusCode}`));
120
- } else {
121
- resolve(buf.trim());
122
- }
123
- });
124
- });
125
- req.on('error', reject);
126
- req.setTimeout(5000, () => { req.destroy(); reject(new Error('clauth timeout')); });
127
- });
128
- }
129
-
130
- /** REST GET against Supabase with anon key */
131
- function supabaseGet(anonKey, path) {
132
- return new Promise((resolve, reject) => {
133
- const options = {
134
- hostname: SUPABASE_PROJECT_HOST,
135
- path,
136
- method: 'GET',
137
- headers: {
138
- 'apikey': anonKey,
139
- 'Authorization': `Bearer ${anonKey}`,
140
- 'Content-Type': 'application/json',
141
- 'Accept': 'application/json',
142
- },
143
- };
144
- const req = https.request(options, (res) => {
145
- let buf = '';
146
- res.on('data', (c) => (buf += c));
147
- res.on('end', () => {
148
- if (res.statusCode !== 200) {
149
- reject(new Error(`Supabase REST ${path} → HTTP ${res.statusCode}: ${buf.slice(0, 200)}`));
150
- } else {
151
- try {
152
- resolve(JSON.parse(buf));
153
- } catch (e) {
154
- reject(new Error(`JSON parse error: ${e.message}`));
155
- }
156
- }
157
- });
158
- });
159
- req.on('error', reject);
160
- req.setTimeout(10000, () => { req.destroy(); reject(new Error('Supabase timeout')); });
161
- req.end();
162
- });
163
- }
164
-
165
- // ---------------------------------------------------------------------------
166
- // YAML frontmatter parser (minimal — no external dep required)
167
- // ---------------------------------------------------------------------------
168
-
169
- /**
170
- * Parse YAML frontmatter from a PUBLISH.md string.
171
- * Only handles scalar values, arrays on same line ([a, b, c]), and quoted strings.
172
- * Returns null if no frontmatter delimiters found.
173
- */
174
- function parseFrontmatter(content) {
175
- const fmMatch = content.match(/^---\r?\n([\s\S]*?)\r?\n---/);
176
- if (!fmMatch) return null;
177
-
178
- const yaml = fmMatch[1];
179
- const result = {};
180
-
181
- for (const line of yaml.split(/\r?\n/)) {
182
- const kv = line.match(/^([a-zA-Z_][a-zA-Z0-9_]*):\s*(.*)$/);
183
- if (!kv) continue;
184
-
185
- const key = kv[1];
186
- let value = kv[2].trim();
187
-
188
- // Array: [a, b, c] or [a] or []
189
- if (value.startsWith('[') && value.endsWith(']')) {
190
- const inner = value.slice(1, -1).trim();
191
- result[key] = inner ? inner.split(',').map((s) => s.trim().replace(/^["']|["']$/g, '')) : [];
192
- continue;
193
- }
194
-
195
- // Quoted string
196
- if ((value.startsWith('"') && value.endsWith('"')) || (value.startsWith("'") && value.endsWith("'"))) {
197
- result[key] = value.slice(1, -1);
198
- continue;
199
- }
200
-
201
- result[key] = value;
202
- }
203
-
204
- return result;
205
- }
206
-
207
- /**
208
- * Extract surface section IDs from PUBLISH.md content.
209
- * Looks for <!-- SURFACE:<id> --> markers.
210
- */
211
- function parseSurfaceIds(content) {
212
- const ids = [];
213
- const re = /<!--\s*SURFACE:([a-zA-Z0-9_-]+)\s*-->/g;
214
- let m;
215
- while ((m = re.exec(content)) !== null) {
216
- ids.push(m[1]);
217
- }
218
- return ids;
219
- }
220
-
221
- /**
222
- * Extract watch_paths from a named surface section.
223
- * Returns array of watch_path strings (may be empty).
224
- */
225
- function parseSurfaceWatchPaths(content, surfaceId) {
226
- const re = new RegExp(`<!--\\s*SURFACE:${surfaceId}\\s*-->[\\s\\S]*?<!--\\s*/SURFACE:${surfaceId}\\s*-->`, 'i');
227
- const section = content.match(re);
228
- if (!section) return [];
229
-
230
- const block = section[0];
231
- const watchPathsMatch = block.match(/watch_paths:\s*\r?\n((?:\s+-\s+.+\r?\n?)*)/);
232
- if (!watchPathsMatch) return [];
233
-
234
- return watchPathsMatch[1]
235
- .split(/\r?\n/)
236
- .map((l) => l.replace(/^\s+-\s+/, '').trim())
237
- .filter(Boolean);
238
- }
239
-
240
- // ---------------------------------------------------------------------------
241
- // Path resolution
242
- // ---------------------------------------------------------------------------
243
-
244
- /**
245
- * Derive the local filesystem path where we'd expect PUBLISH.md for a given app_slug.
246
- * Probes MONOREPO_SEARCH_DIRS in order, returning the first hit.
247
- * Returns null if no directory found (standalone or unknown).
248
- */
249
- function resolveAppRoot(slug) {
250
- // Authoritative: apps.monorepo_path (fixes slug≠dir apps like zoen→apps/zoen-web).
251
- const dir = dirBySlug.get(slug);
252
- if (dir) {
253
- const candidate = path.join(MONOREPO_ROOT, dir);
254
- if (fs.existsSync(candidate)) return candidate;
255
- }
256
- // Fallback: probe by slug name.
257
- for (const d of MONOREPO_SEARCH_DIRS) {
258
- const candidate = path.join(MONOREPO_ROOT, d, slug);
259
- if (fs.existsSync(candidate)) return candidate;
260
- }
261
- return null;
262
- }
263
-
264
- // ---------------------------------------------------------------------------
265
- // Validation logic for a single app row
266
- // ---------------------------------------------------------------------------
267
-
268
- function validateApp(slug) {
269
- const appRoot = resolveAppRoot(slug);
270
-
271
- if (!appRoot) {
272
- // Could be standalone repo — skip with note in v1
273
- emit('WARN', slug, 'app root not found in monorepo — may be standalone repo, skipping (v1 scope)');
274
- return null;
275
- }
276
-
277
- const publishPath = path.join(appRoot, 'PUBLISH.md');
278
-
279
- if (!fs.existsSync(publishPath)) {
280
- if (mode === 'fail') {
281
- emit('FAIL', slug, 'PUBLISH.md missing', publishPath);
282
- } else {
283
- emit('WARN', slug, 'PUBLISH.md missing', publishPath);
284
- }
285
- return null;
286
- }
287
-
288
- // File exists — parse and validate
289
- const content = fs.readFileSync(publishPath, 'utf8');
290
- const fm = parseFrontmatter(content);
291
-
292
- if (!fm) {
293
- emit('FAIL', slug, 'PUBLISH.md has no YAML frontmatter (missing --- delimiters)', publishPath);
294
- return null;
295
- }
296
-
297
- let ok = true;
298
-
299
- // Check required fields
300
- for (const field of REQUIRED_FRONTMATTER_FIELDS) {
301
- if (fm[field] === undefined || fm[field] === null || fm[field] === '') {
302
- emit('FAIL', slug, `PUBLISH.md missing required field: ${field}`, publishPath);
303
- ok = false;
304
- }
305
- }
306
-
307
- // schema_version
308
- if (fm.schema_version && !ALLOWED_SCHEMA_VERSIONS.includes(fm.schema_version)) {
309
- emit('FAIL', slug, `PUBLISH.md schema_version "${fm.schema_version}" not in allowed set: ${ALLOWED_SCHEMA_VERSIONS.join(', ')}`, publishPath);
310
- ok = false;
311
- }
312
-
313
- // artifact_type
314
- if (fm.artifact_type && !ALLOWED_ARTIFACT_TYPES.includes(fm.artifact_type)) {
315
- emit('FAIL', slug, `PUBLISH.md artifact_type "${fm.artifact_type}" not in allowed set: ${ALLOWED_ARTIFACT_TYPES.join(', ')}`, publishPath);
316
- ok = false;
317
- }
318
-
319
- // status
320
- if (fm.status && !ALLOWED_STATUSES.includes(fm.status)) {
321
- emit('FAIL', slug, `PUBLISH.md status "${fm.status}" not in allowed set: ${ALLOWED_STATUSES.join(', ')}`, publishPath);
322
- ok = false;
323
- }
324
-
325
- // environments — must be array, at least one, each in allowed set
326
- if (fm.environments !== undefined) {
327
- if (!Array.isArray(fm.environments) || fm.environments.length === 0) {
328
- emit('FAIL', slug, 'PUBLISH.md environments must be a non-empty array', publishPath);
329
- ok = false;
330
- } else {
331
- for (const env of fm.environments) {
332
- if (!ALLOWED_ENVIRONMENTS.includes(env)) {
333
- emit('FAIL', slug, `PUBLISH.md environments contains unknown value: "${env}"`, publishPath);
334
- ok = false;
335
- }
336
- }
337
- }
338
- }
339
-
340
- // Surface sections — at least one required
341
- const surfaceIds = parseSurfaceIds(content);
342
- if (surfaceIds.length === 0) {
343
- emit('FAIL', slug, 'PUBLISH.md has no <!-- SURFACE:<id> --> sections', publishPath);
344
- ok = false;
345
- } else {
346
- // Each surface must have watch_paths
347
- for (const sid of surfaceIds) {
348
- const wp = parseSurfaceWatchPaths(content, sid);
349
- if (wp.length === 0) {
350
- emit('FAIL', slug, `PUBLISH.md surface "${sid}" has no watch_paths entries`, publishPath);
351
- ok = false;
352
- }
353
- }
354
- }
355
-
356
- // DEPLOY block — mandatory as of 2026-07-05. Always a hard FAIL (not mode-gated).
357
- if (!validateDeployBlock(slug, content, publishPath)) ok = false;
358
-
359
- if (ok) {
360
- emit('PASS', slug, 'PUBLISH.md valid', `${surfaceIds.length} surface(s): ${surfaceIds.join(', ')}`);
361
- }
362
-
363
- return { fm, surfaceIds, publishPath };
364
- }
365
-
366
- /**
367
- * Validate the <!-- DEPLOY --> block. Returns true iff valid.
368
- * Contract: .claude/rules/app-deploy-manifest.md (port-from-registry, Approved 2026-07-05).
369
- */
370
- function validateDeployBlock(slug, content, publishPath) {
371
- const m = content.match(/<!-- DEPLOY -->([\s\S]*?)<!-- \/DEPLOY -->/);
372
- if (!m) {
373
- emit('FAIL', slug, 'PUBLISH.md has no <!-- DEPLOY --> block (mandatory)', publishPath);
374
- return false;
375
- }
376
- const body = m[1];
377
- let ok = true;
378
-
379
- for (const field of ['runtime', 'port', 'health_path']) {
380
- if (!new RegExp(`^${field}:`, 'm').test(body)) {
381
- emit('FAIL', slug, `DEPLOY block missing required field: ${field}`, publishPath);
382
- ok = false;
383
- }
384
- }
385
-
386
- const portLine = body.match(/^port:\s*([^\s#]+)/m);
387
- if (portLine) {
388
- const val = portLine[1].trim();
389
- if (!/^registry$/i.test(val)) {
390
- emit('FAIL', slug, `DEPLOY block port must be the literal 'registry', not '${val}' (port lives in app_deployments.pm2_port)`, publishPath);
391
- ok = false;
392
- } else {
393
- // Resolvability: an app WITH a PM2 dev row must have a pm2_port.
394
- const rows = rowsBySlug.get(slug) || [];
395
- const pm2 = rows.find((r) => r.host_type === 'pm2' && r.environment === 'dev');
396
- if (pm2 && !pm2.pm2_port) {
397
- emit('FAIL', slug, "DEPLOY block port: registry but the PM2 dev row has no pm2_port to resolve", publishPath);
398
- ok = false;
399
- }
400
- }
401
- }
402
-
403
- return ok;
404
- }
405
-
406
- // ---------------------------------------------------------------------------
407
- // Main
408
- // ---------------------------------------------------------------------------
409
-
410
- async function main() {
411
- if (!jsonOutput) {
412
- console.log(`\nvalidate-publish-manifests — mode=${mode}${slugFilter ? ` slug=${slugFilter}` : ''}\n`);
413
- }
414
-
415
- // 1. Get Supabase anon key from clauth
416
- let anonKey;
417
- try {
418
- anonKey = await fetchClauth('supabase-anon');
419
- } catch (err) {
420
- console.error(`ERROR: cannot reach clauth daemon — ${err.message}`);
421
- console.error('Fix: ensure clauth daemon is running at http://127.0.0.1:52437');
422
- process.exit(1);
423
- }
424
-
425
- // 2. Query app_deployments for active rows (include host_type + pm2_port for
426
- // port: registry resolvability).
427
- let rows;
428
- try {
429
- let qpath = '/rest/v1/app_deployments?status=eq.active&select=app_slug,environment,url,host_type,pm2_port&order=app_slug.asc';
430
- if (slugFilter) {
431
- qpath += `&app_slug=eq.${encodeURIComponent(slugFilter)}`;
432
- }
433
- rows = await supabaseGet(anonKey, qpath);
434
- } catch (err) {
435
- console.error(`ERROR: Supabase query failed — ${err.message}`);
436
- process.exit(1);
437
- }
438
-
439
- // 2b. Query apps for monorepo_path (authoritative slug→dir; fixes slug≠dir).
440
- try {
441
- const apps = await supabaseGet(anonKey, '/rest/v1/apps?select=slug,monorepo_path');
442
- for (const a of apps) {
443
- if (a.monorepo_path) dirBySlug.set(a.slug, a.monorepo_path);
444
- }
445
- } catch (err) {
446
- // Non-fatal: fall back to slug-name probing in resolveAppRoot.
447
- if (!jsonOutput) console.log(`(note: apps monorepo_path lookup failed — ${err.message}; using slug-name fallback)`);
448
- }
449
-
450
- // Index all deployment rows by slug for port resolvability checks.
451
- for (const r of rows) {
452
- if (!rowsBySlug.has(r.app_slug)) rowsBySlug.set(r.app_slug, []);
453
- rowsBySlug.get(r.app_slug).push(r);
454
- }
455
-
456
- if (!Array.isArray(rows) || rows.length === 0) {
457
- if (!jsonOutput) {
458
- console.log(slugFilter ? `No active app_deployments row found for slug: ${slugFilter}` : 'No active app_deployments rows found.');
459
- }
460
- process.exit(0);
461
- }
462
-
463
- // Deduplicate slugs (same app_slug may have dev + prod rows)
464
- const slugsSeen = new Set();
465
- const uniqueRows = rows.filter((r) => {
466
- if (slugsSeen.has(r.app_slug)) return false;
467
- slugsSeen.add(r.app_slug);
468
- return true;
469
- });
470
-
471
- if (!jsonOutput) {
472
- console.log(`Checking ${uniqueRows.length} unique app slug(s) from ${rows.length} active app_deployments row(s)...\n`);
473
- }
474
-
475
- // 3. Validate each slug
476
- for (const row of uniqueRows) {
477
- validateApp(row.app_slug);
478
- }
479
-
480
- // 4. Summary
481
- const passCount = results.filter((r) => r.level === 'PASS').length;
482
- const warnCount = results.filter((r) => r.level === 'WARN').length;
483
- const failCount = results.filter((r) => r.level === 'FAIL').length;
484
-
485
- if (jsonOutput) {
486
- console.log(JSON.stringify({ mode, results, summary: { pass: passCount, warn: warnCount, fail: failCount } }, null, 2));
487
- } else {
488
- console.log(`\nSummary: ${passCount} PASS · ${warnCount} WARN · ${failCount} FAIL`);
489
- if (hasHardFail) {
490
- console.log('Result: FAIL\n');
491
- } else {
492
- console.log(warnCount > 0 ? 'Result: WARN (exit 0 in warn mode)\n' : 'Result: PASS\n');
493
- }
494
- }
495
-
496
- process.exit(hasHardFail ? 1 : 0);
497
- }
498
-
499
- main().catch((err) => {
500
- console.error(`FATAL: ${err.message}`);
501
- process.exit(1);
502
- });
1
+ #!/usr/bin/env node
2
+ /**
3
+ * validate-publish-manifests.js
4
+ * WP-6: PUBLISH.md convention validator for rdc-skills
5
+ *
6
+ * Queries app_deployments (active rows), checks PUBLISH.md presence + schema
7
+ * for each registered deployable target.
8
+ *
9
+ * 2026-07-05: DEPLOY-block enforcement (Approved: Dave, port-from-registry).
10
+ * - Every deployable MUST carry a valid <!-- DEPLOY --> block (hard FAIL if absent).
11
+ * - `port` MUST be the literal `registry` — a hardcoded integer is a FAIL.
12
+ * - `port: registry` MUST resolve: if the app has a PM2 dev row, it MUST have pm2_port.
13
+ * - slug→dir resolves via apps.monorepo_path (fixes slug≠dir apps like zoen, rapha).
14
+ *
15
+ * Usage:
16
+ * node scripts/validate-publish-manifests.js [--mode warn|fail] [--slug <name>] [--json] [--strict]
17
+ *
18
+ * Exit codes:
19
+ * 0 — all checks passed (or warn mode with only warnings)
20
+ * 1 — one or more FAIL lines (hard error)
21
+ * 2 — invocation error (bad args)
22
+ */
23
+
24
+ 'use strict';
25
+
26
+ const fs = require('fs');
27
+ const path = require('path');
28
+ const https = require('https');
29
+ const http = require('http');
30
+
31
+ // ---------------------------------------------------------------------------
32
+ // CLI argument parsing
33
+ // ---------------------------------------------------------------------------
34
+
35
+ const args = process.argv.slice(2);
36
+ let mode = 'warn'; // warn | fail
37
+ let slugFilter = null; // --slug <name>
38
+ let jsonOutput = false; // --json
39
+ let strict = false; // --strict (same as --mode fail)
40
+
41
+ for (let i = 0; i < args.length; i++) {
42
+ const a = args[i];
43
+ if (a === '--mode') {
44
+ const v = args[++i];
45
+ if (v !== 'warn' && v !== 'fail') {
46
+ console.error('ERROR: --mode must be warn or fail');
47
+ process.exit(2);
48
+ }
49
+ mode = v;
50
+ } else if (a === '--slug') {
51
+ slugFilter = args[++i];
52
+ if (!slugFilter) {
53
+ console.error('ERROR: --slug requires a value');
54
+ process.exit(2);
55
+ }
56
+ } else if (a === '--json') {
57
+ jsonOutput = true;
58
+ } else if (a === '--strict') {
59
+ strict = true;
60
+ mode = 'fail';
61
+ } else {
62
+ console.error(`ERROR: unknown argument: ${a}`);
63
+ process.exit(2);
64
+ }
65
+ }
66
+
67
+ // ---------------------------------------------------------------------------
68
+ // Constants
69
+ // ---------------------------------------------------------------------------
70
+
71
+ const MONOREPO_ROOT = 'C:/Dev/regen-root';
72
+ const CLAUTH_BASE = 'http://127.0.0.1:52437';
73
+
74
+ // Ordered list of root-relative prefixes to probe when looking for app source
75
+ const MONOREPO_SEARCH_DIRS = ['apps', 'sites', 'models', 'mcp-servers', 'packages'];
76
+
77
+ const REQUIRED_FRONTMATTER_FIELDS = ['schema_version', 'entity_slug', 'artifact_type', 'environments', 'status'];
78
+ const ALLOWED_ARTIFACT_TYPES = ['website', 'api', 'package', 'worker', 'mcp-server'];
79
+ const ALLOWED_STATUSES = ['active', 'draft', 'deprecated'];
80
+ const ALLOWED_ENVIRONMENTS = ['dev', 'prod'];
81
+ const ALLOWED_SCHEMA_VERSIONS = ['1.0'];
82
+
83
+ // Supabase project and REST base
84
+ const SUPABASE_PROJECT_HOST = 'uvojezuorjgqzmhhgluu.supabase.co';
85
+
86
+ // ---------------------------------------------------------------------------
87
+ // Result tracking
88
+ // ---------------------------------------------------------------------------
89
+
90
+ const results = [];
91
+ let hasHardFail = false;
92
+
93
+ // Populated in main() from the registry (apps + app_deployments).
94
+ const dirBySlug = new Map(); // slug -> monorepo_path (root-relative)
95
+ const rowsBySlug = new Map(); // slug -> [app_deployments rows]
96
+
97
+ function emit(level, slug, message, detail) {
98
+ const entry = { level, slug, message, detail: detail || null };
99
+ results.push(entry);
100
+ if (level === 'FAIL') hasHardFail = true;
101
+ if (!jsonOutput) {
102
+ const prefix = level === 'FAIL' ? '✗ FAIL' : level === 'WARN' ? '⚠ WARN' : '✓ PASS';
103
+ console.log(`${prefix} [${slug}] ${message}${detail ? ` — ${detail}` : ''}`);
104
+ }
105
+ }
106
+
107
+ // ---------------------------------------------------------------------------
108
+ // HTTP helpers
109
+ // ---------------------------------------------------------------------------
110
+
111
+ /** Fetch plain text from clauth daemon (never prints value) */
112
+ function fetchClauth(service) {
113
+ return new Promise((resolve, reject) => {
114
+ const req = http.get(`${CLAUTH_BASE}/v/${service}`, (res) => {
115
+ let buf = '';
116
+ res.on('data', (c) => (buf += c));
117
+ res.on('end', () => {
118
+ if (res.statusCode !== 200) {
119
+ reject(new Error(`clauth /v/${service} → HTTP ${res.statusCode}`));
120
+ } else {
121
+ resolve(buf.trim());
122
+ }
123
+ });
124
+ });
125
+ req.on('error', reject);
126
+ req.setTimeout(5000, () => { req.destroy(); reject(new Error('clauth timeout')); });
127
+ });
128
+ }
129
+
130
+ /** REST GET against Supabase with anon key */
131
+ function supabaseGet(anonKey, path) {
132
+ return new Promise((resolve, reject) => {
133
+ const options = {
134
+ hostname: SUPABASE_PROJECT_HOST,
135
+ path,
136
+ method: 'GET',
137
+ headers: {
138
+ 'apikey': anonKey,
139
+ 'Authorization': `Bearer ${anonKey}`,
140
+ 'Content-Type': 'application/json',
141
+ 'Accept': 'application/json',
142
+ },
143
+ };
144
+ const req = https.request(options, (res) => {
145
+ let buf = '';
146
+ res.on('data', (c) => (buf += c));
147
+ res.on('end', () => {
148
+ if (res.statusCode !== 200) {
149
+ reject(new Error(`Supabase REST ${path} → HTTP ${res.statusCode}: ${buf.slice(0, 200)}`));
150
+ } else {
151
+ try {
152
+ resolve(JSON.parse(buf));
153
+ } catch (e) {
154
+ reject(new Error(`JSON parse error: ${e.message}`));
155
+ }
156
+ }
157
+ });
158
+ });
159
+ req.on('error', reject);
160
+ req.setTimeout(10000, () => { req.destroy(); reject(new Error('Supabase timeout')); });
161
+ req.end();
162
+ });
163
+ }
164
+
165
+ // ---------------------------------------------------------------------------
166
+ // YAML frontmatter parser (minimal — no external dep required)
167
+ // ---------------------------------------------------------------------------
168
+
169
+ /**
170
+ * Parse YAML frontmatter from a PUBLISH.md string.
171
+ * Only handles scalar values, arrays on same line ([a, b, c]), and quoted strings.
172
+ * Returns null if no frontmatter delimiters found.
173
+ */
174
+ function parseFrontmatter(content) {
175
+ const fmMatch = content.match(/^---\r?\n([\s\S]*?)\r?\n---/);
176
+ if (!fmMatch) return null;
177
+
178
+ const yaml = fmMatch[1];
179
+ const result = {};
180
+
181
+ for (const line of yaml.split(/\r?\n/)) {
182
+ const kv = line.match(/^([a-zA-Z_][a-zA-Z0-9_]*):\s*(.*)$/);
183
+ if (!kv) continue;
184
+
185
+ const key = kv[1];
186
+ let value = kv[2].trim();
187
+
188
+ // Array: [a, b, c] or [a] or []
189
+ if (value.startsWith('[') && value.endsWith(']')) {
190
+ const inner = value.slice(1, -1).trim();
191
+ result[key] = inner ? inner.split(',').map((s) => s.trim().replace(/^["']|["']$/g, '')) : [];
192
+ continue;
193
+ }
194
+
195
+ // Quoted string
196
+ if ((value.startsWith('"') && value.endsWith('"')) || (value.startsWith("'") && value.endsWith("'"))) {
197
+ result[key] = value.slice(1, -1);
198
+ continue;
199
+ }
200
+
201
+ result[key] = value;
202
+ }
203
+
204
+ return result;
205
+ }
206
+
207
+ /**
208
+ * Extract surface section IDs from PUBLISH.md content.
209
+ * Looks for <!-- SURFACE:<id> --> markers.
210
+ */
211
+ function parseSurfaceIds(content) {
212
+ const ids = [];
213
+ const re = /<!--\s*SURFACE:([a-zA-Z0-9_-]+)\s*-->/g;
214
+ let m;
215
+ while ((m = re.exec(content)) !== null) {
216
+ ids.push(m[1]);
217
+ }
218
+ return ids;
219
+ }
220
+
221
+ /**
222
+ * Extract watch_paths from a named surface section.
223
+ * Returns array of watch_path strings (may be empty).
224
+ */
225
+ function parseSurfaceWatchPaths(content, surfaceId) {
226
+ const re = new RegExp(`<!--\\s*SURFACE:${surfaceId}\\s*-->[\\s\\S]*?<!--\\s*/SURFACE:${surfaceId}\\s*-->`, 'i');
227
+ const section = content.match(re);
228
+ if (!section) return [];
229
+
230
+ const block = section[0];
231
+ const watchPathsMatch = block.match(/watch_paths:\s*\r?\n((?:\s+-\s+.+\r?\n?)*)/);
232
+ if (!watchPathsMatch) return [];
233
+
234
+ return watchPathsMatch[1]
235
+ .split(/\r?\n/)
236
+ .map((l) => l.replace(/^\s+-\s+/, '').trim())
237
+ .filter(Boolean);
238
+ }
239
+
240
+ // ---------------------------------------------------------------------------
241
+ // Path resolution
242
+ // ---------------------------------------------------------------------------
243
+
244
+ /**
245
+ * Derive the local filesystem path where we'd expect PUBLISH.md for a given app_slug.
246
+ * Probes MONOREPO_SEARCH_DIRS in order, returning the first hit.
247
+ * Returns null if no directory found (standalone or unknown).
248
+ */
249
+ function resolveAppRoot(slug) {
250
+ // Authoritative: apps.monorepo_path (fixes slug≠dir apps like zoen→apps/zoen-web).
251
+ const dir = dirBySlug.get(slug);
252
+ if (dir) {
253
+ const candidate = path.join(MONOREPO_ROOT, dir);
254
+ if (fs.existsSync(candidate)) return candidate;
255
+ }
256
+ // Fallback: probe by slug name.
257
+ for (const d of MONOREPO_SEARCH_DIRS) {
258
+ const candidate = path.join(MONOREPO_ROOT, d, slug);
259
+ if (fs.existsSync(candidate)) return candidate;
260
+ }
261
+ return null;
262
+ }
263
+
264
+ // ---------------------------------------------------------------------------
265
+ // Validation logic for a single app row
266
+ // ---------------------------------------------------------------------------
267
+
268
+ function validateApp(slug) {
269
+ const appRoot = resolveAppRoot(slug);
270
+
271
+ if (!appRoot) {
272
+ // Could be standalone repo — skip with note in v1
273
+ emit('WARN', slug, 'app root not found in monorepo — may be standalone repo, skipping (v1 scope)');
274
+ return null;
275
+ }
276
+
277
+ const publishPath = path.join(appRoot, 'PUBLISH.md');
278
+
279
+ if (!fs.existsSync(publishPath)) {
280
+ if (mode === 'fail') {
281
+ emit('FAIL', slug, 'PUBLISH.md missing', publishPath);
282
+ } else {
283
+ emit('WARN', slug, 'PUBLISH.md missing', publishPath);
284
+ }
285
+ return null;
286
+ }
287
+
288
+ // File exists — parse and validate
289
+ const content = fs.readFileSync(publishPath, 'utf8');
290
+ const fm = parseFrontmatter(content);
291
+
292
+ if (!fm) {
293
+ emit('FAIL', slug, 'PUBLISH.md has no YAML frontmatter (missing --- delimiters)', publishPath);
294
+ return null;
295
+ }
296
+
297
+ let ok = true;
298
+
299
+ // Check required fields
300
+ for (const field of REQUIRED_FRONTMATTER_FIELDS) {
301
+ if (fm[field] === undefined || fm[field] === null || fm[field] === '') {
302
+ emit('FAIL', slug, `PUBLISH.md missing required field: ${field}`, publishPath);
303
+ ok = false;
304
+ }
305
+ }
306
+
307
+ // schema_version
308
+ if (fm.schema_version && !ALLOWED_SCHEMA_VERSIONS.includes(fm.schema_version)) {
309
+ emit('FAIL', slug, `PUBLISH.md schema_version "${fm.schema_version}" not in allowed set: ${ALLOWED_SCHEMA_VERSIONS.join(', ')}`, publishPath);
310
+ ok = false;
311
+ }
312
+
313
+ // artifact_type
314
+ if (fm.artifact_type && !ALLOWED_ARTIFACT_TYPES.includes(fm.artifact_type)) {
315
+ emit('FAIL', slug, `PUBLISH.md artifact_type "${fm.artifact_type}" not in allowed set: ${ALLOWED_ARTIFACT_TYPES.join(', ')}`, publishPath);
316
+ ok = false;
317
+ }
318
+
319
+ // status
320
+ if (fm.status && !ALLOWED_STATUSES.includes(fm.status)) {
321
+ emit('FAIL', slug, `PUBLISH.md status "${fm.status}" not in allowed set: ${ALLOWED_STATUSES.join(', ')}`, publishPath);
322
+ ok = false;
323
+ }
324
+
325
+ // environments — must be array, at least one, each in allowed set
326
+ if (fm.environments !== undefined) {
327
+ if (!Array.isArray(fm.environments) || fm.environments.length === 0) {
328
+ emit('FAIL', slug, 'PUBLISH.md environments must be a non-empty array', publishPath);
329
+ ok = false;
330
+ } else {
331
+ for (const env of fm.environments) {
332
+ if (!ALLOWED_ENVIRONMENTS.includes(env)) {
333
+ emit('FAIL', slug, `PUBLISH.md environments contains unknown value: "${env}"`, publishPath);
334
+ ok = false;
335
+ }
336
+ }
337
+ }
338
+ }
339
+
340
+ // Surface sections — at least one required
341
+ const surfaceIds = parseSurfaceIds(content);
342
+ if (surfaceIds.length === 0) {
343
+ emit('FAIL', slug, 'PUBLISH.md has no <!-- SURFACE:<id> --> sections', publishPath);
344
+ ok = false;
345
+ } else {
346
+ // Each surface must have watch_paths
347
+ for (const sid of surfaceIds) {
348
+ const wp = parseSurfaceWatchPaths(content, sid);
349
+ if (wp.length === 0) {
350
+ emit('FAIL', slug, `PUBLISH.md surface "${sid}" has no watch_paths entries`, publishPath);
351
+ ok = false;
352
+ }
353
+ }
354
+ }
355
+
356
+ // DEPLOY block — mandatory as of 2026-07-05. Always a hard FAIL (not mode-gated).
357
+ if (!validateDeployBlock(slug, content, publishPath)) ok = false;
358
+
359
+ if (ok) {
360
+ emit('PASS', slug, 'PUBLISH.md valid', `${surfaceIds.length} surface(s): ${surfaceIds.join(', ')}`);
361
+ }
362
+
363
+ return { fm, surfaceIds, publishPath };
364
+ }
365
+
366
+ /**
367
+ * Validate the <!-- DEPLOY --> block. Returns true iff valid.
368
+ * Contract: .claude/rules/app-deploy-manifest.md (port-from-registry, Approved 2026-07-05).
369
+ */
370
+ function validateDeployBlock(slug, content, publishPath) {
371
+ const m = content.match(/<!-- DEPLOY -->([\s\S]*?)<!-- \/DEPLOY -->/);
372
+ if (!m) {
373
+ emit('FAIL', slug, 'PUBLISH.md has no <!-- DEPLOY --> block (mandatory)', publishPath);
374
+ return false;
375
+ }
376
+ const body = m[1];
377
+ let ok = true;
378
+
379
+ for (const field of ['runtime', 'port', 'health_path']) {
380
+ if (!new RegExp(`^${field}:`, 'm').test(body)) {
381
+ emit('FAIL', slug, `DEPLOY block missing required field: ${field}`, publishPath);
382
+ ok = false;
383
+ }
384
+ }
385
+
386
+ const portLine = body.match(/^port:\s*([^\s#]+)/m);
387
+ if (portLine) {
388
+ const val = portLine[1].trim();
389
+ if (!/^registry$/i.test(val)) {
390
+ emit('FAIL', slug, `DEPLOY block port must be the literal 'registry', not '${val}' (port lives in app_deployments.pm2_port)`, publishPath);
391
+ ok = false;
392
+ } else {
393
+ // Resolvability: an app WITH a PM2 dev row must have a pm2_port.
394
+ const rows = rowsBySlug.get(slug) || [];
395
+ const pm2 = rows.find((r) => r.host_type === 'pm2' && r.environment === 'dev');
396
+ if (pm2 && !pm2.pm2_port) {
397
+ emit('FAIL', slug, "DEPLOY block port: registry but the PM2 dev row has no pm2_port to resolve", publishPath);
398
+ ok = false;
399
+ }
400
+ }
401
+ }
402
+
403
+ return ok;
404
+ }
405
+
406
+ // ---------------------------------------------------------------------------
407
+ // Main
408
+ // ---------------------------------------------------------------------------
409
+
410
+ async function main() {
411
+ if (!jsonOutput) {
412
+ console.log(`\nvalidate-publish-manifests — mode=${mode}${slugFilter ? ` slug=${slugFilter}` : ''}\n`);
413
+ }
414
+
415
+ // 1. Get Supabase anon key from clauth
416
+ let anonKey;
417
+ try {
418
+ anonKey = await fetchClauth('supabase-anon');
419
+ } catch (err) {
420
+ console.error(`ERROR: cannot reach clauth daemon — ${err.message}`);
421
+ console.error('Fix: ensure clauth daemon is running at http://127.0.0.1:52437');
422
+ process.exit(1);
423
+ }
424
+
425
+ // 2. Query app_deployments for active rows (include host_type + pm2_port for
426
+ // port: registry resolvability).
427
+ let rows;
428
+ try {
429
+ let qpath = '/rest/v1/app_deployments?status=eq.active&select=app_slug,environment,url,host_type,pm2_port&order=app_slug.asc';
430
+ if (slugFilter) {
431
+ qpath += `&app_slug=eq.${encodeURIComponent(slugFilter)}`;
432
+ }
433
+ rows = await supabaseGet(anonKey, qpath);
434
+ } catch (err) {
435
+ console.error(`ERROR: Supabase query failed — ${err.message}`);
436
+ process.exit(1);
437
+ }
438
+
439
+ // 2b. Query apps for monorepo_path (authoritative slug→dir; fixes slug≠dir).
440
+ try {
441
+ const apps = await supabaseGet(anonKey, '/rest/v1/apps?select=slug,monorepo_path');
442
+ for (const a of apps) {
443
+ if (a.monorepo_path) dirBySlug.set(a.slug, a.monorepo_path);
444
+ }
445
+ } catch (err) {
446
+ // Non-fatal: fall back to slug-name probing in resolveAppRoot.
447
+ if (!jsonOutput) console.log(`(note: apps monorepo_path lookup failed — ${err.message}; using slug-name fallback)`);
448
+ }
449
+
450
+ // Index all deployment rows by slug for port resolvability checks.
451
+ for (const r of rows) {
452
+ if (!rowsBySlug.has(r.app_slug)) rowsBySlug.set(r.app_slug, []);
453
+ rowsBySlug.get(r.app_slug).push(r);
454
+ }
455
+
456
+ if (!Array.isArray(rows) || rows.length === 0) {
457
+ if (!jsonOutput) {
458
+ console.log(slugFilter ? `No active app_deployments row found for slug: ${slugFilter}` : 'No active app_deployments rows found.');
459
+ }
460
+ process.exit(0);
461
+ }
462
+
463
+ // Deduplicate slugs (same app_slug may have dev + prod rows)
464
+ const slugsSeen = new Set();
465
+ const uniqueRows = rows.filter((r) => {
466
+ if (slugsSeen.has(r.app_slug)) return false;
467
+ slugsSeen.add(r.app_slug);
468
+ return true;
469
+ });
470
+
471
+ if (!jsonOutput) {
472
+ console.log(`Checking ${uniqueRows.length} unique app slug(s) from ${rows.length} active app_deployments row(s)...\n`);
473
+ }
474
+
475
+ // 3. Validate each slug
476
+ for (const row of uniqueRows) {
477
+ validateApp(row.app_slug);
478
+ }
479
+
480
+ // 4. Summary
481
+ const passCount = results.filter((r) => r.level === 'PASS').length;
482
+ const warnCount = results.filter((r) => r.level === 'WARN').length;
483
+ const failCount = results.filter((r) => r.level === 'FAIL').length;
484
+
485
+ if (jsonOutput) {
486
+ console.log(JSON.stringify({ mode, results, summary: { pass: passCount, warn: warnCount, fail: failCount } }, null, 2));
487
+ } else {
488
+ console.log(`\nSummary: ${passCount} PASS · ${warnCount} WARN · ${failCount} FAIL`);
489
+ if (hasHardFail) {
490
+ console.log('Result: FAIL\n');
491
+ } else {
492
+ console.log(warnCount > 0 ? 'Result: WARN (exit 0 in warn mode)\n' : 'Result: PASS\n');
493
+ }
494
+ }
495
+
496
+ process.exit(hasHardFail ? 1 : 0);
497
+ }
498
+
499
+ main().catch((err) => {
500
+ console.error(`FATAL: ${err.message}`);
501
+ process.exit(1);
502
+ });