facult 2.8.11 → 2.8.12

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "facult",
3
- "version": "2.8.11",
3
+ "version": "2.8.12",
4
4
  "description": "Manage canonical AI capabilities, sync surfaces, and evolution state.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -526,7 +526,7 @@ async function readJsonSafe(p: string): Promise<unknown> {
526
526
 
527
527
  function canonicalRefForPath(
528
528
  source: IndexedSource,
529
- category:
529
+ _category:
530
530
  | "skills"
531
531
  | "agents"
532
532
  | "automations"
@@ -548,7 +548,7 @@ function canonicalRefForPath(
548
548
  return `@project/${rel}`;
549
549
  }
550
550
  if (source.sourceKind === "builtin") {
551
- return `@builtin/facult-operating-model/${category}/${rel}`;
551
+ return `@builtin/facult-operating-model/${rel}`;
552
552
  }
553
553
  return undefined;
554
554
  }