@rdmind/rdmind 0.1.8-alpha.3 → 0.1.8-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 +16525 -25635
- package/locales/en.js +6 -0
- package/locales/zh.js +6 -0
- package/package.json +2 -2
package/locales/en.js
CHANGED
|
@@ -104,6 +104,12 @@ export default {
|
|
|
104
104
|
'Theme "{{themeName}}" not found in selected scope.',
|
|
105
105
|
'clear the screen and conversation history':
|
|
106
106
|
'clear the screen and conversation history',
|
|
107
|
+
'Resume a previous session': 'Resume a previous session',
|
|
108
|
+
'(empty prompt)': '(empty prompt)',
|
|
109
|
+
'No sessions found. Start a new session with {{cmd}}.':
|
|
110
|
+
'No sessions found. Start a new session with {{cmd}}.',
|
|
111
|
+
'No saved session found with ID {{sessionId}}. Run `rdmind --resume` without an ID to choose from existing sessions.':
|
|
112
|
+
'No saved session found with ID {{sessionId}}. Run `rdmind --resume` without an ID to choose from existing sessions.',
|
|
107
113
|
'Clear conversation history and free up context':
|
|
108
114
|
'Clear conversation history and free up context',
|
|
109
115
|
'Compresses the context by replacing it with a summary.':
|
package/locales/zh.js
CHANGED
|
@@ -102,6 +102,12 @@ export default {
|
|
|
102
102
|
'Theme "{{themeName}}" not found in selected scope.':
|
|
103
103
|
'在所选作用域中未找到主题 "{{themeName}}"。',
|
|
104
104
|
'clear the screen and conversation history': '清屏并清除对话历史',
|
|
105
|
+
'Resume a previous session': '恢复之前的会话',
|
|
106
|
+
'(empty prompt)': '(空提示词)',
|
|
107
|
+
'No sessions found. Start a new session with {{cmd}}.':
|
|
108
|
+
'未发现会话。请使用 {{cmd}} 开始新会话。',
|
|
109
|
+
'No saved session found with ID {{sessionId}}. Run `rdmind --resume` without an ID to choose from existing sessions.':
|
|
110
|
+
'未发现 ID 为 {{sessionId}} 的已保存会话。请运行不带 ID 的 `rdmind --resume` 以从现有会话中选择。',
|
|
105
111
|
'Clear conversation history and free up context': '清除对话历史',
|
|
106
112
|
'Compresses the context by replacing it with a summary.':
|
|
107
113
|
'通过用摘要替换来压缩上下文',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rdmind/rdmind",
|
|
3
|
-
"version": "0.1.8-alpha.
|
|
3
|
+
"version": "0.1.8-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.1.8-alpha.
|
|
23
|
+
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.1.8-alpha.6"
|
|
24
24
|
},
|
|
25
25
|
"publishConfig": {
|
|
26
26
|
"access": "public"
|