forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgenerate-registry.ts
More file actions
679 lines (600 loc) · 22.2 KB
/
Copy pathgenerate-registry.ts
File metadata and controls
679 lines (600 loc) · 22.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
// Registry Generator
//
// Scans showcase/integrations/*/manifest.yaml, validates each against the
// manifest JSON schema, and produces showcase/shell/src/data/registry.json.
//
// Usage: npx tsx showcase/scripts/generate-registry.ts
import fs from "fs";
import path from "path";
import { fileURLToPath } from "url";
import yaml from "yaml";
import Ajv from "ajv";
import addFormats from "ajv-formats";
import { validateManifestConstraints } from "./validate-constraints.js";
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const ROOT = path.resolve(__dirname, "..");
const PACKAGES_DIR = path.join(ROOT, "integrations");
const SCHEMA_PATH = path.join(ROOT, "shared", "manifest.schema.json");
const FEATURE_REGISTRY_PATH = path.join(
ROOT,
"shared",
"feature-registry.json",
);
// Backend host pattern — used to synthesize `backend_url` for any manifest
// that omits it. `{slug}` is the only placeholder. Default reproduces the
// Railway hostname convention every existing manifest already uses, so this
// PR is a no-op for the current dataset (manifest value wins in dual-read).
//
// Future PRs will (a) drop `backend_url` from manifests so this synthesis
// becomes the source of truth, and (b) let CI/tests point a single deployed
// image at a different env by overriding this var.
const DEFAULT_BACKEND_HOST_PATTERN =
"showcase-{slug}-production.up.railway.app";
const BACKEND_HOST_PATTERN =
process.env.SHOWCASE_BACKEND_HOST_PATTERN || DEFAULT_BACKEND_HOST_PATTERN;
function synthesizeBackendUrl(slug: string): string {
return `https://${BACKEND_HOST_PATTERN.replace("{slug}", slug)}`;
}
// Registry is consumed by ALL shells:
// - shell: home grid, integrations catalog, matrix, middleware
// - shell-docs: docs routes (framework lookup, MDX renderer)
// - shell-dojo: dojo app's integration grid and demo columns
// so we multi-emit. constraints.json is shell-only (integration-explorer).
const SHELL_OUTPUT_DIR = path.join(ROOT, "shell", "src", "data");
const SHELL_DOCS_OUTPUT_DIR = path.join(ROOT, "shell-docs", "src", "data");
const SHELL_DOJO_OUTPUT_DIR = path.join(ROOT, "shell-dojo", "src", "data");
const SHELL_DASHBOARD_OUTPUT_DIR = path.join(
ROOT,
"shell-dashboard",
"src",
"data",
);
const OUTPUT_DIRS = [
SHELL_OUTPUT_DIR,
SHELL_DOCS_OUTPUT_DIR,
SHELL_DOJO_OUTPUT_DIR,
SHELL_DASHBOARD_OUTPUT_DIR,
];
const PACKAGES_JSON_PATH = path.join(ROOT, "shared", "packages.json");
const CONSTRAINTS_PATH = path.join(ROOT, "shared", "constraints.yaml");
const CONSTRAINTS_OUTPUT_PATH = path.join(SHELL_OUTPUT_DIR, "constraints.json");
function loadSchema() {
const raw = fs.readFileSync(SCHEMA_PATH, "utf-8");
return JSON.parse(raw);
}
function loadFeatureRegistry() {
const raw = fs.readFileSync(FEATURE_REGISTRY_PATH, "utf-8");
return JSON.parse(raw);
}
type DocsLinkEntry = {
og_docs_url: string | null;
shell_docs_path: string | null;
};
type DocsLinks = {
features: Record<string, DocsLinkEntry>;
};
/**
* Load per-package docs-links.json. Returns best-effort normalized overrides
* ({ features: { <feature_id>: { og_docs_url, shell_docs_path } } }).
*
* Missing file -> empty overrides. A file with the older shape (e.g. using
* `shell_docs_url` instead of `shell_docs_path`) is treated as stale: we
* still merge what we can without erroring.
*
* A completely malformed JSON file IS a build-blocking error: the caller
* must pass `errors` so the failure surfaces in the aggregated error list
* and `main()`'s `process.exit(1)` path fires. Previously we just
* `console.warn`ed, which let CI continue green with a silently broken
* override file on disk.
*/
function loadDocsLinks(packageDir: string, errors: string[]): DocsLinks {
const docsLinksPath = path.join(packageDir, "docs-links.json");
if (!fs.existsSync(docsLinksPath)) {
return { features: {} };
}
try {
const raw = fs.readFileSync(docsLinksPath, "utf-8");
const parsed = JSON.parse(raw) as {
features?: Record<string, Record<string, unknown>>;
};
const features: Record<string, DocsLinkEntry> = {};
const rawFeatures = parsed?.features ?? {};
for (const [featureId, entry] of Object.entries(rawFeatures)) {
if (!entry || typeof entry !== "object") continue;
const og =
typeof entry.og_docs_url === "string" ? entry.og_docs_url : null;
// Preferred key is `shell_docs_path`; fall back to legacy
// `shell_docs_url` so older files still contribute something.
const shellPath =
typeof entry.shell_docs_path === "string"
? entry.shell_docs_path
: typeof entry.shell_docs_url === "string"
? entry.shell_docs_url
: null;
features[featureId] = {
og_docs_url: og,
shell_docs_path: shellPath,
};
}
return { features };
} catch (e) {
errors.push(
`${docsLinksPath}: failed to parse docs-links.json: ${(e as Error).message}`,
);
return { features: {} };
}
}
function findManifests(): string[] {
if (!fs.existsSync(PACKAGES_DIR)) {
return [];
}
const dirs = fs
.readdirSync(PACKAGES_DIR, { withFileTypes: true })
.filter((d) => d.isDirectory())
.map((d) => d.name);
const manifests: string[] = [];
for (const dir of dirs) {
const manifestPath = path.join(PACKAGES_DIR, dir, "manifest.yaml");
if (fs.existsSync(manifestPath)) {
manifests.push(manifestPath);
}
}
return manifests;
}
function validateManifest(
manifest: Record<string, unknown>,
validate: ReturnType<Ajv["compile"]>,
featureIds: Set<string>,
filePath: string,
): string[] {
const errors: string[] = [];
if (!validate(manifest)) {
for (const err of validate.errors || []) {
errors.push(
`${filePath}: Schema error at ${err.instancePath}: ${err.message}`,
);
}
}
// Validate feature IDs reference the registry
const features = (manifest.features as string[]) || [];
for (const featureId of features) {
if (!featureIds.has(featureId)) {
errors.push(
`${filePath}: Unknown feature ID "${featureId}" not in feature registry`,
);
}
}
// Validate demo IDs reference declared features
const demos = (manifest.demos as Array<{ id: string }>) || [];
for (const demo of demos) {
if (!featureIds.has(demo.id)) {
errors.push(
`${filePath}: Demo "${demo.id}" references unknown feature ID not in feature registry`,
);
}
}
// Validate not_supported_features doesn't overlap with features
const notSupported = (manifest.not_supported_features as string[]) || [];
for (const featureId of notSupported) {
if (!featureIds.has(featureId)) {
errors.push(
`${filePath}: Unknown feature ID "${featureId}" in not_supported_features`,
);
}
if (features.includes(featureId)) {
errors.push(
`${filePath}: Feature "${featureId}" appears in both features and not_supported_features — only one is allowed`,
);
}
}
return errors;
}
// --- Catalog types ---
interface CatalogCell {
id: string;
manifestation: "integrated" | "starter";
integration: string;
integration_name: string;
feature: string | null;
feature_name: string | null;
category: string | null;
category_name: string | null;
status: "wired" | "stub" | "unshipped" | "unsupported";
parity_tier: "reference" | "at_parity" | "partial" | "minimal" | "not_wired";
max_depth: number;
}
interface CatalogMetadata {
reference: string;
total_cells: number;
wired: number;
stub: number;
unshipped: number;
unsupported: number;
/** Cells for docs-only features — excluded from wired/stub/unshipped/unsupported. */
docs_only: number;
generated_at: string;
}
interface Catalog {
metadata: CatalogMetadata;
cells: CatalogCell[];
}
/**
* Determine cell status for a (feature, integration) pair.
*
* - unsupported: feature is in manifest.not_supported_features (framework
* architecturally cannot support this feature). Checked first so this
* takes precedence over the wired/stub/unshipped fallthrough.
* - wired: manifest declares the feature AND has a demo with a route for it
* - stub: manifest declares the feature AND has a demo, but no route
* - unshipped: feature is not in the manifest at all
*/
function determineCellStatus(
featureId: string,
manifest: Record<string, unknown>,
): "wired" | "stub" | "unshipped" | "unsupported" {
const notSupported =
(manifest.not_supported_features as string[] | undefined) || [];
if (notSupported.includes(featureId)) {
return "unsupported";
}
const features = (manifest.features as string[]) || [];
if (!features.includes(featureId)) {
return "unshipped";
}
const demos = (manifest.demos as Array<{ id: string; route?: string }>) || [];
const demo = demos.find((d) => d.id === featureId);
if (!demo) {
// Feature declared but no demo entry at all
return "unshipped";
}
if (demo.route) {
return "wired";
}
// Demo exists but no route (e.g. cli-start with command: only)
return "stub";
}
/**
* Generate the full 663-cell catalog by cross-joining features x integrations,
* plus 17 starter cells. Parity tiers are auto-derived from manifest data.
*/
function generateCatalog(
featureRegistry: {
features: Array<{
id: string;
name: string;
category: string;
kind?: string;
deprecated?: boolean;
}>;
categories: Array<{ id: string; name: string }>;
},
integrations: Record<string, unknown>[],
): Catalog {
// Build feature -> category lookup
const featureCategoryMap = new Map<string, string>();
for (const feature of featureRegistry.features) {
featureCategoryMap.set(feature.id, feature.category);
}
// Build feature -> display name lookup
const featureNameMap = new Map<string, string>();
for (const feature of featureRegistry.features) {
featureNameMap.set(feature.id, feature.name);
}
// Build category -> display name lookup
const categoryNameMap = new Map<string, string>();
for (const category of featureRegistry.categories) {
categoryNameMap.set(category.id, category.name);
}
const allFeatureIds = featureRegistry.features.map((f) => f.id);
// docs-only features (e.g. cli-start) exist for documentation coverage
// tracking only — they have no route, no depth probes, and no health
// signals. Exclude them from the wired/stub/unshipped/unsupported metadata
// so the stats bar reflects only meaningful matrix cells.
const docsOnlyFeatureIds = new Set(
featureRegistry.features
.filter((f) => f.kind === "docs-only")
.map((f) => f.id),
);
// Deprecated features — consolidated/replaced patterns that LGP (the
// gold-standard reference integration) intentionally does NOT implement,
// but legacy integrations still serve. The catalog emits cells for all
// (integration × feature) pairs uniformly; visibility is controlled at
// the dashboard layer via a "Show deprecated" toggle that filters whole
// FEATURE ROWS based on `feature.deprecated`. That way toggle-on
// surfaces both the audit trail (integrations that declare these
// legacy patterns) and the empty cells (LGP shows N/A for them) in one
// pass without missing-data artifacts.
// Step 1: Cross-join to produce integrated cells and collect wired features
// and unsupported features per integration.
const wiredFeaturesPerIntegration = new Map<string, Set<string>>();
const unsupportedFeaturesPerIntegration = new Map<string, Set<string>>();
const cells: CatalogCell[] = [];
for (const integration of integrations) {
const slug = integration.slug as string;
const integrationName = integration.name as string;
const wiredFeatures = new Set<string>();
const unsupportedFeatures = new Set<string>();
for (const featureId of allFeatureIds) {
const status = determineCellStatus(featureId, integration);
if (status === "wired") {
wiredFeatures.add(featureId);
}
if (status === "unsupported") {
unsupportedFeatures.add(featureId);
}
const categoryId = featureCategoryMap.get(featureId) || null;
// Unsupported and unshipped cells share max_depth=0 — neither has any
// probes to regress against. They differ only in *intent*: unsupported
// is a hard architectural floor, unshipped is just unbuilt.
const maxDepth =
status === "unshipped" || status === "unsupported" ? 0 : 4;
cells.push({
id: `${slug}/${featureId}`,
manifestation: "integrated",
integration: slug,
integration_name: integrationName,
feature: featureId,
feature_name: featureNameMap.get(featureId) || null,
category: categoryId,
category_name: categoryId
? categoryNameMap.get(categoryId) || null
: null,
status,
parity_tier: "not_wired", // placeholder, computed below
max_depth: maxDepth,
});
}
wiredFeaturesPerIntegration.set(slug, wiredFeatures);
unsupportedFeaturesPerIntegration.set(slug, unsupportedFeatures);
}
// Step 2: Reference integration — always langgraph-python.
const referenceSlug = "langgraph-python";
const referenceWiredFeatures =
wiredFeaturesPerIntegration.get(referenceSlug)!;
console.log(
`\nCatalog: reference integration = ${referenceSlug} (${referenceWiredFeatures.size} wired features)`,
);
// Step 3: Compute parity tiers for each integration
const integrationTiers = new Map<
string,
"reference" | "at_parity" | "partial" | "minimal" | "not_wired"
>();
for (const [slug, wiredSet] of wiredFeaturesPerIntegration) {
if (slug === referenceSlug) {
integrationTiers.set(slug, "reference");
continue;
}
// Parity is computed against the *expected* feature set for this
// integration: reference features minus features this integration's
// framework architecturally cannot support. A framework that legitimately
// can't support a feature should not be penalised for the gap.
const unsupportedSet =
unsupportedFeaturesPerIntegration.get(slug) ?? new Set<string>();
const expectedFromReference = [...referenceWiredFeatures].filter(
(f) => !unsupportedSet.has(f),
);
// Check if this integration's wired features cover everything in
// expectedFromReference (i.e., it has parity over the supportable subset).
const isSuperset = expectedFromReference.every((f) => wiredSet.has(f));
if (isSuperset) {
integrationTiers.set(slug, "at_parity");
continue;
}
// Count intersection with the expected (supportable) reference features.
const intersectionSize = expectedFromReference.filter((f) =>
wiredSet.has(f),
).length;
if (intersectionSize >= 3) {
integrationTiers.set(slug, "partial");
} else if (intersectionSize >= 1) {
integrationTiers.set(slug, "minimal");
} else {
integrationTiers.set(slug, "not_wired");
}
}
// Step 4: Apply parity tiers to all integrated cells
for (const cell of cells) {
if (cell.manifestation === "integrated") {
cell.parity_tier = integrationTiers.get(cell.integration)!;
}
}
// Step 5: Add 17 starter cells
for (const integration of integrations) {
const slug = integration.slug as string;
const integrationName = integration.name as string;
const starter = integration.starter as Record<string, unknown> | undefined;
if (starter) {
cells.push({
id: `starter/${slug}`,
manifestation: "starter",
integration: slug,
integration_name: integrationName,
feature: null,
feature_name: null,
category: null,
category_name: null,
status: "wired",
parity_tier: integrationTiers.get(slug) || "not_wired",
max_depth: 4,
});
}
}
// Step 6: Compute metadata
// Exclude docs-only cells from the headline counts — they are purely
// informational and don't participate in depth, health, or coverage.
const countableCells = cells.filter(
(c) => c.feature === null || !docsOnlyFeatureIds.has(c.feature),
);
const docsOnlyCount = cells.length - countableCells.length;
const wiredCount = countableCells.filter((c) => c.status === "wired").length;
const stubCount = countableCells.filter((c) => c.status === "stub").length;
const unshippedCount = countableCells.filter(
(c) => c.status === "unshipped",
).length;
const unsupportedCount = countableCells.filter(
(c) => c.status === "unsupported",
).length;
const metadata: CatalogMetadata = {
reference: referenceSlug,
total_cells: countableCells.length,
wired: wiredCount,
stub: stubCount,
unshipped: unshippedCount,
unsupported: unsupportedCount,
docs_only: docsOnlyCount,
generated_at: new Date().toISOString(),
};
return {
metadata,
cells,
};
}
function main() {
console.log("Generating integration registry...\n");
const schema = loadSchema();
const featureRegistry = loadFeatureRegistry();
const featureIds = new Set<string>(
featureRegistry.features.map((f: { id: string }) => f.id),
);
const ajv = new Ajv({ allErrors: true });
addFormats(ajv);
const validate = ajv.compile(schema);
const manifestPaths = findManifests();
if (manifestPaths.length === 0) {
console.log("No integration packages found. Generating empty registry.");
}
const integrations: Record<string, unknown>[] = [];
const allErrors: string[] = [];
for (const manifestPath of manifestPaths) {
const raw = fs.readFileSync(manifestPath, "utf-8");
let manifest: Record<string, unknown>;
try {
manifest = yaml.parse(raw);
} catch (e) {
allErrors.push(`${manifestPath}: Failed to parse YAML: ${e}`);
continue;
}
const errors = validateManifest(
manifest,
validate,
featureIds,
manifestPath,
);
if (errors.length > 0) {
allErrors.push(...errors);
continue;
}
integrations.push(manifest);
console.log(` OK: ${manifest.name} (${manifest.slug})`);
}
// Dual-read for backend_url:
// manifest value (if present) -> synthesized from BACKEND_HOST_PATTERN
//
// Manifests no longer ship `backend_url` (PR2 stripped them all); the
// synthesized value below is now the source of truth. Manifest-supplied
// values are still honored for safety/backporting if any reappear.
//
// We rebuild each manifest object to insert `backend_url` immediately
// after `copilotkit_version`, preserving the historical JSON key order so
// the emitted registry.json stays byte-identical to the pre-PR1 output.
for (let i = 0; i < integrations.length; i++) {
const manifest = integrations[i] as Record<string, unknown>;
const slug = manifest.slug as string;
const existing = manifest.backend_url;
const backendUrl =
typeof existing === "string" && existing.length > 0
? existing
: synthesizeBackendUrl(slug);
// Rebuild with `backend_url` slotted right after `copilotkit_version` to
// match the historical key order from YAML manifests.
const rebuilt: Record<string, unknown> = {};
let inserted = false;
for (const [key, value] of Object.entries(manifest)) {
if (key === "backend_url") continue;
rebuilt[key] = value;
if (key === "copilotkit_version") {
rebuilt.backend_url = backendUrl;
inserted = true;
}
}
if (!inserted) rebuilt.backend_url = backendUrl;
integrations[i] = rebuilt;
}
// Merge per-package docs-links.json overrides onto each integration *after*
// schema validation, since `docs_links` isn't part of the manifest schema.
// Best-effort: missing file or stale shapes are tolerated and don't error.
for (const manifest of integrations) {
const pkgDir = path.join(PACKAGES_DIR, manifest.slug as string);
manifest.docs_links = loadDocsLinks(pkgDir, allErrors);
}
// Constraint validation
const constraintsRaw = fs.readFileSync(CONSTRAINTS_PATH, "utf-8");
const constraints = yaml.parse(constraintsRaw);
for (const manifest of integrations) {
const constraintErrors = validateManifestConstraints(
manifest as {
slug: string;
generative_ui?: string[];
interaction_modalities?: string[];
demos: Array<{ id: string; name: string }>;
},
constraints,
);
if (constraintErrors.length > 0) {
allErrors.push(...constraintErrors);
}
}
if (allErrors.length > 0) {
console.error("\nValidation errors:");
for (const err of allErrors) {
console.error(` ERROR: ${err}`);
}
process.exit(1);
}
// Sort by sort_order (lower = higher priority), then name as tiebreaker
integrations.sort((a, b) => {
const orderA = (a.sort_order as number) ?? 999;
const orderB = (b.sort_order as number) ?? 999;
if (orderA !== orderB) return orderA - orderB;
return String(a.name).localeCompare(String(b.name));
});
// Load packages list from shared/packages.json
let packages: Array<{ slug: string; name: string }> = [];
if (fs.existsSync(PACKAGES_JSON_PATH)) {
const packagesRaw = fs.readFileSync(PACKAGES_JSON_PATH, "utf-8");
packages = JSON.parse(packagesRaw);
console.log(`\nLoaded ${packages.length} packages from packages.json`);
}
const registry = {
feature_registry: featureRegistry,
integrations,
packages,
};
const registryJson = JSON.stringify(registry, null, 2) + "\n";
for (const dir of OUTPUT_DIRS) {
fs.mkdirSync(dir, { recursive: true });
const outputPath = path.join(dir, "registry.json");
fs.writeFileSync(outputPath, registryJson);
console.log(
`\nRegistry generated: ${outputPath} (${integrations.length} integrations)`,
);
}
// Write constraints.json for the shell's client-side filtering
fs.writeFileSync(
CONSTRAINTS_OUTPUT_PATH,
JSON.stringify(constraints, null, 2) + "\n",
);
console.log(`Constraints written: ${CONSTRAINTS_OUTPUT_PATH}`);
// --- Catalog generation (D0-D4 dashboard matrix) ---
const catalog = generateCatalog(featureRegistry, integrations);
const catalogJson = JSON.stringify(catalog, null, 2) + "\n";
for (const dir of OUTPUT_DIRS) {
const catalogPath = path.join(dir, "catalog.json");
fs.writeFileSync(catalogPath, catalogJson);
console.log(
`Catalog generated: ${catalogPath} (${catalog.metadata.total_cells} cells)`,
);
}
}
main();