@rdmind/rdmind 0.2.3-alpha.4 → 0.2.3-alpha.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli.js +9151 -8839
- package/locales/en.js +3 -0
- package/locales/zh.js +3 -0
- package/package.json +2 -2
package/locales/en.js
CHANGED
|
@@ -23,6 +23,7 @@ export default {
|
|
|
23
23
|
'auto-accept edits': 'auto-accept edits',
|
|
24
24
|
'Accepting edits': 'Accepting edits',
|
|
25
25
|
'(shift + tab to cycle)': '(shift + tab to cycle)',
|
|
26
|
+
'(tab to cycle)': '(tab to cycle)',
|
|
26
27
|
'Execute shell commands via {{symbol}} (e.g., {{example1}}) or use natural language (e.g., {{example2}}).':
|
|
27
28
|
'Execute shell commands via {{symbol}} (e.g., {{example1}}) or use natural language (e.g., {{example2}}).',
|
|
28
29
|
'!': '!',
|
|
@@ -1142,6 +1143,8 @@ export default {
|
|
|
1142
1143
|
'You can resume a previous conversation by running rdmind --continue or rdmind --resume.',
|
|
1143
1144
|
'You can switch permission mode quickly with Shift+Tab or /approval-mode.':
|
|
1144
1145
|
'You can switch permission mode quickly with Shift+Tab or /approval-mode.',
|
|
1146
|
+
'You can switch permission mode quickly with Tab or /approval-mode.':
|
|
1147
|
+
'You can switch permission mode quickly with Tab or /approval-mode.',
|
|
1145
1148
|
'RDMind now supports custom commands, sub-agents, skills and other features. Check the documentation for usage help.':
|
|
1146
1149
|
'RDMind now supports custom commands, sub-agents, skills and other features. Check the documentation for usage help.',
|
|
1147
1150
|
'Try asking RDMind to help you commit code.':
|
package/locales/zh.js
CHANGED
|
@@ -22,6 +22,7 @@ export default {
|
|
|
22
22
|
'auto-accept edits': '自动接受编辑',
|
|
23
23
|
'Accepting edits': '接受编辑',
|
|
24
24
|
'(shift + tab to cycle)': '(shift + tab 切换)',
|
|
25
|
+
'(tab to cycle)': '(按 tab 切换)',
|
|
25
26
|
'Execute shell commands via {{symbol}} (e.g., {{example1}}) or use natural language (e.g., {{example2}}).':
|
|
26
27
|
'通过 {{symbol}} 执行 shell 命令(例如,{{example1}})或使用自然语言(例如,{{example2}})',
|
|
27
28
|
'!': '!',
|
|
@@ -1078,6 +1079,8 @@ export default {
|
|
|
1078
1079
|
'运行 rdmind --continue 或 rdmind --resume 可继续之前的会话。',
|
|
1079
1080
|
'You can switch permission mode quickly with Shift+Tab or /approval-mode.':
|
|
1080
1081
|
'按 Shift+Tab 或输入 /approval-mode 可快速切换权限模式。',
|
|
1082
|
+
'You can switch permission mode quickly with Tab or /approval-mode.':
|
|
1083
|
+
'按 Tab 或输入 /approval-mode 可快速切换权限模式。',
|
|
1081
1084
|
'RDMind now supports custom commands, sub-agents, skills and other features. Check the documentation for usage help.':
|
|
1082
1085
|
'RDMind 现已支持自定义命令、子代理、技能等特性,查阅文档获得使用帮助。',
|
|
1083
1086
|
'Try asking RDMind to help you commit code.': '试试让 RDMind 帮你提交代码。',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rdmind/rdmind",
|
|
3
|
-
"version": "0.2.3-alpha.
|
|
3
|
+
"version": "0.2.3-alpha.6",
|
|
4
4
|
"description": "RDMind - AI-powered coding assistant",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "cli.js",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"locales"
|
|
21
21
|
],
|
|
22
22
|
"config": {
|
|
23
|
-
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.2.3-alpha.
|
|
23
|
+
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.2.3-alpha.6"
|
|
24
24
|
},
|
|
25
25
|
"publishConfig": {
|
|
26
26
|
"access": "public"
|