fix(skills): treat intelligence-docs as a standalone skill

This commit is contained in:
Alem Tuzlak
2026-09-03 13:05:03 +02:00
committed by Tyler Slaton
parent 0779911182
commit 2a10854bfa
2 changed files with 3 additions and 1 deletions
+2 -1
View File
@@ -189,7 +189,8 @@ describe("syncPluginSkills", () => {
expect(RESERVED_LIFECYCLE_SLUGS).toContain("channels-setup");
expect(RESERVED_LIFECYCLE_SLUGS).toContain("inspector-docs");
expect(RESERVED_LIFECYCLE_SLUGS).toContain("inspector-workbench");
expect(RESERVED_LIFECYCLE_SLUGS.size).toBe(13);
expect(RESERVED_LIFECYCLE_SLUGS).toContain("intelligence-docs");
expect(RESERVED_LIFECYCLE_SLUGS.size).toBe(14);
});
// Version sync — the plugin version tracks packages/runtime/package.json.
+1
View File
@@ -21,6 +21,7 @@ export const RESERVED_LIFECYCLE_SLUGS: ReadonlySet<string> = new Set([
"channels-setup",
"inspector-docs",
"inspector-workbench",
"intelligence-docs",
]);
// Version sync — plugin version tracks this package's version.