@seanyao/roll 3.607.2 → 3.608.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 +21 -0
- package/README.md +4 -1
- package/dist/roll.mjs +1160 -534
- package/package.json +3 -4
- package/skills/roll-.changelog/SKILL.md +2 -2
- package/skills/roll-build/SKILL.md +1 -1
- package/skills/roll-fix/SKILL.md +1 -1
- package/skills/roll-loop/SKILL.md +3 -3
package/package.json
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seanyao/roll",
|
|
3
|
-
"version": "3.
|
|
4
|
-
"description": "Roll
|
|
3
|
+
"version": "3.608.1",
|
|
4
|
+
"description": "Roll — Roll out features with AI agents",
|
|
5
5
|
"packageManager": "pnpm@11.1.3",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "bash scripts/test-ts.sh",
|
|
8
|
-
"test:bats": "bash tests/run.sh",
|
|
9
8
|
"bundle": "node scripts/bundle.mjs",
|
|
10
9
|
"prepack": "pnpm -r build && pnpm bundle"
|
|
11
10
|
},
|
|
@@ -45,4 +44,4 @@
|
|
|
45
44
|
"typescript": "^6.0.3",
|
|
46
45
|
"vitest": "^4.1.8"
|
|
47
46
|
}
|
|
48
|
-
}
|
|
47
|
+
}
|
|
@@ -13,12 +13,12 @@ After successful Build & Deploy, extracts completed Stories from .roll/backlog.m
|
|
|
13
13
|
## Evidence marker(US-ATTEST-008 约定)
|
|
14
14
|
|
|
15
15
|
写入 CHANGELOG 的每个条目,若对应 story 存在验收报告
|
|
16
|
-
(`.roll/
|
|
16
|
+
(`.roll/features/<epic>/<id>/latest/<id>-report.html`),在该 bullet 行的下一行追加
|
|
17
17
|
不可见注释 marker(GitHub Release body 不渲染,grep 可追溯):
|
|
18
18
|
|
|
19
19
|
```markdown
|
|
20
20
|
- 修复导出报表时间区间偏移(FIX-200)
|
|
21
|
-
<!-- evidence: .roll/
|
|
21
|
+
<!-- evidence: .roll/features/<epic>/FIX-200/latest/FIX-200-report.html -->
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
报告不存在则不加(deletion-not-placeholder,与报告渲染同一契约)。
|
|
@@ -647,7 +647,7 @@ Both locations must be updated — neither can be skipped:
|
|
|
647
647
|
|
|
648
648
|
|
|
649
649
|
```markdown
|
|
650
|
-
| [US-{ID}](.roll/features/<epic>/US-{ID}/spec.md) | {Title} | ✅ Done · [evidence](.roll/features/<epic>/US-{ID}/
|
|
650
|
+
| [US-{ID}](.roll/features/<epic>/US-{ID}/spec.md) | {Title} | ✅ Done · [evidence](.roll/features/<epic>/US-{ID}/latest/US-{ID}-report.html) |
|
|
651
651
|
```
|
|
652
652
|
|
|
653
653
|
Change the Status from `📋 Todo` or `🔨 In Progress` (whichever the row currently shows) to `✅ Done`. When invoked by `roll-loop`, the row will already be `🔨 In Progress` — that is the expected starting state, and the transition is the same Edit operation.
|
package/skills/roll-fix/SKILL.md
CHANGED
|
@@ -419,7 +419,7 @@ Both locations must be updated — neither can be skipped:
|
|
|
419
419
|
|
|
420
420
|
|
|
421
421
|
```markdown
|
|
422
|
-
| [FIX-{ID}](.roll/features/<epic>/FIX-{ID}/spec.md) | {Title} | ✅ Done · [evidence](.roll/features/<epic>/FIX-{ID}/
|
|
422
|
+
| [FIX-{ID}](.roll/features/<epic>/FIX-{ID}/spec.md) | {Title} | ✅ Done · [evidence](.roll/features/<epic>/FIX-{ID}/latest/FIX-{ID}-report.html) |
|
|
423
423
|
```
|
|
424
424
|
|
|
425
425
|
Change the Status of the corresponding row from `📋 Todo` or `🔨 In Progress` (whichever the row currently shows) to `✅ Done`. When invoked by `roll-loop`, the row will already be `🔨 In Progress` — that is the expected starting state.
|
|
@@ -501,9 +501,9 @@ cannot fulfill these requirements.
|
|
|
501
501
|
|
|
502
502
|
### Local cron (default)
|
|
503
503
|
|
|
504
|
-
Install once with `roll loop on` —
|
|
505
|
-
`.roll.yaml`
|
|
506
|
-
|
|
504
|
+
Install once with `roll loop on` — agent selection happens per cycle from the
|
|
505
|
+
`.roll/agents.yaml` complexity slots (easy/default/hard/fallback), so the cron
|
|
506
|
+
entry is agent-agnostic. No agent-specific command needed.
|
|
507
507
|
|
|
508
508
|
```bash
|
|
509
509
|
roll loop on # install cron for loop + dream + brief
|