scream-code 0.16.3 → 0.16.5
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/{app-C1foLjDE.mjs → app-F12Iraus.mjs} +154 -109
- package/dist/{dispatch-BGLqpKHG.mjs → dispatch-BNVgLsrQ.mjs} +1 -1
- package/dist/{dispatch-ChDxIz0h.mjs → dispatch-VY-K2oXV.mjs} +1020 -288
- package/dist/main.mjs +1 -1
- package/dist/{text-input-dialog-DAQfJdHu.mjs → text-input-dialog-CQ6R2lns.mjs} +1 -1
- package/dist/{text-input-dialog-GajpxjyL.mjs → text-input-dialog-KaFgI_Ko.mjs} +8 -4
- package/package.json +2 -2
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-F12Iraus.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);
|
|
@@ -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-KaFgI_Ko.mjs";
|
|
7
7
|
export { TextInputDialogComponent };
|
|
@@ -752,6 +752,7 @@ const dictionaries = {
|
|
|
752
752
|
"session.new_started": "已启动新会话 ({sessionId})。",
|
|
753
753
|
"replay.history_unavailable": "此会话的历史记录不可用。",
|
|
754
754
|
"replay.history_failed": "回放会话历史失败: {message}",
|
|
755
|
+
"replay.streamDraftPartial": "回复不完整:进程在回复流式输出期间退出,结尾内容可能缺失。",
|
|
755
756
|
"replay.skill_activated": "已激活技能: {skillName}",
|
|
756
757
|
"replay.yes_mode_on": "YES 模式:开启",
|
|
757
758
|
"replay.yes_mode_on_detail": "所有操作将自动批准。请谨慎使用。",
|
|
@@ -1040,8 +1041,9 @@ const dictionaries = {
|
|
|
1040
1041
|
"activitygroup.done": "工具执行完成",
|
|
1041
1042
|
"activitygroup.steps": "{count} 步",
|
|
1042
1043
|
"activitygroup.tools": "{count} 个工具",
|
|
1043
|
-
"activitygroup.
|
|
1044
|
-
"activitygroup.
|
|
1044
|
+
"activitygroup.diff": "{added} {removed}",
|
|
1045
|
+
"activitygroup.diffAddedOnly": "{added}",
|
|
1046
|
+
"activitygroup.rate": " · 实速 {rate} toks/s",
|
|
1045
1047
|
"activitygroup.hint_expand": " (ctrl+o 展开)",
|
|
1046
1048
|
"activitygroup.hint_collapse": " (ctrl+o 收起)",
|
|
1047
1049
|
"activitygroup.segments_hidden": "… 还有 {count} 步",
|
|
@@ -1960,6 +1962,7 @@ const dictionaries = {
|
|
|
1960
1962
|
"session.new_started": "New session started ({sessionId}).",
|
|
1961
1963
|
"replay.history_unavailable": "Session history is unavailable.",
|
|
1962
1964
|
"replay.history_failed": "Failed to replay session history: {message}",
|
|
1965
|
+
"replay.streamDraftPartial": "Response incomplete: the process exited while this reply was still streaming, so the tail may be missing.",
|
|
1963
1966
|
"replay.skill_activated": "Skill activated: {skillName}",
|
|
1964
1967
|
"replay.yes_mode_on": "YES mode: ON",
|
|
1965
1968
|
"replay.yes_mode_on_detail": "All operations will be auto-approved. Use with caution.",
|
|
@@ -2248,8 +2251,9 @@ const dictionaries = {
|
|
|
2248
2251
|
"activitygroup.done": "Tool calls finished",
|
|
2249
2252
|
"activitygroup.steps": "{count} steps",
|
|
2250
2253
|
"activitygroup.tools": "{count} tools",
|
|
2251
|
-
"activitygroup.
|
|
2252
|
-
"activitygroup.
|
|
2254
|
+
"activitygroup.diff": "{added} {removed}",
|
|
2255
|
+
"activitygroup.diffAddedOnly": "{added}",
|
|
2256
|
+
"activitygroup.rate": " · live {rate} toks/s",
|
|
2253
2257
|
"activitygroup.hint_expand": " (ctrl+o to expand)",
|
|
2254
2258
|
"activitygroup.hint_collapse": " (ctrl+o to collapse)",
|
|
2255
2259
|
"activitygroup.segments_hidden": "… {count} more steps",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "scream-code",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.5",
|
|
4
4
|
"description": "A terminal-native AI agent for builders",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "ScreamCli",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"dependencies": {
|
|
58
58
|
"@fontsource-variable/inter": "^5.3.0",
|
|
59
59
|
"@fontsource-variable/jetbrains-mono": "^5.3.0",
|
|
60
|
-
"@liutod-scream/pi-tui": "^0.85.
|
|
60
|
+
"@liutod-scream/pi-tui": "^0.85.3",
|
|
61
61
|
"@mariozechner/clipboard": "^0.3.2",
|
|
62
62
|
"chalk": "^5.4.1",
|
|
63
63
|
"cli-highlight": "^2.1.11",
|