scream-code 0.15.9 → 0.16.1
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/README.md +1 -1
- package/dist/{app-DQdNroOu.mjs → app-lSa6fM8z.mjs} +661 -100
- package/dist/{dispatch-CxGKRLcZ.mjs → dispatch-B6jbxY0D.mjs} +1 -1
- package/dist/{dispatch-D8ot3OUd.mjs → dispatch-DqeJdQZQ.mjs} +136 -46
- package/dist/main.mjs +1 -1
- package/dist/{text-input-dialog-Dx7LJTG6.mjs → text-input-dialog-BABWY9vy.mjs} +26 -0
- package/dist/{text-input-dialog-2cG5VK1G.mjs → text-input-dialog-rSkH3JTV.mjs} +1 -1
- package/package.json +1 -1
package/dist/main.mjs
CHANGED
|
@@ -6,7 +6,7 @@ const __dirname = __cjsShimDirname(__filename);
|
|
|
6
6
|
import "./suppress-sqlite-warning-C2VB0doZ.mjs";
|
|
7
7
|
//#region src/main.ts
|
|
8
8
|
try {
|
|
9
|
-
(await import("./app-
|
|
9
|
+
(await import("./app-lSa6fM8z.mjs")).main();
|
|
10
10
|
} catch (error) {
|
|
11
11
|
process.stderr.write(`${error instanceof Error ? error.stack ?? error.message : String(error)}\n`);
|
|
12
12
|
process.exit(1);
|
|
@@ -228,6 +228,9 @@ const dictionaries = {
|
|
|
228
228
|
"sidebar.agent_outputting": "输出中",
|
|
229
229
|
"sidebar.agent_messaging": "交谈中",
|
|
230
230
|
"sidebar.agent_reworking": "返工中",
|
|
231
|
+
"sidebar.agent_requesting": "求助中",
|
|
232
|
+
"sidebar.hub": "网络 Hub",
|
|
233
|
+
"sidebar.hub_model": "模型",
|
|
231
234
|
"sidebar.goal_idle": "空闲中",
|
|
232
235
|
"sidebar.goal_active": "进行中",
|
|
233
236
|
"sidebar.goal_completed": "已完成",
|
|
@@ -966,6 +969,16 @@ const dictionaries = {
|
|
|
966
969
|
"transcript.tool_name": "工具 {name}:",
|
|
967
970
|
"transcript.activated_skill": "已激活插件:{name}",
|
|
968
971
|
"transcript.more_history": "↑ 还有 {count} 条历史消息",
|
|
972
|
+
"transcript.child_request": "{name} 向主 Agent 求助({type})",
|
|
973
|
+
"transcript.child_request_anon": "子代理向主 Agent 求助({type})",
|
|
974
|
+
"transcript.child_request_type_info": "补充信息",
|
|
975
|
+
"transcript.child_request_type_handoff": "转交工作",
|
|
976
|
+
"transcript.child_request_type_escalate": "上报决策",
|
|
977
|
+
"transcript.child_request_needs": "需要 {value}",
|
|
978
|
+
"transcript.child_request_expecting": "期望 {value}",
|
|
979
|
+
"transcript.child_request_artifacts": "产出 {value}",
|
|
980
|
+
"transcript.child_request_evidence": "证据 {value}",
|
|
981
|
+
"transcript.child_request_missing": "缺项 {value}",
|
|
969
982
|
"compaction.done": "压缩完成",
|
|
970
983
|
"compaction.canceled": "压缩已取消",
|
|
971
984
|
"compaction.in_progress": "正在压缩上下文...",
|
|
@@ -1400,6 +1413,9 @@ const dictionaries = {
|
|
|
1400
1413
|
"sidebar.agent_outputting": "outputting",
|
|
1401
1414
|
"sidebar.agent_messaging": "messaging",
|
|
1402
1415
|
"sidebar.agent_reworking": "reworking",
|
|
1416
|
+
"sidebar.agent_requesting": "asking",
|
|
1417
|
+
"sidebar.hub": "Network Hub",
|
|
1418
|
+
"sidebar.hub_model": "model",
|
|
1403
1419
|
"sidebar.goal_idle": "no goal",
|
|
1404
1420
|
"sidebar.goal_active": "active",
|
|
1405
1421
|
"sidebar.goal_completed": "completed",
|
|
@@ -2138,6 +2154,16 @@ const dictionaries = {
|
|
|
2138
2154
|
"transcript.tool_name": "Tool {name}: ",
|
|
2139
2155
|
"transcript.activated_skill": "Activated plugin: {name}",
|
|
2140
2156
|
"transcript.more_history": "↑ {count} more history message(s)",
|
|
2157
|
+
"transcript.child_request": "{name} is asking the parent agent ({type})",
|
|
2158
|
+
"transcript.child_request_anon": "A subagent is asking the parent agent ({type})",
|
|
2159
|
+
"transcript.child_request_type_info": "info",
|
|
2160
|
+
"transcript.child_request_type_handoff": "handoff",
|
|
2161
|
+
"transcript.child_request_type_escalate": "escalate",
|
|
2162
|
+
"transcript.child_request_needs": "needs {value}",
|
|
2163
|
+
"transcript.child_request_expecting": "expecting {value}",
|
|
2164
|
+
"transcript.child_request_artifacts": "artifacts {value}",
|
|
2165
|
+
"transcript.child_request_evidence": "evidence {value}",
|
|
2166
|
+
"transcript.child_request_missing": "missing {value}",
|
|
2141
2167
|
"compaction.done": "Compaction complete",
|
|
2142
2168
|
"compaction.canceled": "Compaction cancelled",
|
|
2143
2169
|
"compaction.in_progress": "Compacting context...",
|
|
@@ -3,5 +3,5 @@ import { fileURLToPath as __cjsShimFileURLToPath } from 'node:url';
|
|
|
3
3
|
import { dirname as __cjsShimDirname } from 'node:path';
|
|
4
4
|
const __filename = __cjsShimFileURLToPath(import.meta.url);
|
|
5
5
|
const __dirname = __cjsShimDirname(__filename);
|
|
6
|
-
import { t as TextInputDialogComponent } from "./text-input-dialog-
|
|
6
|
+
import { t as TextInputDialogComponent } from "./text-input-dialog-BABWY9vy.mjs";
|
|
7
7
|
export { TextInputDialogComponent };
|