grackle: Skill for Claude Code

.claude/skills/rush-change/SKILL.md

rush-change is a skill for Claude Code from nick-pape/grackle. It costs 27 tokens per session (1,028 once invoked), scanned A, original, MIT.

A command that creates a Rush change file for the current branch. Rush manages JavaScript repositories containing multiple packages, while the file describes changes that may need a release.

In plain words
What is it for?
Verifying whether a release note is required and generating the appropriate change file and version-bump description.
Why use it?
It avoids false alarms when Rush detects a lockstep package change even though the actual code change is elsewhere or there is no real difference.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is nick-pape/grackle's own configuration. It tells Claude Code how to work on grackle itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything grackle configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is node common/scripts/install-run-rush.js change --verify 2>&1.

Reuse

Borrowing it

Nothing to install: this file belongs to nick-pape/grackle. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/nick-pape/grackle/main/.claude/skills/rush-change/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/nick-pape/grackle

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for rush-change

README.md
[![agentmods](https://agentmods.dev/badge/skills/nick-pape/grackle/rush-change.svg)](https://agentmods.dev/skills/nick-pape/grackle/rush-change)
Your own site
<a href="https://agentmods.dev/skills/nick-pape/grackle/rush-change"><img src="https://agentmods.dev/badge/skills/nick-pape/grackle/rush-change.svg" alt="Measured on agentmods" height="20"></a>
Per session 27 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,028 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00027 $0.01028
Opus 5 $0.00014 $0.00514
Sonnet 5 $0.00005 $0.00206
Haiku 4.5 $0.00003 $0.00103

Measured 7d ago against content hash 8b9451cec425, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

rush-change scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/rush-change/SKILL.md · 113 lines

How it starts

The opening of the file, as written. The whole thing — 113 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Rush Change — Smart Change File Generator

This skill generates a Rush change file for the current branch. It detects merge-commit false positives (where rush change --verify flags packages that have no real diff against main) and handles them automatically.

Important: How Rush Lockstep Versioning Works

All publishable packages use lockstep versioning — they share the same version number. Rush will always flag @grackle-ai/cli as the package needing a change file, regardless of which package you actually changed. This is because Rush picks one representative package from the lockstep group.

The change file is always created for @grackle-ai/cli, but the comment and bump type should describe ALL the changes in your PR across ALL packages. For example, if you changed packages/server/ and packages/mcp/, the change file is still for @grackle-ai/cli but the comment should describe the server and MCP changes.

Step 1: Check if Rush Requires a Change File

git fetch origin
node common/scripts/install-run-rush.js change --verify 2>&1

If this passes (exit 0), no change file is needed. Report success and stop.

Step 2: Determine Real vs False-Positive Changes

Rush says a change file is needed. Now determine whether publishable packages actually changed, or if this is a merge-commit false positive.

Get the net committed diff against main (explicit two-ref diff — compares branch tip to origin/main, ignoring merge commit artifacts and uncommitted changes):

git diff --name-only origin/main HEAD

Check if any of the changed files fall within a publishable package directory:

  • packages/cli/
  • packages/common/
  • packages/powerline/
  • packages/server/
  • packages/adapter-sdk/
  • packages/mcp/

Case A: Real changes in publishable packages

If the diff touches publishable package directories, this is a real change that needs a proper change file.

  1. Examine the diff to determine the appropriate bump type:
    • patch — bug fixes, internal refactoring, dependency updates, test-only changes
    • minor — new features, new APIs, backwards-compatible additions
    • Never use major — CI blocks major bumps (pre-1.0)
    • Never use none for real changes — all publishable packages ship together in lockstep, so any real change (even test-only) should be patch or minor

Read the full file on GitHub · 113 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 113 lines · 27 tokens per session scan A 8b9451cec425

Subscribe to this mod's changes

rush-change is a skill published in the GitHub repository nick-pape/grackle (21 stars, last pushed 2mo ago), licensed MIT. It adds 27 tokens to every session and 1,028 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.