@hmharness/agent 0.4.1 → 0.4.3
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/dist/i18n.d.ts +5 -0
- package/dist/i18n.js +10 -0
- package/package.json +5 -5
package/dist/i18n.d.ts
CHANGED
|
@@ -68,6 +68,11 @@ export interface Strings {
|
|
|
68
68
|
tuiScrolled: string;
|
|
69
69
|
tuiWebHint: string;
|
|
70
70
|
updateHint: (latest: string) => string;
|
|
71
|
+
cmdResume: string;
|
|
72
|
+
cmdResumeNone: string;
|
|
73
|
+
cmdResumeHint: string;
|
|
74
|
+
cmdResumeNotFound: (p: string) => string;
|
|
75
|
+
cmdResumeLoaded: (n: number) => string;
|
|
71
76
|
tuiRadarScanning: string;
|
|
72
77
|
tuiEvolveDone: (proposals: number, insights: number, notes: number) => string;
|
|
73
78
|
tuiPassRate: (pct: string) => string;
|
package/dist/i18n.js
CHANGED
|
@@ -55,6 +55,11 @@ const zh = {
|
|
|
55
55
|
tuiScrolled: '↑ 已上滚 · PgDn/End/滚轮 回底',
|
|
56
56
|
tuiWebHint: '浏览器界面: 在另一个终端运行 hmh web --port=7788',
|
|
57
57
|
updateHint: (latest) => `新版本 ${latest} 可用: npm i -g @hmharness/cli 更新`,
|
|
58
|
+
cmdResume: '恢复历史会话(/resume 列出最近,/resume <前缀> 载入)',
|
|
59
|
+
cmdResumeNone: '还没有历史会话',
|
|
60
|
+
cmdResumeHint: '输入 /resume <上面的 id 前缀> 载入该会话继续对话',
|
|
61
|
+
cmdResumeNotFound: (p) => `没有匹配 "${p}" 的会话`,
|
|
62
|
+
cmdResumeLoaded: (n) => `已恢复会话(${n} 条消息),直接输入内容继续对话`,
|
|
58
63
|
tuiRadarScanning: '雷达扫描中…',
|
|
59
64
|
tuiEvolveDone: (p, i, n) => `evolve 完成: ${p} 提案 · 洞察 ${i} · 记忆 ${n}`,
|
|
60
65
|
tuiPassRate: (pct) => `pass rate: ${pct}`,
|
|
@@ -145,6 +150,11 @@ const en = {
|
|
|
145
150
|
tuiScrolled: '↑ scrolled up · PgDn/End/wheel back to bottom',
|
|
146
151
|
tuiWebHint: 'web UI: run hmh web --port=7788 in another terminal',
|
|
147
152
|
updateHint: (latest) => `version ${latest} available - update with: npm i -g @hmharness/cli`,
|
|
153
|
+
cmdResume: 'resume a past session (/resume lists recent, /resume <prefix> loads)',
|
|
154
|
+
cmdResumeNone: 'no past sessions yet',
|
|
155
|
+
cmdResumeHint: 'type /resume <an id prefix above> to load that session',
|
|
156
|
+
cmdResumeNotFound: (p) => `no session matches "${p}"`,
|
|
157
|
+
cmdResumeLoaded: (n) => `session resumed (${n} messages) - just type to continue`,
|
|
148
158
|
tuiRadarScanning: 'scanning radar…',
|
|
149
159
|
tuiEvolveDone: (p, i, n) => `evolve done: ${p} proposals · ${i} insights · ${n} notes`,
|
|
150
160
|
tuiPassRate: (pct) => `pass rate: ${pct}`,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hmharness/agent",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.3",
|
|
4
4
|
"description": "hmharness agent execution layer: base tools, system prompt, sub-agent spawn, and the shared task runner that frontends (cli, web) drive.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
"build": "tsc -p tsconfig.build.json"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@hmharness/kernel": "0.4.
|
|
19
|
-
"@hmharness/evolution": "0.4.
|
|
20
|
-
"@hmharness/domain-harmony": "0.4.
|
|
21
|
-
"@hmharness/domain-ops": "0.4.
|
|
18
|
+
"@hmharness/kernel": "0.4.3",
|
|
19
|
+
"@hmharness/evolution": "0.4.3",
|
|
20
|
+
"@hmharness/domain-harmony": "0.4.3",
|
|
21
|
+
"@hmharness/domain-ops": "0.4.3"
|
|
22
22
|
},
|
|
23
23
|
"files": [
|
|
24
24
|
"dist"
|