@seanyao/roll 3.611.3 → 3.612.1
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 +23 -0
- package/README.md +1 -1
- package/dist/roll.mjs +555 -235
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
### 稳定性
|
|
6
|
+
|
|
7
|
+
- `roll attest --capture-command` 截图后不再弹 macOS 终止进程确认
|
|
8
|
+
<!-- evidence: .roll/features/acceptance-evidence/FIX-266/latest/FIX-266-report.html -->
|
|
9
|
+
|
|
10
|
+
## v3.612.1 — 2026-06-12
|
|
11
|
+
|
|
5
12
|
### 新功能
|
|
6
13
|
|
|
7
14
|
- `roll loop go` — 连续跑 backlog 到完成或暂停(US-GOAL-002) `[loop]`
|
|
@@ -33,8 +40,24 @@
|
|
|
33
40
|
<!-- evidence: .roll/features/goal-mode/US-GOAL-006/latest/US-GOAL-006-report.html -->
|
|
34
41
|
- `roll loop resume` 清失败计数,不再恢复即熔断(FIX-251) `[loop]`
|
|
35
42
|
<!-- evidence: .roll/features/loop-engine/FIX-251/latest/FIX-251-report.html -->
|
|
43
|
+
- loop 出网预检不再依赖 macOS 默认缺失的 GNU `timeout`,避免直连正常时误报 `egress blocked`(FIX-257) `[loop]`
|
|
36
44
|
- 调度环境残留会被体检指出,不再静默污染 loop(FIX-232) `[loop]`
|
|
37
45
|
|
|
46
|
+
### 稳定性
|
|
47
|
+
|
|
48
|
+
- `roll loop go --cards` 不再沿用上次暂停的全量范围(FIX-259)
|
|
49
|
+
- goal 失败原因现在直达状态页,不再只剩 `no_cycle_terminal`(FIX-260)
|
|
50
|
+
- 验收证据不再只靠文字声明,缺截图会被指出(FIX-258)
|
|
51
|
+
- `roll attest --capture-command` 不再把失败命令当验收通过(FIX-263)
|
|
52
|
+
- `roll attest --capture-command` 相对路径按项目目录执行(FIX-262)
|
|
53
|
+
|
|
54
|
+
### 工程和测试
|
|
55
|
+
|
|
56
|
+
- `roll attest` 现在识别新卡的验收清单(FIX-261)
|
|
57
|
+
<!-- evidence: .roll/features/acceptance-evidence/FIX-261/latest/FIX-261-report.html -->
|
|
58
|
+
- 新 worktree 跑 `roll test` 会自动补齐 skills(FIX-264)
|
|
59
|
+
- goal/off/pause 的文档讲清了和定时 loop 的关系(FIX-256)
|
|
60
|
+
|
|
38
61
|
|
|
39
62
|
## v3.611.2 — 2026-06-11
|
|
40
63
|
|
package/README.md
CHANGED
|
@@ -45,7 +45,7 @@ First time through? Start with [Getting started](guide/en/getting-started.md).
|
|
|
45
45
|
|---------|-------------|
|
|
46
46
|
| **Autonomy · daily use** | |
|
|
47
47
|
| `roll loop <on\|off\|now\|status\|runs\|log\|story\|events\|eval\|signals\|alert\|fmt\|pr-inbox\|mute\|unmute\|pause\|resume\|reset\|gc>` | Manage the autonomous BACKLOG executor (incl. per-cycle result scoring) |
|
|
48
|
-
| `roll loop go [--epic <e>\|--cards <ids>] [--budget <usd>] [--for <duration>] [--review <auto\|hetero\|self\|off>]` | Run goal mode manually until the scoped work completes, pauses, or hits a budget/usage/timebox guardrail; final review defaults to `auto` |
|
|
48
|
+
| `roll loop go [--epic <e>\|--cards <ids>] [--budget <usd>] [--for <duration>] [--review <auto\|hetero\|self\|off>]` | Run goal mode manually until the scoped work completes, pauses, or hits a budget/usage/timebox guardrail; it can run while the scheduler is off, and a paused loop should be resumed first; final review defaults to `auto` |
|
|
49
49
|
| `roll loop goal` | Show persisted goal scope, review mode, usage, limits, safety gate, and last decision |
|
|
50
50
|
| `roll brief` | Show latest owner brief |
|
|
51
51
|
| `roll backlog [sync\|block\|defer\|lint\|…]` | View, manage, and sync (from GitHub Issues) pending tasks |
|