forked from RooCodeInc/Roo-Code
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathprompts.json
More file actions
148 lines (148 loc) · 6.84 KB
/
prompts.json
File metadata and controls
148 lines (148 loc) · 6.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"title": "Prompts",
"done": "Done",
"modes": {
"title": "Modes",
"createNewMode": "Create new mode",
"editModesConfig": "Edit modes configuration",
"editGlobalModes": "Edit Global Modes",
"editProjectModes": "Edit Project Modes (.pearai-agent-ignore)",
"createModeHelpText": "Hit the + to create a new custom mode, or just ask Roo in chat to create one for you!"
},
"apiConfiguration": {
"title": "API Configuration",
"select": "Select which API configuration to use for this mode"
},
"tools": {
"title": "Available Tools",
"builtInModesText": "Tools for built-in modes cannot be modified",
"editTools": "Edit tools",
"doneEditing": "Done editing",
"allowedFiles": "Allowed files:",
"toolNames": {
"read": "Read Files",
"edit": "Edit Files",
"browser": "Use Browser",
"command": "Run Commands",
"mcp": "Use MCP"
},
"noTools": "None"
},
"roleDefinition": {
"title": "Role Definition",
"resetToDefault": "Reset to default",
"description": "Define Agent's expertise and personality for this mode. This description shapes how Roo presents itself and approaches tasks."
},
"customInstructions": {
"title": "Mode-specific Custom Instructions (optional)",
"resetToDefault": "Reset to default",
"description": "Add behavioral guidelines specific to {{modeName}} mode.",
"loadFromFile": "Custom instructions specific to {{mode}} mode can also be loaded from the <span>.pearai-agent/rules-{{slug}}/</span> folder in your workspace (.roorules-{{slug}} and .clinerules-{{slug}} are deprecated and will stop working soon)."
},
"globalCustomInstructions": {
"title": "Custom Instructions for All Modes",
"description": "These instructions apply to all modes. They provide a base set of behaviors that can be enhanced by mode-specific instructions below.\nIf you would like Roo to think and speak in a different language than your editor display language ({{language}}), you can specify it here.",
"loadFromFile": "Instructions can also be loaded from the <span>.pearai-agent/rules/</span> folder in your workspace (.roorules and .clinerules are deprecated and will stop working soon)."
},
"systemPrompt": {
"preview": "Preview System Prompt",
"copy": "Copy system prompt to clipboard",
"title": "System Prompt ({{modeName}} mode)"
},
"supportPrompts": {
"title": "Support Prompts",
"resetPrompt": "Reset {{promptType}} prompt to default",
"prompt": "Prompt",
"enhance": {
"apiConfiguration": "API Configuration",
"apiConfigDescription": "You can select an API configuration to always use for enhancing prompts, or just use whatever is currently selected",
"useCurrentConfig": "Use currently selected API configuration",
"testPromptPlaceholder": "Enter a prompt to test the enhancement",
"previewButton": "Preview Prompt Enhancement"
},
"types": {
"ENHANCE": {
"label": "Enhance Prompt",
"description": "Use prompt enhancement to get tailored suggestions or improvements for your inputs. This ensures Roo understands your intent and provides the best possible responses. Available via the ✨ icon in chat."
},
"EXPLAIN": {
"label": "Explain Code",
"description": "Get detailed explanations of code snippets, functions, or entire files. Useful for understanding complex code or learning new patterns. Available in code actions (lightbulb icon in the editor) and the editor context menu (right-click on selected code)."
},
"FIX": {
"label": "Fix Issues",
"description": "Get help identifying and resolving bugs, errors, or code quality issues. Provides step-by-step guidance for fixing problems. Available in code actions (lightbulb icon in the editor) and the editor context menu (right-click on selected code)."
},
"IMPROVE": {
"label": "Improve Code",
"description": "Receive suggestions for code optimization, better practices, and architectural improvements while maintaining functionality. Available in code actions (lightbulb icon in the editor) and the editor context menu (right-click on selected code)."
},
"ADD_TO_CONTEXT": {
"label": "Add to Context",
"description": "Add context to your current task or conversation. Useful for providing additional information or clarifications. Available in code actions (lightbulb icon in the editor) and the editor context menu (right-click on selected code)."
},
"TERMINAL_ADD_TO_CONTEXT": {
"label": "Add Terminal Content to Context",
"description": "Add terminal output to your current task or conversation. Useful for providing command outputs or logs. Available in the terminal context menu (right-click on selected terminal content)."
},
"TERMINAL_FIX": {
"label": "Fix Terminal Command",
"description": "Get help fixing terminal commands that failed or need improvement. Available in the terminal context menu (right-click on selected terminal content)."
},
"TERMINAL_EXPLAIN": {
"label": "Explain Terminal Command",
"description": "Get detailed explanations of terminal commands and their outputs. Available in the terminal context menu (right-click on selected terminal content)."
},
"NEW_TASK": {
"label": "Start New Task",
"description": "Start a new task with user input. Available in the Command Palette."
}
}
},
"advancedSystemPrompt": {
"title": "Advanced: Override System Prompt",
"description": "You can completely replace the system prompt for this mode (aside from the role definition and custom instructions) by creating a file at <span>.pearai-agent/system-prompt-{{slug}}</span> in your workspace. This is a very advanced feature that bypasses built-in safeguards and consistency checks (especially around tool usage), so be careful!"
},
"createModeDialog": {
"title": "Create New Mode",
"close": "Close",
"name": {
"label": "Name",
"placeholder": "Enter mode name"
},
"slug": {
"label": "Slug",
"description": "The slug is used in URLs and file names. It should be lowercase and contain only letters, numbers, and hyphens."
},
"saveLocation": {
"label": "Save Location",
"description": "Choose where to save this mode. Project-specific modes take precedence over global modes.",
"global": {
"label": "Global",
"description": "Available in all workspaces"
},
"project": {
"label": "Project-specific (.pearai-agent-ignore)",
"description": "Only available in this workspace, takes precedence over global"
}
},
"roleDefinition": {
"label": "Role Definition",
"description": "Define Agent's expertise and personality for this mode."
},
"tools": {
"label": "Available Tools",
"description": "Select which tools this mode can use."
},
"customInstructions": {
"label": "Custom Instructions (optional)",
"description": "Add behavioral guidelines specific to this mode."
},
"buttons": {
"cancel": "Cancel",
"create": "Create Mode"
},
"deleteMode": "Delete mode"
},
"allFiles": "all files"
}