From 4ca4840716a0086c3ca4529049d91825c036bbd0 Mon Sep 17 00:00:00 2001 From: tusharmagar Date: Sat, 31 Jan 2026 18:48:58 +0530 Subject: [PATCH] Fix merge conflict: remove redundant folder property from create-presentations skill The skill type definition no longer includes 'folder' since id is used for both purposes. The create-presentations skill from dev merge still had this property. Co-Authored-By: Claude Opus 4.5 --- apps/x/packages/core/src/application/assistant/skills/index.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/x/packages/core/src/application/assistant/skills/index.ts b/apps/x/packages/core/src/application/assistant/skills/index.ts index 3e132ac0..6ef19e8d 100644 --- a/apps/x/packages/core/src/application/assistant/skills/index.ts +++ b/apps/x/packages/core/src/application/assistant/skills/index.ts @@ -32,7 +32,6 @@ const definitions: SkillDefinition[] = [ { id: "create-presentations", title: "Create Presentations", - folder: "create-presentations", summary: "Create PDF presentations and slide decks from natural language requests using knowledge base context.", content: createPresentationsSkill, },