From e3723cce3c8005843eeb37d488205daff0d14805 Mon Sep 17 00:00:00 2001 From: Joe Danziger Date: Fri, 9 May 2025 12:03:16 -0400 Subject: [PATCH] fix cursor initialization --- scripts/profiles/cursor.js | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/scripts/profiles/cursor.js b/scripts/profiles/cursor.js index 76fe1d91..aecda6f3 100644 --- a/scripts/profiles/cursor.js +++ b/scripts/profiles/cursor.js @@ -55,7 +55,16 @@ const conversionConfig = { to: (match) => match }, { from: /https:\/\/docs\.cursor\.com\//g, to: 'https://docs.cursor.com/' } - ] + ], + + // Required for transformer compatibility + toolNames: {}, + toolContexts: [], + toolGroups: [], + fileReferences: { + pathPattern: /$^/, // matches nothing + replacement: '' + } }; export { conversionConfig, fileMap, globalReplacements, brandName, rulesDir };