Skip to content

Commit 8b4da27

Browse files
committed
Name
1 parent 1dd2caf commit 8b4da27

23 files changed

Lines changed: 119 additions & 119 deletions

File tree

.vscodeignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ demo.gif
2424
.nvmrc
2525
.gitattributes
2626
.prettierignore
27-
.clinerules*
27+
.agentrules*
2828
.roomodes
2929
cline_docs/**
3030
coverage/**

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ Join us at https://www.reddit.com/r/RooCode to share your custom modes and be pa
498498

499499
## [3.1.0]
500500

501-
- You can now customize the role definition and instructions for each chat mode (Code, Architect, and Ask), either through the new Prompts tab in the top menu or mode-specific .clinerules-mode files. Prompt Enhancements have also been revamped: the "Enhance Prompt" button now works with any provider and API configuration, giving you the ability to craft messages with fully customizable prompts for even better results.
501+
- You can now customize the role definition and instructions for each chat mode (Code, Architect, and Ask), either through the new Prompts tab in the top menu or mode-specific .agentrules-mode files. Prompt Enhancements have also been revamped: the "Enhance Prompt" button now works with any provider and API configuration, giving you the ability to craft messages with fully customizable prompts for even better results.
502502
- Add a button to copy markdown out of the chat
503503

504504
## [3.0.3]
@@ -734,7 +734,7 @@ Join us at https://www.reddit.com/r/RooCode to share your custom modes and be pa
734734

735735
## [2.1.9]
736736

737-
- Add instructions for using .clinerules on the settings screen
737+
- Add instructions for using .agentrules on the settings screen
738738

739739
## [2.1.8]
740740

@@ -769,4 +769,4 @@ Join us at https://www.reddit.com/r/RooCode to share your custom modes and be pa
769769
## [2.1.2]
770770

771771
- Support for auto-approval of write operations and command execution
772-
- Support for .clinerules custom instructions
772+
- Support for .agentrules custom instructions

src/__mocks__/fs/promises.ts

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ const formatRuleContent = (ruleFile: string, content: string): string => {
4545
}
4646

4747
type RuleFiles = {
48-
".clinerules-code": string
49-
".clinerules-ask": string
50-
".clinerules-architect": string
51-
".clinerules-test": string
52-
".clinerules-review": string
53-
".clinerules": string
48+
".agentrules-code": string
49+
".agentrules-ask": string
50+
".agentrules-architect": string
51+
".agentrules-test": string
52+
".agentrules-review": string
53+
".agentrules": string
5454
}
5555

5656
// Helper function to ensure directory exists
@@ -73,14 +73,14 @@ const mockFs = {
7373

7474
// Handle rule files
7575
const ruleFiles: RuleFiles = {
76-
".clinerules-code": "# Code Mode Rules\n1. Code specific rule",
77-
".clinerules-ask": "# Ask Mode Rules\n1. Ask specific rule",
78-
".clinerules-architect": "# Architect Mode Rules\n1. Architect specific rule",
79-
".clinerules-test":
76+
".agentrules-code": "# Code Mode Rules\n1. Code specific rule",
77+
".agentrules-ask": "# Ask Mode Rules\n1. Ask specific rule",
78+
".agentrules-architect": "# Architect Mode Rules\n1. Architect specific rule",
79+
".agentrules-test":
8080
"# Test Engineer Rules\n1. Always write tests first\n2. Get approval before modifying non-test code",
81-
".clinerules-review":
81+
".agentrules-review":
8282
"# Code Reviewer Rules\n1. Provide specific examples in feedback\n2. Focus on maintainability and best practices",
83-
".clinerules": "# Test Rules\n1. First rule\n2. Second rule",
83+
".agentrules": "# Test Rules\n1. First rule\n2. Second rule",
8484
}
8585

8686
// Check for exact file name match

0 commit comments

Comments
 (0)