@seanyao/roll 2026.518.4 → 2026.519.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 +6 -0
- package/README.md +13 -13
- package/bin/roll +595 -53
- package/conventions/global/AGENTS.md +6 -6
- package/conventions/templates/backend-service/AGENTS.md +4 -4
- package/conventions/templates/cli/AGENTS.md +4 -4
- package/conventions/templates/frontend-only/AGENTS.md +4 -4
- package/conventions/templates/fullstack/AGENTS.md +4 -4
- package/lib/__pycache__/roll-loop-status.cpython-314.pyc +0 -0
- package/lib/roll-backlog.py +3 -3
- package/lib/roll-brief.py +2 -2
- package/lib/roll-help.py +3 -3
- package/lib/roll-home.py +5 -5
- package/lib/roll-loop-status.py +5 -5
- package/lib/roll-plan-validate.py +221 -0
- package/lib/roll-status.py +4 -4
- package/package.json +1 -1
- package/skills/roll-.changelog/SKILL.md +13 -13
- package/skills/roll-.dream/SKILL.md +21 -21
- package/skills/roll-brief/SKILL.md +12 -12
- package/skills/roll-build/SKILL.md +15 -15
- package/skills/roll-debug/SKILL.md +1 -1
- package/skills/roll-design/SKILL.md +46 -46
- package/skills/roll-doc/SKILL.md +10 -10
- package/skills/roll-fix/SKILL.md +7 -7
- package/skills/roll-idea/SKILL.md +4 -4
- package/skills/roll-loop/SKILL.md +11 -11
- package/skills/roll-onboard/SKILL.md +143 -0
- package/skills/roll-peer/SKILL.md +1 -1
- package/skills/roll-propose/SKILL.md +13 -13
- package/skills/roll-sentinel/SKILL.md +1 -1
- package/template/AGENTS.md +2 -2
- /package/template/{BACKLOG.md → .roll/backlog.md} +0 -0
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -46,7 +46,7 @@ The goal from here: full delivery, end to end — with humans on the loop, not i
|
|
|
46
46
|
npm install -g @seanyao/roll
|
|
47
47
|
roll setup # distribute conventions to all AI clients
|
|
48
48
|
cd my-project
|
|
49
|
-
roll init # create AGENTS.md +
|
|
49
|
+
roll init # create AGENTS.md + .roll/backlog.md + .roll/features/
|
|
50
50
|
roll loop on # optional: let the agent work unattended
|
|
51
51
|
```
|
|
52
52
|
|
|
@@ -58,16 +58,16 @@ roll loop on # optional: let the agent work unattended
|
|
|
58
58
|
|
|
59
59
|
| Topic | English | 中文 |
|
|
60
60
|
|-------|---------|------|
|
|
61
|
-
| Overview & architecture | [guide/en/overview.md](
|
|
62
|
-
| Engineering methodology | [guide/en/methodology.md](
|
|
63
|
-
| Loop (autonomous executor) | [guide/en/loop.md](
|
|
64
|
-
| Dream (nightly health scan) | [guide/en/dream.md](
|
|
65
|
-
| Peer (cross-agent review) | [guide/en/peer.md](
|
|
66
|
-
| Configuration (env vars) | [guide/en/configuration.md](
|
|
67
|
-
| Skill selection guide | [guide/en/skills.md](
|
|
68
|
-
| FAQ (troubleshooting) | [guide/en/faq.md](
|
|
69
|
-
| Domain model (DDD) | [domain/context-map.md](
|
|
70
|
-
| Engineering common sense | [practices/engineering-common-sense.md](
|
|
61
|
+
| Overview & architecture | [guide/en/overview.md](guide/en/overview.md) | [guide/zh/overview.md](guide/zh/overview.md) |
|
|
62
|
+
| Engineering methodology | [guide/en/methodology.md](guide/en/methodology.md) | [guide/zh/methodology.md](guide/zh/methodology.md) |
|
|
63
|
+
| Loop (autonomous executor) | [guide/en/loop.md](guide/en/loop.md) | [guide/zh/loop.md](guide/zh/loop.md) |
|
|
64
|
+
| Dream (nightly health scan) | [guide/en/dream.md](guide/en/dream.md) | [guide/zh/dream.md](guide/zh/dream.md) |
|
|
65
|
+
| Peer (cross-agent review) | [guide/en/peer.md](guide/en/peer.md) | [guide/zh/peer.md](guide/zh/peer.md) |
|
|
66
|
+
| Configuration (env vars) | [guide/en/configuration.md](guide/en/configuration.md) | [guide/zh/configuration.md](guide/zh/configuration.md) |
|
|
67
|
+
| Skill selection guide | [guide/en/skills.md](guide/en/skills.md) | [guide/zh/skills.md](guide/zh/skills.md) |
|
|
68
|
+
| FAQ (troubleshooting) | [guide/en/faq.md](guide/en/faq.md) | [guide/zh/faq.md](guide/zh/faq.md) |
|
|
69
|
+
| Domain model (DDD) | [domain/context-map.md](.roll/domain/context-map.md) | — |
|
|
70
|
+
| Engineering common sense | [practices/engineering-common-sense.md](guide/en/practices/engineering-common-sense.md) | — |
|
|
71
71
|
|
|
72
72
|
---
|
|
73
73
|
|
|
@@ -77,9 +77,9 @@ roll loop on # optional: let the agent work unattended
|
|
|
77
77
|
|---------|-------------|
|
|
78
78
|
| `roll setup [-f]` | First-time install or re-sync conventions to all AI clients |
|
|
79
79
|
| `roll update` | Upgrade to latest version |
|
|
80
|
-
| `roll init` | Initialize project: AGENTS.md +
|
|
80
|
+
| `roll init` | Initialize project: AGENTS.md + .roll/backlog.md + .roll/features/ |
|
|
81
81
|
| `roll status` | Show sync state, skill links, detected AI tools |
|
|
82
|
-
| `roll backlog` | Show pending tasks from
|
|
82
|
+
| `roll backlog` | Show pending tasks from .roll/backlog.md |
|
|
83
83
|
| `roll loop <on\|off\|now\|status\|monitor>` | 🤖 Manage autonomous executor |
|
|
84
84
|
| `roll brief` | 🤖 Show latest owner digest |
|
|
85
85
|
| `roll peer` | 🤖 Cross-agent code review |
|