mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-24 00:51:34 +00:00
- 13 built-in personality traits (dry-wit, professor, straight-shooter, etc.) - Custom trait creation with emoji picker and prompt editor - Per-mode personality configuration via PersonalityConfig on ModeConfig - LLM-powered trait enhancement for expanding brief descriptions - Sandwich technique: personality prompt injected at top and bottom of system prompt - PersonalityTraitsPanel component with pill-grid UI, active order badges - Full test coverage for trait resolution, merging, and prompt building Made-with: Cursor
15 lines
648 B
JSON
15 lines
648 B
JSON
// Place your settings in this file to overwrite default and user settings.
|
|
{
|
|
"files.exclude": {
|
|
"out": false, // set this to true to hide the "out" folder with the compiled JS files
|
|
"dist": false // set this to true to hide the "dist" folder with the compiled JS files
|
|
},
|
|
"search.exclude": {
|
|
"out": true, // set this to false to include "out" folder in search results
|
|
"dist": true // set this to false to include "dist" folder in search results
|
|
},
|
|
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
|
|
"typescript.tsc.autoDetect": "off",
|
|
"vitest.disableWorkspaceWarning": true,
|
|
"ndjson.port": 7700
|
|
}
|