scream-code 0.12.4 → 0.12.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/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-DSS4PdWO.mjs")).main();
9
+ (await import("./app-35ccG0J0.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);
@@ -563,6 +563,7 @@ const dictionaries = {
563
563
  "memory.session_label": "会话: ",
564
564
  "memory.pitfall_label": "踩坑: ",
565
565
  "memory.experience_label": "经验: ",
566
+ "memory.note_label": "笔记: ",
566
567
  "memory.detail_nav_hint": " Enter/Esc 返回 | i 注入 | d 删除",
567
568
  "skill.no_session": "请先创建或恢复一个会话,再使用 Skill 中心。",
568
569
  "skill.loading": "正在加载 Skill 中心…",
@@ -1034,6 +1035,9 @@ const dictionaries = {
1034
1035
  "config.yolo_already_off": "YES 模式已关闭",
1035
1036
  "config.ask_already_on": "ASK 模式已开启",
1036
1037
  "config.ask_already_off": "ASK 模式已关闭",
1038
+ "config.rlm_on": "RLM 模式已开启 — 持久化 Python 内核可用",
1039
+ "config.rlm_off": "RLM 模式已关闭",
1040
+ "config.rlm_usage": "用法: /rlm (切换) | /rlm on | /rlm off",
1037
1041
  "config.auto_already_on": "自动模式已开启",
1038
1042
  "config.auto_already_off": "自动模式已关闭",
1039
1043
  "settings.title": "设置",
@@ -1069,6 +1073,8 @@ const dictionaries = {
1069
1073
  "registry.auto_desc": "切换自动权限模式",
1070
1074
  "registry.yolo_desc": "切换至自动批准模式(yolo)",
1071
1075
  "registry.ask_desc": "切换至只读问答模式(ask)",
1076
+ "registry.rlm_desc": "RLM 模式:面向长任务的持久 Python 工作环境,支持无限递归子代理(/rlm 切换开关)",
1077
+ "registry.rlm_max_depth_desc": "设置 RLM 递归深度上限(/rlm-max-depth N)",
1072
1078
  "registry.wolfpack_desc": "切换群狼协作模式,自动批准+批量并发",
1073
1079
  "registry.sessions_desc": "浏览并恢复会话",
1074
1080
  "registry.goal_desc": "查看/管理自动目标",
@@ -1143,6 +1149,7 @@ const dictionaries = {
1143
1149
  "badge.plan": "计划",
1144
1150
  "badge.fusion": "融合计划",
1145
1151
  "badge.wolfpack": "群狼",
1152
+ "badge.rlm": "RLM",
1146
1153
  "badge.goal": "目标",
1147
1154
  "badge.auto": "自动",
1148
1155
  "badge.yes": "YES",
@@ -1618,6 +1625,7 @@ const dictionaries = {
1618
1625
  "memory.session_label": "Session: ",
1619
1626
  "memory.pitfall_label": "Pitfalls: ",
1620
1627
  "memory.experience_label": "Experience: ",
1628
+ "memory.note_label": "Note: ",
1621
1629
  "memory.detail_nav_hint": " Enter/Esc Back | i Inject | d Delete",
1622
1630
  "skill.no_session": "Please create or resume a session before using the Skill center.",
1623
1631
  "skill.loading": "Loading Skill center…",
@@ -2089,6 +2097,9 @@ const dictionaries = {
2089
2097
  "config.yolo_already_off": "YES mode is already off",
2090
2098
  "config.ask_already_on": "ASK mode is already on",
2091
2099
  "config.ask_already_off": "ASK mode is already off",
2100
+ "config.rlm_on": "RLM mode enabled — persistent python kernel available",
2101
+ "config.rlm_off": "RLM mode disabled",
2102
+ "config.rlm_usage": "Usage: /rlm (toggle) | /rlm on | /rlm off",
2092
2103
  "config.auto_already_on": "Auto mode is already on",
2093
2104
  "config.auto_already_off": "Auto mode is already off",
2094
2105
  "settings.title": "Settings",
@@ -2124,6 +2135,8 @@ const dictionaries = {
2124
2135
  "registry.auto_desc": "Toggle auto permission mode",
2125
2136
  "registry.yolo_desc": "Toggle auto-approve mode (yolo)",
2126
2137
  "registry.ask_desc": "Toggle read-only Q&A mode (ask)",
2138
+ "registry.rlm_desc": "RLM mode: a persistent Python workspace for long-running tasks with unlimited recursive subagents (/rlm toggles)",
2139
+ "registry.rlm_max_depth_desc": "Set RLM recursion depth limit (/rlm-max-depth N)",
2127
2140
  "registry.wolfpack_desc": "Toggle wolfpack mode, auto-approve + batch concurrency",
2128
2141
  "registry.sessions_desc": "Browse and restore sessions",
2129
2142
  "registry.goal_desc": "View/manage auto goals",
@@ -2198,6 +2211,7 @@ const dictionaries = {
2198
2211
  "badge.plan": "Plan",
2199
2212
  "badge.fusion": "Fusion",
2200
2213
  "badge.wolfpack": "Wolfpack",
2214
+ "badge.rlm": "RLM",
2201
2215
  "badge.goal": "Goal",
2202
2216
  "badge.auto": "Auto",
2203
2217
  "badge.yes": "YES",
@@ -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-DHhRrX3G.mjs";
6
+ import { t as TextInputDialogComponent } from "./text-input-dialog-BQeV1dTM.mjs";
7
7
  export { TextInputDialogComponent };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scream-code",
3
- "version": "0.12.4",
3
+ "version": "0.12.5",
4
4
  "description": "A terminal-native AI agent for builders",
5
5
  "license": "MIT",
6
6
  "author": "ScreamCli",