@lorekit/cli 1.61.0 → 1.62.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -82,6 +82,13 @@ export const mirrorPairs = [
|
|
|
82
82
|
// `policy_id` or inline request into the conditions struct the RPC takes.
|
|
83
83
|
// Both copies are import-free, so the byte-comparison drift check applies.
|
|
84
84
|
{ core: 'packages/mcp-core/src/retention/groom.ts', edge: 'supabase/functions/_shared/retention/groom.ts', driftChecked: true },
|
|
85
|
+
// Near-duplicate clustering behind `GET /memories/clusters` and the Lore
|
|
86
|
+
// Explorer's Duplicate Clusters panel. Both copies are import-free, so the
|
|
87
|
+
// byte comparison applies. Like `lesson-rank.ts` above it also has a SECOND,
|
|
88
|
+
// cross-LANGUAGE twin no byte comparison can cover — the CLI's own
|
|
89
|
+
// `lessons-view.mjs` clustering, which is what `lorekit dedupe` runs — guarded
|
|
90
|
+
// behaviourally by `duplicate-clusters-parity.spec.ts` instead.
|
|
91
|
+
{ core: 'packages/mcp-core/src/clusters/duplicate-clusters.ts', edge: 'supabase/functions/_shared/clusters/duplicate-clusters.ts', driftChecked: true },
|
|
85
92
|
// Excluded from the byte-comparison drift check: the edge copy types the
|
|
86
93
|
// client as `ReturnType<typeof createClient>` off an `npm:` specifier where
|
|
87
94
|
// mcp-core imports a typed `SupabaseClient`, and additionally carries
|