scream-code 0.13.3 → 0.13.4
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-DFhvkeiL.mjs → app-CT7KRNF5.mjs} +106 -11
- package/dist/{dispatch-C7WVQ8OE.mjs → dispatch-BKrBb5IE.mjs} +1 -1
- package/dist/{dispatch-sa_KwTpz.mjs → dispatch-Dk8_Wqp6.mjs} +1073 -18
- package/dist/main.mjs +1 -1
- package/dist/{text-input-dialog-Dfg978Sj.mjs → text-input-dialog-CYs9xQZi.mjs} +1 -1
- package/dist/{text-input-dialog-Cwnq9vFO.mjs → text-input-dialog-ClcJf9pu.mjs} +8 -0
- 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-CT7KRNF5.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-ClcJf9pu.mjs";
|
|
7
7
|
export { TextInputDialogComponent };
|
|
@@ -912,6 +912,8 @@ const dictionaries = {
|
|
|
912
912
|
"editor.tip_10": "💡 Tips:输入 /rlm 可开启运行时记忆,让 Agent 跨轮记住更多上下文 【Ctrl+B 关闭 Tips】",
|
|
913
913
|
"editor.tip_11": "💡 Tips:按 Ctrl+D(空输入时)可快速退出,再按一次确认 【Ctrl+B 关闭 Tips】",
|
|
914
914
|
"editor.tip_12": "💡 Tips:输入 /sessions 可查看并恢复历史会话 【Ctrl+B 关闭 Tips】",
|
|
915
|
+
"editor.tip_13": "💡 Tips:按 Ctrl+Shift+F 或输入 /search 可搜索会话历史 【Ctrl+B 关闭 Tips】",
|
|
916
|
+
"editor.tip_14": "💡 Tips:拖选文本松手即可复制到系统剪贴板 【Ctrl+B 关闭 Tips】",
|
|
915
917
|
"editorkey.cancel_compaction_failed": "取消压缩失败: {msg}",
|
|
916
918
|
"editorkey.editor_not_configured": "未配置编辑器。请设置 $VISUAL / $EDITOR,或运行 /editor <命令>。",
|
|
917
919
|
"editorkey.external_editor_failed": "外部编辑器失败: {msg}",
|
|
@@ -1126,6 +1128,8 @@ const dictionaries = {
|
|
|
1126
1128
|
"registry.update_desc": "手动更新 Scream Code 到最新版本",
|
|
1127
1129
|
"registry.version_desc": "显示版本信息",
|
|
1128
1130
|
"registry.logout_desc": "删除已配置的模型",
|
|
1131
|
+
"registry.search_desc": "上下文关键词搜索,ESC 关闭",
|
|
1132
|
+
"registry.trace_desc": "查看会话工作轨迹",
|
|
1129
1133
|
"registry.eval_desc": "运行端到端测试(Agent健康度检查)",
|
|
1130
1134
|
"registry.exit_desc": "退出应用",
|
|
1131
1135
|
"kw.hint_drag": "拖拽平移 · 滚轮缩放 · 单击展开/收起 · 双击详情",
|
|
@@ -1981,6 +1985,8 @@ const dictionaries = {
|
|
|
1981
1985
|
"editor.tip_10": "💡 Tips: Type /rlm to enable runtime memory for better cross-turn recall [Ctrl+B to hide Tips]",
|
|
1982
1986
|
"editor.tip_11": "💡 Tips: Press Ctrl+D (on empty input) to quit, press again to confirm [Ctrl+B to hide Tips]",
|
|
1983
1987
|
"editor.tip_12": "💡 Tips: Type /sessions to browse and resume past sessions [Ctrl+B to hide Tips]",
|
|
1988
|
+
"editor.tip_13": "💡 Tips: Press Ctrl+Shift+F or type /search to search the conversation [Ctrl+B to hide Tips]",
|
|
1989
|
+
"editor.tip_14": "💡 Tips: Drag to select text and release to copy to the system clipboard [Ctrl+B to hide Tips]",
|
|
1984
1990
|
"editorkey.cancel_compaction_failed": "Cancel compaction failed: {msg}",
|
|
1985
1991
|
"editorkey.editor_not_configured": "Editor not configured. Set $VISUAL / $EDITOR, or run /editor <command>.",
|
|
1986
1992
|
"editorkey.external_editor_failed": "External editor failed: {msg}",
|
|
@@ -2195,6 +2201,8 @@ const dictionaries = {
|
|
|
2195
2201
|
"registry.update_desc": "Manually update Scream Code to latest version",
|
|
2196
2202
|
"registry.version_desc": "Show version info",
|
|
2197
2203
|
"registry.logout_desc": "Remove configured models",
|
|
2204
|
+
"registry.search_desc": "Search the conversation context (Esc to close)",
|
|
2205
|
+
"registry.trace_desc": "View the session working trajectory",
|
|
2198
2206
|
"registry.eval_desc": "Run end-to-end tests (Agent health check)",
|
|
2199
2207
|
"registry.exit_desc": "Exit application",
|
|
2200
2208
|
"kw.hint_drag": "Drag to pan · Scroll to zoom · Click to expand/collapse · Double-click for details",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "scream-code",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.4",
|
|
4
4
|
"description": "A terminal-native AI agent for builders",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "ScreamCli",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"smoke": "node dist/main.mjs --version"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@liutod-scream/pi-tui": "^0.84.
|
|
58
|
+
"@liutod-scream/pi-tui": "^0.84.4",
|
|
59
59
|
"@mariozechner/clipboard": "^0.3.2",
|
|
60
60
|
"chalk": "^5.4.1",
|
|
61
61
|
"cli-highlight": "^2.1.11",
|