outrider: Command for Claude Code

.claude/commands/release.md

release is a command for Claude Code from remyxai/outrider. It costs 42 tokens per session (541 once invoked), scanned A, original, Apache-2.0.

A release command for the Outrider GitHub repository. It tags a merged change, updates the v1 version pointer, pushes both tags, and creates a GitHub Release.

In plain words
What is it for?
Use it after a pull request changes action behavior and is merged into main. Provide the new version, the merge commit's ID, and optionally the release notes.
Why use it?
It prevents release steps from being missed or pointing to different commits. It also makes the release visible in GitHub's Releases section, not just in the Git history.

Command for Claude Code

Written for Claude Code: argument-hint in frontmatter. Also seen: positional $N argument.

This is remyxai/outrider's own configuration. It tells Claude Code how to work on outrider 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 outrider configures →

Reuse

Borrowing it

Nothing to install: this file belongs to remyxai/outrider. 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/remyxai/outrider/main/.claude/commands/release.md
Clone the repo
git clone --depth 1 https://github.com/remyxai/outrider

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 release

README.md
[![agentmods](https://agentmods.dev/badge/commands/remyxai/outrider/release.svg)](https://agentmods.dev/commands/remyxai/outrider/release)
Your own site
<a href="https://agentmods.dev/commands/remyxai/outrider/release"><img src="https://agentmods.dev/badge/commands/remyxai/outrider/release.svg" alt="Measured on agentmods" height="20"></a>
Per session 42 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 541 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.00042 $0.00541
Opus 5 $0.00021 $0.00270
Sonnet 5 $0.00008 $0.00108
Haiku 4.5 $0.00004 $0.00054

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

Security

Grade A, and why

release 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 8d 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/commands/release.md · 50 lines

What it actually says

Ship the Outrider release described by the arguments.

Arguments:

  • $1 — new version tag, vX.Y.Z shape (required)
  • $2 — merge commit SHA on origin/main (required)
  • $3 — release notes body (optional; prompt for content if missing)

Run this sequence in order and report each step's outcome. Do not skip any step, especially gh release create — a bare git push origin <tag> does not surface in the GitHub Releases UI.

# 1. Sync main and confirm the merge SHA is on it
git fetch origin main --tags
git rev-parse "$2"

# 2. Tag the new version at the merge commit
git tag "$1" "$2"

# 3. Move the @v1 moving pointer to the same commit
git tag -f v1 "$2"

# 4. Push the new tag + force-push the moved v1 pointer
git push origin "$1"
git push origin --force refs/tags/v1

# 5. Create the GitHub Release (the step everyone forgets)
gh release create "$1" --repo remyxai/outrider \
  --target "$2" \
  --title "$1" \
  --notes "${3:-<release notes>}"

# 6. Sanity check
gh release view "$1" --repo remyxai/outrider --json name,tagName,url,createdAt
git rev-parse v1 "$1"  # Both SHAs should match "$2"

Release notes conventions:

  • Sections: ## New, ## Fixed, ## Compatibility. Skip sections that don't apply.
  • Reference each landed PR by number: **<name>** ([PR #NN](url)) — one-paragraph summary.
  • Public repo — terse. No Linear IDs, no dollar figures, no customer names.

Failure modes to catch:

  • Tag pushed but no gh release create → GitHub UI shows no release.
  • v1 didn't move → old customers keep pinning the previous release.
  • Wrong SHA in tag → delete + re-tag: git tag -d "$1" && git push origin ":$1" then re-run from step 2.
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. 8d ago First seen · 50 lines · 42 tokens per session scan A 99d407f1e466

Subscribe to this mod's changes

release is a command published in the GitHub repository remyxai/outrider (20 stars, last pushed 4d ago), licensed Apache-2.0. It adds 42 tokens to every session and 541 once invoked, about $0.0002 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.