@seanyao/roll 2026.510.8 → 2026.510.9
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 +22 -9
- package/bin/roll +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## v2026.510.8
|
|
4
|
+
- **Fixed**: release.sh 自洽 — 内联 agent 检测和 changelog 同步,发版流程不依赖外部调用
|
|
5
|
+
- **Fixed**: roll release 命令重构 — 改为独立调用 roll-release skill,与 scripts/release.sh 解耦
|
|
6
|
+
- **Fixed**: GitHub Release workflow 加 fetch-depth: 0,确保历史 tag 可见
|
|
7
|
+
|
|
8
|
+
## v2026.510.7
|
|
9
|
+
- **Fixed**: 版本比较改用 sort -V,防止旧版本号被误判为最新
|
|
10
|
+
- **Fixed**: 版本更新后主动清缓存 — 检测到运行版本更新时自动清缓存,避免旧版本幽灵提示
|
|
11
|
+
- **Fixed**: Kimi CLI 解析修复 — 剥离 YAML frontmatter 中的 `---` 分隔符,避免调用时解析崩溃
|
|
12
|
+
- **Fixed**: dashboard 命令列表补全,`roll --help` 现在展示全部可用命令
|
|
13
|
+
- **Added**: `roll release` 命令补全到 usage() 帮助中
|
|
14
|
+
|
|
15
|
+
## v2026.510.6
|
|
16
|
+
- **Fixed**: Agent 调用层统一 — 移除所有 claude -p 硬编码,统一 agent 抽象层,支持 Claude/Kimi/Pi/Codex/OpenCode
|
|
17
|
+
- **Fixed**: pi/codex/opencode 支持补全 — _agent_run_skill/_peer_call 穷举所有 agent,未知 agent 给明确错误
|
|
18
|
+
- **Fixed**: kimi 非交互调用语法修正为 kimi --quiet -p,经实测验证
|
|
19
|
+
- **Fixed**: roll-build / roll-fix Phase 12 强制触发 roll-.changelog,确保 CHANGELOG 与 BACKLOG 同步
|
|
20
|
+
- **Added**: roll release 命令 — 在 roll CLI 内直接调用 roll-release skill
|
|
21
|
+
- **Added**: GitHub Release 自动创建 — tag push 后由 workflow 从 CHANGELOG diff 提取内容
|
|
22
|
+
|
|
23
|
+
## v2026.510.5
|
|
4
24
|
- **Added**: roll-loop — BACKLOG 自主执行器,支持调度、跨 Agent 路由和失败处理,让 AI 自主推进项目任务
|
|
5
25
|
- **Added**: roll-brief — Feature完成汇报、每日晨报、按需简报,一句话掌握项目状态和发布就绪情况
|
|
6
26
|
- **Added**: roll-.dream — 每晚代码架构健康巡检,自动产出 REFACTOR 条目,架构问题持续浮出水面
|
|
@@ -11,14 +31,7 @@
|
|
|
11
31
|
- **Added**: roll-debug 自动修复 — 诊断后若根因在项目源码内,自动进入 TCR 修复流程并回验
|
|
12
32
|
- **Added**: Changelog 自动生成 — 每次部署后自动更新,首次运行时回填全部历史记录
|
|
13
33
|
- **Added**: roll status/update 显示最近更新 — 运行 `roll status` 或 `roll update` 时展示最近 3 个版本的 changelog
|
|
14
|
-
- **Fixed**: roll-release 补齐 GitHub Release 创建步骤 —
|
|
15
|
-
- **Fixed**: Agent 调用层统一 — 移除所有 claude -p 硬编码,统一 agent 抽象层,支持 Claude/Kimi/Pi/Codex/OpenCode
|
|
16
|
-
- **Fixed**: Kimi CLI 解析修复 — 剥离 YAML frontmatter 中的 `---` 分隔符,避免 Kimi 调用时解析崩溃
|
|
17
|
-
- **Fixed**: 版本比较改用 sort -V,防止旧版本号被误判为最新
|
|
18
|
-
- **Fixed**: dashboard 命令列表补全,`roll --help` 现在展示全部可用命令
|
|
19
|
-
- **Fixed**: `roll release` 命令补全到 usage() 帮助中
|
|
20
|
-
- **Fixed**: 版本更新后主动清缓存 — 检测到当前运行版本更新时自动清缓存,避免旧版本幽灵提示
|
|
21
|
-
- **Fixed**: release.sh 自洽 — 内联 agent 检测和 changelog 同步,发版流程不再依赖外部调用
|
|
34
|
+
- **Fixed**: roll-release 补齐 GitHub Release 创建步骤 — 修复版本更新提醒从不生效的问题
|
|
22
35
|
|
|
23
36
|
## 2026.05.09
|
|
24
37
|
- **Added**: roll-peer 跨 Agent 代码评审 — 支持 Claude Code、Kimi CLI、DeepSeek TUI、Codex CLI 多工具协同评审 (by @seanyao)
|
package/bin/roll
CHANGED
|
@@ -4,7 +4,7 @@ set -euo pipefail
|
|
|
4
4
|
# Roll — AI Agent Convention Manager
|
|
5
5
|
# Single source of truth for how all AI coding agents behave.
|
|
6
6
|
|
|
7
|
-
VERSION="2026.510.
|
|
7
|
+
VERSION="2026.510.9"
|
|
8
8
|
ROLL_HOME="${ROLL_HOME:-${HOME}/.roll}"
|
|
9
9
|
ROLL_CONFIG="${ROLL_HOME}/config.yaml"
|
|
10
10
|
ROLL_GLOBAL="${ROLL_HOME}/conventions/global"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seanyao/roll",
|
|
3
|
-
"version": "2026.510.
|
|
3
|
+
"version": "2026.510.9",
|
|
4
4
|
"description": "Roll — Roll out features with AI agents",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "find tests/unit tests/integration -name '*.bats' | sort | xargs ./tests/helpers/bats-core/bin/bats"
|