@seanyao/roll 4.629.2 → 4.630.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 +20 -0
- package/README.md +12 -0
- package/dist/roll.mjs +4517 -2624
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## v4.630.1 — 2026-06-30
|
|
6
|
+
|
|
7
|
+
### 自动化流水线
|
|
8
|
+
|
|
9
|
+
- **Reasonix builder 可以在 linked worktree 里正常提交了**:loop 现在会给每个 Reasonix cycle 生成临时本地 sandbox 配置,把已计算出的 git common dir 写入允许写目录;不需要永久放宽 `~/.reasonix/config.toml`,也不会把 API key 写进 argv 或配置文件。(FIX-1036) `[loop-engine]`
|
|
10
|
+
- **Loop 交付不会再误报完成**:PR、CI 或验收链路缺证时,Roll 会停在可恢复状态,不再把没真正上线的卡记成已交付。(FIX-1032a, FIX-1032c, FIX-1039) `[loop-engine]`
|
|
11
|
+
- **Scoped `roll loop go` 更守边界**:单卡运行不会被旧计数或定时 tick 带到下一张卡,适合人工盯一张关键修复。(FIX-1034, FIX-1040) `[goal-mode]`
|
|
12
|
+
- **Agent auth 诊断更准**:日志里的 `403` 卡号不再被误判成登录失效,真正的鉴权失败仍会明确阻塞。(FIX-1033) `[loop-engine]`
|
|
13
|
+
- **发版前检查更可信**:`roll release --json` 和一致性闸现在会真实读取待发布内容,旧交付缓存不会再误拦或误放。(FIX-1030, FIX-1041) `[release-management]`
|
|
14
|
+
|
|
15
|
+
### 新功能
|
|
16
|
+
|
|
17
|
+
- `roll design` 不再在已有 backlog 的项目里意外启动完整设计 session,而是先给出可选的几种目标方式(`--from-file`、直接需求文本等)(FIX-1031) `[loop]`
|
|
18
|
+
|
|
19
|
+
### 可见性
|
|
20
|
+
|
|
21
|
+
- 验收报告和故事档案开始显示执行阵容(Execution Cast),每位 Builder、Peer Reviewer、Evaluator 和验收门禁在交付页面上一眼可见(US-OBS-034)`[loop]`
|
|
22
|
+
- **Cycle 角色链可直接查看**:`roll cycle --roles` 会展示 Builder、Peer Reviewer、Evaluator 和采信结果,不用再翻事件流。(US-OBS-033) `[loop]`
|
|
23
|
+
- **评审解析失败不再消失**:有返回但格式不对的 reviewer/scorer 会显示原因和原始产物位置。(US-OBS-035) `[loop]`
|
|
24
|
+
|
|
5
25
|
## v4.629.2 — 2026-06-29
|
|
6
26
|
|
|
7
27
|
### Agent 管理
|
package/README.md
CHANGED
|
@@ -65,6 +65,18 @@ Roll V4 separates project coordination from story delivery:
|
|
|
65
65
|
- **Skills remain** the capability layer. Roles invoke `$roll-design`, `$roll-build`, `$roll-fix`, `$roll-peer`, `$roll-.qa`, and related skills instead of rewriting those contracts into TypeScript.
|
|
66
66
|
- **Fallback is fail-loud**. If a requested agent or rig is unavailable, Roll records that unavailability and pauses or asks for owner action; it does not silently pretend another agent was used.
|
|
67
67
|
|
|
68
|
+
### Supervisor backlog-clearing standard
|
|
69
|
+
|
|
70
|
+
When the owner asks Roll to clear a backlog, Supervisor treats the scope as every
|
|
71
|
+
live non-Hold `FIX-*`, `US-*`, and `REFACTOR-*` row unless the owner narrows it.
|
|
72
|
+
Before scheduling another card it reconciles backlog status, open PRs, recent
|
|
73
|
+
cycle endings, CI/evaluator gates, manual-merge PRs, and `.roll` meta state.
|
|
74
|
+
Each card gets its own Builder and, when required by the execution profile, an
|
|
75
|
+
independent Evaluator/Scorer selected from the current Agent roster. Repeated
|
|
76
|
+
failure, zero TCR, missing PR/CI/evaluator evidence, parser failures, auth
|
|
77
|
+
blocks, permission blocks, and `[roll:manual-merge]` PRs stop new scheduling and
|
|
78
|
+
surface an owner action through `roll supervisor status/next/why`.
|
|
79
|
+
|
|
68
80
|
### Operating modes
|
|
69
81
|
|
|
70
82
|
Roll has two product modes over the same backlog, truth, route profile, execution
|