@seanyao/roll 2026.507.3 → 2026.508.2

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.507.3"
7
+ VERSION="2026.508.2"
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.507.3",
3
+ "version": "2026.508.2",
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"
@@ -2,7 +2,6 @@
2
2
  hidden: true
3
3
  name: roll-.changelog
4
4
  license: MIT
5
- model: haiku
6
5
  allowed-tools: "Read, Edit, Write, Bash(git:*)"
7
6
  description: After build completion, extracts completed Stories from BACKLOG.md to generate CHANGELOG.md. Auto-triggered after successful deploy, keeping the external changelog in sync with the internal backlog.
8
7
  ---
@@ -2,7 +2,6 @@
2
2
  hidden: true
3
3
  name: roll-.review
4
4
  license: MIT
5
- model: sonnet
6
5
  allowed-tools: "Read, Bash(git:*)"
7
6
  description: Self code review step in the TCR workflow. Runs after each micro-step is completed and before commit, checking code quality, security, and design issues.
8
7
  ---
@@ -1,7 +1,6 @@
1
1
  ---
2
2
  name: roll-design
3
3
  license: MIT
4
- model: sonnet
5
4
  allowed-tools: "Read, Edit, Write, Glob, Grep, Bash(git:*), WebSearch, WebFetch, Skill"
6
5
  description: Unified entry for discussion, design and planning. Explores options when uncertain, designs solutions with DDD modeling, splits into INVEST-compliant user stories, and writes to BACKLOG.md. Use when user wants to discuss approaches, design solutions, plan features, or create stories.
7
6
  ---
@@ -1,7 +1,6 @@
1
1
  ---
2
2
  name: roll-doctor
3
3
  license: MIT
4
- model: haiku
5
4
  allowed-tools: "Read, Bash, Edit"
6
5
  description: "Diagnose Roll toolchain health. Checks skill files, YAML frontmatter, symlinks, conventions sync, template integrity, and config validity."
7
6
  ---
@@ -1,7 +1,6 @@
1
1
  ---
2
2
  name: roll-jot
3
3
  license: MIT
4
- model: haiku
5
4
  allowed-tools: "Read, Edit"
6
5
  description: "Fast backlog capture. Analyzes a short description, classifies it as bug or idea, and appends it to BACKLOG.md with an auto-incremented ID."
7
6
  ---
@@ -1,7 +1,6 @@
1
1
  ---
2
2
  name: roll-notes
3
3
  license: MIT
4
- model: haiku
5
4
  allowed-tools: "Read, Edit, Write, Bash(date:*)"
6
5
  description: "Project diary skill. Records development moments — successes, failures, discoveries — appended chronologically to a daily notes file."
7
6
  ---
@@ -1,7 +1,6 @@
1
1
  ---
2
2
  name: roll-release
3
3
  license: MIT
4
- model: haiku
5
4
  allowed-tools: "Read, Edit, Bash(git:*), Bash(npm:*), Bash(sed:*), Bash(date:*)"
6
5
  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, 发版, 发布新版本."
7
6
  ---
@@ -1,7 +1,6 @@
1
1
  ---
2
2
  name: roll-research
3
3
  license: MIT
4
- model: opus
5
4
  allowed-tools: "WebFetch, WebSearch, Read, Write, Bash(python3:*), Bash(curl:*), Bash(pip:*), Agent"
6
5
  description: |
7
6
  HV (Horizontal-Vertical) Analysis deep research skill for products, companies, concepts, technologies, or people. Dual-axis: vertical traces full lifecycle narrative from origin to present; horizontal compares against competitors at current time; cross-axis produces new insights. Output: professionally formatted PDF report.
@@ -1,7 +1,6 @@
1
1
  ---
2
2
  name: roll-spar
3
3
  license: MIT
4
- model: sonnet
5
4
  allowed-tools: "Read, Edit, Write, Bash, Agent, Skill"
6
5
  description: Adversarial TDD mode with Attacker/Defender agents. Attacker writes tests to break the system, Defender writes minimal code to pass. Use for high-risk logic like auth, payments, data integrity, or complex state machines.
7
6
  ---