@seanyao/roll 2026.420.7 → 2026.421.3

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/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.420.7"
7
+ VERSION="2026.421.3"
8
8
  ROLL_HOME="${ROLL_HOME:-${HOME}/.roll}"
9
9
  ROLL_CONFIG="${ROLL_HOME}/config.yaml"
10
10
  ROLL_GLOBAL="${ROLL_HOME}/conventions/global"
@@ -1008,7 +1008,7 @@ cmd_reset() {
1008
1008
  # Update roll to latest version (npm update or git pull), then re-sync
1009
1009
  # ═══════════════════════════════════════════════════════════════════════════════
1010
1010
  _is_git_install() {
1011
- git -C "$ROLL_PKG_DIR" rev-parse --git-dir &>/dev/null 2>&1
1011
+ [[ -d "$ROLL_PKG_DIR/.git" ]]
1012
1012
  }
1013
1013
 
1014
1014
  cmd_update() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seanyao/roll",
3
- "version": "2026.420.7",
3
+ "version": "2026.421.3",
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"
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: roll-release
3
- description: Release skill for roll maintainers. Calculates next version (YYYY.MMDD.N format, auto-increments N from today's git tags), updates VERSION in bin/roll and package.json, commits, tags, and pushes to trigger npm auto-publish via GitHub Actions. Trigger: "release", "publish", "发版", "发布新版本".
3
+ description: "Release skill for roll maintainers. Calculates next version (YYYY.MMDD.N format, auto-increments N from today's git tags), updates VERSION in bin/roll and package.json, commits, tags, and pushes to trigger npm auto-publish via GitHub Actions. Trigger: release, publish, 发版, 发布新版本."
4
4
  ---
5
5
 
6
6
  # Release (roll-release)