Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 0 additions & 17 deletions .changeset/cruise-quota-pacing.md

This file was deleted.

10 changes: 10 additions & 0 deletions packages/agent-plugins/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @windyroad/agent-plugins

## 0.2.0

### Minor Changes

- 7c87fe5: Add `@windyroad/cruise` — token-quota pacing — and retire the seven-way throttle sync.

`@windyroad/cruise` is a self-calibrating token-quota throttle for Claude Code. It reads your rate-limit usage, measures your actual burn, and paces your tool calls so you glide onto each window's pace line and converge on the reset — instead of sprinting into a hard rate-limit stop mid-session. It reserves a weekly headroom for your other Claude surfaces, never blocks, and fails open. Knobs live in a config file (`.claude/cruise.config.json` per project or `~/.claude/cruise.config.json` per machine); `WR_QUOTA_THROTTLE_DISABLE=1` pauses it.

The seven governance plugins (architect, itil, jtbd, tdd, risk-scorer, style-guide, voice-tone) no longer ship the throttle — it now has a single home in `@windyroad/cruise`, installed as part of the default `npx @windyroad/agent-plugins` set.

## 0.1.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/agent-plugins/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@windyroad/agent-plugins",
"version": "0.1.6",
"version": "0.2.0",
"description": "One-command installer for all Windy Road AI agent plugins and skills",
"bin": {
"windyroad-agent-plugins": "./bin/install.mjs"
Expand Down
2 changes: 1 addition & 1 deletion packages/architect/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -123,5 +123,5 @@
}
},
"name": "wr-architect",
"version": "0.19.1"
"version": "0.20.0"
}
2 changes: 1 addition & 1 deletion packages/architect/.codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wr-architect",
"version": "0.19.1",
"version": "0.20.0",
"description": "Architecture decision enforcement for AI coding agents",
"author": {
"name": "Windy Road Technology",
Expand Down
10 changes: 10 additions & 0 deletions packages/architect/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @windyroad/architect

## 0.20.0

### Minor Changes

- 7c87fe5: Add `@windyroad/cruise` — token-quota pacing — and retire the seven-way throttle sync.

`@windyroad/cruise` is a self-calibrating token-quota throttle for Claude Code. It reads your rate-limit usage, measures your actual burn, and paces your tool calls so you glide onto each window's pace line and converge on the reset — instead of sprinting into a hard rate-limit stop mid-session. It reserves a weekly headroom for your other Claude surfaces, never blocks, and fails open. Knobs live in a config file (`.claude/cruise.config.json` per project or `~/.claude/cruise.config.json` per machine); `WR_QUOTA_THROTTLE_DISABLE=1` pauses it.

The seven governance plugins (architect, itil, jtbd, tdd, risk-scorer, style-guide, voice-tone) no longer ship the throttle — it now has a single home in `@windyroad/cruise`, installed as part of the default `npx @windyroad/agent-plugins` set.

## 0.19.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/architect/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@windyroad/architect",
"version": "0.19.1",
"version": "0.20.0",
"description": "Architecture decision enforcement for AI coding agents",
"bin": {
"windyroad-architect": "./bin/install.mjs"
Expand Down
2 changes: 1 addition & 1 deletion packages/cruise/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"schema_version": "2.0"
},
"name": "wr-cruise",
"version": "0.1.0"
"version": "0.2.0"
}
11 changes: 11 additions & 0 deletions packages/cruise/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# @windyroad/cruise

## 0.2.0

### Minor Changes

- 7c87fe5: Add `@windyroad/cruise` — token-quota pacing — and retire the seven-way throttle sync.

`@windyroad/cruise` is a self-calibrating token-quota throttle for Claude Code. It reads your rate-limit usage, measures your actual burn, and paces your tool calls so you glide onto each window's pace line and converge on the reset — instead of sprinting into a hard rate-limit stop mid-session. It reserves a weekly headroom for your other Claude surfaces, never blocks, and fails open. Knobs live in a config file (`.claude/cruise.config.json` per project or `~/.claude/cruise.config.json` per machine); `WR_QUOTA_THROTTLE_DISABLE=1` pauses it.

The seven governance plugins (architect, itil, jtbd, tdd, risk-scorer, style-guide, voice-tone) no longer ship the throttle — it now has a single home in `@windyroad/cruise`, installed as part of the default `npx @windyroad/agent-plugins` set.
4 changes: 2 additions & 2 deletions packages/cruise/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@windyroad/cruise",
"version": "0.1.0",
"description": "Cruise \u2014 mechanical token-quota pacing for Claude Code (self-calibrating burn throttle)",
"version": "0.2.0",
"description": "Cruise mechanical token-quota pacing for Claude Code (self-calibrating burn throttle)",
"type": "module",
"license": "MIT",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/itil/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -497,5 +497,5 @@
}
},
"name": "wr-itil",
"version": "0.58.0"
"version": "0.59.0"
}
10 changes: 10 additions & 0 deletions packages/itil/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @windyroad/problem

## 0.59.0

### Minor Changes

- 7c87fe5: Add `@windyroad/cruise` — token-quota pacing — and retire the seven-way throttle sync.

`@windyroad/cruise` is a self-calibrating token-quota throttle for Claude Code. It reads your rate-limit usage, measures your actual burn, and paces your tool calls so you glide onto each window's pace line and converge on the reset — instead of sprinting into a hard rate-limit stop mid-session. It reserves a weekly headroom for your other Claude surfaces, never blocks, and fails open. Knobs live in a config file (`.claude/cruise.config.json` per project or `~/.claude/cruise.config.json` per machine); `WR_QUOTA_THROTTLE_DISABLE=1` pauses it.

The seven governance plugins (architect, itil, jtbd, tdd, risk-scorer, style-guide, voice-tone) no longer ship the throttle — it now has a single home in `@windyroad/cruise`, installed as part of the default `npx @windyroad/agent-plugins` set.

## 0.58.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/itil/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@windyroad/itil",
"version": "0.58.0",
"version": "0.59.0",
"description": "ITIL-aligned IT service management for Claude Code (problem, and future incident/change skills)",
"bin": {
"windyroad-itil": "./bin/install.mjs"
Expand Down
2 changes: 1 addition & 1 deletion packages/jtbd/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,5 +90,5 @@
}
},
"name": "wr-jtbd",
"version": "0.12.15"
"version": "0.13.0"
}
10 changes: 10 additions & 0 deletions packages/jtbd/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @windyroad/jtbd

## 0.13.0

### Minor Changes

- 7c87fe5: Add `@windyroad/cruise` — token-quota pacing — and retire the seven-way throttle sync.

`@windyroad/cruise` is a self-calibrating token-quota throttle for Claude Code. It reads your rate-limit usage, measures your actual burn, and paces your tool calls so you glide onto each window's pace line and converge on the reset — instead of sprinting into a hard rate-limit stop mid-session. It reserves a weekly headroom for your other Claude surfaces, never blocks, and fails open. Knobs live in a config file (`.claude/cruise.config.json` per project or `~/.claude/cruise.config.json` per machine); `WR_QUOTA_THROTTLE_DISABLE=1` pauses it.

The seven governance plugins (architect, itil, jtbd, tdd, risk-scorer, style-guide, voice-tone) no longer ship the throttle — it now has a single home in `@windyroad/cruise`, installed as part of the default `npx @windyroad/agent-plugins` set.

## 0.12.15

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/jtbd/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@windyroad/jtbd",
"version": "0.12.15",
"version": "0.13.0",
"description": "Jobs-to-be-done enforcement for UI changes",
"bin": {
"windyroad-jtbd": "./bin/install.mjs"
Expand Down
2 changes: 1 addition & 1 deletion packages/risk-scorer/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -310,5 +310,5 @@
}
},
"name": "wr-risk-scorer",
"version": "0.16.6"
"version": "0.17.0"
}
10 changes: 10 additions & 0 deletions packages/risk-scorer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @windyroad/risk-scorer

## 0.17.0

### Minor Changes

- 7c87fe5: Add `@windyroad/cruise` — token-quota pacing — and retire the seven-way throttle sync.

`@windyroad/cruise` is a self-calibrating token-quota throttle for Claude Code. It reads your rate-limit usage, measures your actual burn, and paces your tool calls so you glide onto each window's pace line and converge on the reset — instead of sprinting into a hard rate-limit stop mid-session. It reserves a weekly headroom for your other Claude surfaces, never blocks, and fails open. Knobs live in a config file (`.claude/cruise.config.json` per project or `~/.claude/cruise.config.json` per machine); `WR_QUOTA_THROTTLE_DISABLE=1` pauses it.

The seven governance plugins (architect, itil, jtbd, tdd, risk-scorer, style-guide, voice-tone) no longer ship the throttle — it now has a single home in `@windyroad/cruise`, installed as part of the default `npx @windyroad/agent-plugins` set.

## 0.16.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/risk-scorer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@windyroad/risk-scorer",
"version": "0.16.6",
"version": "0.17.0",
"description": "Pipeline risk scoring, commit/push gates, and secret leak detection",
"bin": {
"windyroad-risk-scorer": "./bin/install.mjs"
Expand Down
2 changes: 1 addition & 1 deletion packages/style-guide/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,5 +79,5 @@
}
},
"name": "wr-style-guide",
"version": "0.4.9"
"version": "0.5.0"
}
10 changes: 10 additions & 0 deletions packages/style-guide/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @windyroad/style-guide

## 0.5.0

### Minor Changes

- 7c87fe5: Add `@windyroad/cruise` — token-quota pacing — and retire the seven-way throttle sync.

`@windyroad/cruise` is a self-calibrating token-quota throttle for Claude Code. It reads your rate-limit usage, measures your actual burn, and paces your tool calls so you glide onto each window's pace line and converge on the reset — instead of sprinting into a hard rate-limit stop mid-session. It reserves a weekly headroom for your other Claude surfaces, never blocks, and fails open. Knobs live in a config file (`.claude/cruise.config.json` per project or `~/.claude/cruise.config.json` per machine); `WR_QUOTA_THROTTLE_DISABLE=1` pauses it.

The seven governance plugins (architect, itil, jtbd, tdd, risk-scorer, style-guide, voice-tone) no longer ship the throttle — it now has a single home in `@windyroad/cruise`, installed as part of the default `npx @windyroad/agent-plugins` set.

## 0.4.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/style-guide/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@windyroad/style-guide",
"version": "0.4.9",
"version": "0.5.0",
"description": "Style guide enforcement for CSS and UI components",
"bin": {
"windyroad-style-guide": "./bin/install.mjs"
Expand Down
2 changes: 1 addition & 1 deletion packages/tdd/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,5 +101,5 @@
}
},
"name": "wr-tdd",
"version": "0.4.8"
"version": "0.5.0"
}
10 changes: 10 additions & 0 deletions packages/tdd/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @windyroad/tdd

## 0.5.0

### Minor Changes

- 7c87fe5: Add `@windyroad/cruise` — token-quota pacing — and retire the seven-way throttle sync.

`@windyroad/cruise` is a self-calibrating token-quota throttle for Claude Code. It reads your rate-limit usage, measures your actual burn, and paces your tool calls so you glide onto each window's pace line and converge on the reset — instead of sprinting into a hard rate-limit stop mid-session. It reserves a weekly headroom for your other Claude surfaces, never blocks, and fails open. Knobs live in a config file (`.claude/cruise.config.json` per project or `~/.claude/cruise.config.json` per machine); `WR_QUOTA_THROTTLE_DISABLE=1` pauses it.

The seven governance plugins (architect, itil, jtbd, tdd, risk-scorer, style-guide, voice-tone) no longer ship the throttle — it now has a single home in `@windyroad/cruise`, installed as part of the default `npx @windyroad/agent-plugins` set.

## 0.4.8

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/tdd/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@windyroad/tdd",
"version": "0.4.8",
"version": "0.5.0",
"description": "TDD state machine enforcement (Red-Green-Refactor cycle)",
"bin": {
"windyroad-tdd": "./bin/install.mjs"
Expand Down
2 changes: 1 addition & 1 deletion packages/voice-tone/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -123,5 +123,5 @@
}
},
"name": "wr-voice-tone",
"version": "0.6.7"
"version": "0.7.0"
}
10 changes: 10 additions & 0 deletions packages/voice-tone/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @windyroad/voice-tone

## 0.7.0

### Minor Changes

- 7c87fe5: Add `@windyroad/cruise` — token-quota pacing — and retire the seven-way throttle sync.

`@windyroad/cruise` is a self-calibrating token-quota throttle for Claude Code. It reads your rate-limit usage, measures your actual burn, and paces your tool calls so you glide onto each window's pace line and converge on the reset — instead of sprinting into a hard rate-limit stop mid-session. It reserves a weekly headroom for your other Claude surfaces, never blocks, and fails open. Knobs live in a config file (`.claude/cruise.config.json` per project or `~/.claude/cruise.config.json` per machine); `WR_QUOTA_THROTTLE_DISABLE=1` pauses it.

The seven governance plugins (architect, itil, jtbd, tdd, risk-scorer, style-guide, voice-tone) no longer ship the throttle — it now has a single home in `@windyroad/cruise`, installed as part of the default `npx @windyroad/agent-plugins` set.

## 0.6.7

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/voice-tone/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@windyroad/voice-tone",
"version": "0.6.7",
"version": "0.7.0",
"description": "Voice and tone enforcement for user-facing copy",
"bin": {
"windyroad-voice-tone": "./bin/install.mjs"
Expand Down