scream-code 0.15.5 → 0.15.7
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 +7 -4
- package/dist/{app-ugHHjuy4.mjs → app-BWXezRMl.mjs} +1252 -42
- package/dist/{dispatch-aNzh78xW.mjs → dispatch-BJ6GyqMS.mjs} +1015 -469
- package/dist/{dispatch-B23MoYWm.mjs → dispatch-CPK1Lkxu.mjs} +1 -1
- package/dist/main.mjs +1 -1
- package/dist/public/assets/{index-ChLLVxTo.js → index-Bvn-ixUo.js} +2 -2
- package/dist/public/assets/index-Bvn-ixUo.js.map +1 -0
- package/dist/public/index.html +1 -1
- package/dist/{text-input-dialog-DbYfSAjy.mjs → text-input-dialog-CnQM0DYj.mjs} +98 -2
- package/dist/{text-input-dialog-C0UIQBlI.mjs → text-input-dialog-MAm2GHmm.mjs} +1 -1
- package/package.json +2 -2
- package/dist/public/assets/index-ChLLVxTo.js.map +0 -1
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
</p>
|
|
20
20
|
|
|
21
21
|
<p align="center">
|
|
22
|
-
<img width="
|
|
22
|
+
<img width="1007" height="890" alt="企业微信20260909-170226@2x" src="https://github.com/user-attachments/assets/a8c1beda-3e73-41d1-855e-7dd80a3cc0e9" />
|
|
23
23
|
</p>
|
|
24
24
|
|
|
25
25
|
---
|
|
@@ -48,9 +48,11 @@ When Scream wants to modify files or run commands, an approval panel pops up —
|
|
|
48
48
|
|
|
49
49
|
### Features
|
|
50
50
|
|
|
51
|
-
- **Goal Loop** — autonomous, goal-driven execution with an independent judge agent and token/time
|
|
51
|
+
- **Goal Loop** — autonomous, goal-driven execution with an independent judge agent. Rejections must name concrete gaps; evidence gaps self-repair for up to 3 rounds, subjective calls park for your decision (with a written report), and token/time budgets bound the loop.
|
|
52
|
+
- **TUI Sidebar** — four live panels: workspace Git diff summary (green adds / red deletes), per-session token accounting (cache-hit / cache-miss / output), 8 sub-agent slots with real-time states (idle / working / outputting / messaging / reworking), and Goal status with judge state (awaiting / judging / adjudicated).
|
|
52
53
|
- **Wolfpack** — unlimited parallel sub-agents (coder / explore / plan / verify / reviewer / oracle / writer / worker).
|
|
53
|
-
- **Subagent Collaboration** —
|
|
54
|
+
- **Subagent Collaboration** — delegate to specialist sub-agents and stay in control: they **ask the lead agent for guidance mid-task instead of guessing when blocked**, request a handoff when a different specialist fits, take mid-task redirects or follow-up notes, return structured JSON when asked, and can be confined to a safe mode (read-only / edit-only / commands-allowed) so they never overstep your limits.
|
|
55
|
+
- **Bot Mode (`/bot`)** — unattended execution: reversible work (reads, in-workspace edits, read-only commands) runs freely, while irreversible actions (push / publish / delete / sensitive files / unclassified operations) are automatically denied and queued for your review — with the reason fed back to the model so it stops retrying.
|
|
54
56
|
- **Persistent Memory** — structured pain-point memory with FTS5 full-text + tag + vector retrieval, shared across sessions.
|
|
55
57
|
- **Local Knowledge Graph** — SAG-based visual knowledge base for multi-hop reasoning; import your own docs anytime.
|
|
56
58
|
- **RLM Mode** — persistent Python workspace for long-running tasks, with unlimited recursive sub-agents.
|
|
@@ -63,7 +65,7 @@ When Scream wants to modify files or run commands, an approval panel pops up —
|
|
|
63
65
|
|
|
64
66
|
### Slash Commands
|
|
65
67
|
|
|
66
|
-
Type `/` in the input to browse. All
|
|
68
|
+
Type `/` in the input to browse. All 48 commands:
|
|
67
69
|
|
|
68
70
|
<details>
|
|
69
71
|
<summary>Full command reference (click to expand)</summary>
|
|
@@ -74,6 +76,7 @@ Type `/` in the input to browse. All 47 commands:
|
|
|
74
76
|
| `/auto` | Toggle auto permission mode |
|
|
75
77
|
| `/yes` (`/yolo`) | Toggle auto-approve mode |
|
|
76
78
|
| `/ask` | Toggle read-only Q&A mode |
|
|
79
|
+
| `/bot` | Unattended bot mode: reversible actions auto-approve, irreversible ones park for review |
|
|
77
80
|
| `/goal [objective]` | View/manage auto goals |
|
|
78
81
|
| `/wolfpack` (`/wp`) | Toggle wolfpack mode — auto-approve + batch concurrency |
|
|
79
82
|
| `/rlm` | RLM mode: persistent Python workspace, unlimited recursive subagents |
|