@seanyao/roll 4.702.2 → 4.702.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/CHANGELOG.md +15 -0
- package/README.md +6 -2
- package/dist/roll.mjs +563 -190
- package/guide/en/loop.md +8 -0
- package/guide/en/project-setup.md +7 -0
- package/guide/zh/loop.md +6 -0
- package/guide/zh/project-setup.md +6 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## v4.702.4 — 2026-07-02
|
|
6
|
+
|
|
7
|
+
### 可见性
|
|
8
|
+
- `roll design` 默认输出现在会实时显示有界进展、逐张建卡事件和静默心跳,同时继续把完整原始输出写入 transcript;`--verbose` 与 `--raw` 也改为运行中实时输出,不再等 agent 退出后回放(FIX-1071)`[legacy-onboard]`
|
|
9
|
+
|
|
10
|
+
## v4.702.3 — 2026-07-02
|
|
11
|
+
|
|
12
|
+
### 稳定性
|
|
13
|
+
- `roll init` 现在会负责提交并推送自己生成的项目约定文件,`roll loop go` 不再一开工就撞 dirty(FIX-1072)`[loop-engine]`
|
|
14
|
+
- Builder 提交会被钉在 cycle worktree,不再把提交漏到主 checkout(FIX-1073)`[loop-engine]`
|
|
15
|
+
- 状态面板给出的 AI client 修复命令现在可以直接执行,不再多带无效参数(FIX-1070)`[cli]`
|
|
16
|
+
|
|
17
|
+
### 可见性
|
|
18
|
+
- `roll loop watch` 不再把旧 cycle 的卡片和 agent 贴到新的空转或重试状态上(FIX-1074)`[loop-observability]`
|
|
19
|
+
|
|
5
20
|
## v4.702.2 — 2026-07-02
|
|
6
21
|
|
|
7
22
|
### Breaking changes
|
package/README.md
CHANGED
|
@@ -53,6 +53,10 @@ waits for owner confirmation before writing. Automation must use
|
|
|
53
53
|
After any init path, `roll next` is the continuation button: it reads the same
|
|
54
54
|
brief, onboard plan, backlog, and Roll markers, then prints one best next
|
|
55
55
|
command instead of a menu.
|
|
56
|
+
When `roll init` writes Roll-owned meta files inside a git worktree, it also
|
|
57
|
+
adds, commits, and pushes those files to `origin` when possible, then prints the
|
|
58
|
+
commit/push result. Product files you created yourself are not included in that
|
|
59
|
+
finalization commit.
|
|
56
60
|
First time through? Start with [Getting started](guide/en/getting-started.md).
|
|
57
61
|
|
|
58
62
|
## Language Surfaces
|
|
@@ -197,7 +201,7 @@ with `roll loop resume` when ready.
|
|
|
197
201
|
| `roll agent [migrate\|list\|cast]` | Agent Scope, installed-agent inventory, and role casting |
|
|
198
202
|
| `roll backlog [sync\|block\|defer\|lint\|…]` | View, manage, lint, and sync pending tasks |
|
|
199
203
|
| `roll config [lang\|prices\|tune\|…]` | Read/write configuration, model prices, and suggest-only tuning |
|
|
200
|
-
| `roll design [--from-file <path>] [--agent <name>]` | Launch `$roll-design`
|
|
204
|
+
| `roll design [--from-file <path>] [--agent <name>] [--verbose\|--raw]` | Launch `$roll-design` with bounded live progress, card-created events, quiet heartbeats, raw transcript capture, and a final handoff |
|
|
201
205
|
| `roll doctor [skills\|tools\|language]` | Diagnose install health, skills, tools, permissions, and language drift |
|
|
202
206
|
| `roll help [--lang en\|zh] [name]` | View built-in Charter / guide docs; `roll --help` prints CLI usage |
|
|
203
207
|
| `roll idea "<one-sentence description>"` | Capture and classify a new backlog card |
|
|
@@ -205,7 +209,7 @@ with `roll loop resume` when ready.
|
|
|
205
209
|
| `roll loop <on\|off\|go\|watch\|runs\|cycles\|cycle\|alert\|…>` | Run, observe, and maintain the autonomous executor |
|
|
206
210
|
| `roll next` | Continue init/onboard with one best next command |
|
|
207
211
|
| `roll release [--dry-run\|--showcase]` | Release planning/flow plus golden-path showcase support |
|
|
208
|
-
| `roll setup [skills\|offboard
|
|
212
|
+
| `roll setup [-f\|--force] [--reselect]` / `roll setup skills\|offboard` | Install/sync conventions or remove Roll-owned project artifacts |
|
|
209
213
|
| `roll status [ci\|pulse] [--json]` | Project health, CI state, and delivery pulse |
|
|
210
214
|
| `roll test [--where] [--reset]` | Run tests through the isolation adapter |
|
|
211
215
|
| `roll update` | Upgrade the global Roll install and re-sync conventions |
|