@seanyao/roll 2026.421.2 → 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 +2 -2
- package/package.json +1 -1
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.421.
|
|
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
|
-
|
|
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.421.
|
|
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"
|