From 41beb77451e597b57d6f2770ce9a1633c559db25 Mon Sep 17 00:00:00 2001 From: Matt Rubens Date: Wed, 8 Jan 2025 01:43:27 -0500 Subject: [PATCH] Read in conventions from .windsurfrules files as well --- src/core/prompts/system.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/prompts/system.ts b/src/core/prompts/system.ts index 88bfc26..d99af11 100644 --- a/src/core/prompts/system.ts +++ b/src/core/prompts/system.ts @@ -757,7 +757,7 @@ You accomplish a given task iteratively, breaking it down into clear steps and w 5. The user may provide feedback, which you can use to make improvements and try again. But DO NOT continue in pointless back and forth conversations, i.e. don't end your responses with questions or offers for further assistance.` async function loadRuleFiles(cwd: string): Promise { - const ruleFiles = ['.clinerules', '.cursorrules'] + const ruleFiles = ['.clinerules', '.cursorrules', '.windsurfrules'] let combinedRules = '' for (const file of ruleFiles) {