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.
curl -O https://raw.githubusercontent.com/remyxai/outrider/main/.claude/commands/release.mdgit clone --depth 1 https://github.com/remyxai/outriderWrote 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.
[](https://agentmods.dev/commands/remyxai/outrider/release)<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>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.
| Model | Per session | Once 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 |
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.
What it actually says
Ship the Outrider release described by the arguments.
Arguments:
$1— new version tag,vX.Y.Zshape (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.
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.
- 8d ago First seen · 50 lines · 42 tokens per session scan A 99d407f1e466
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.
Other commands, from other repositories
land
Cadence-tick autonomous PR babysitter (CI-fix, resolve, converge, merge, close, release).
release-notes
Generate consistent, well-structured release notes from git history. Triggered on release tags following semver patterns (v..) to produce categorized changelog with breaking changes, features, fixes, and contributor attribution.
ship
Ship is the operational release-prep flow for a connected project repo.
release-plan
A release-planning command for a software change. It documents the release scope, rollback plan, gradual or full rollout, and monitoring before waiting for human approval.
release
Standalone SDK release command for the BUILD repo. Not a workspace phase — runs independently after any number of implement/redteam cycles. Handles PyPI publishing, documentation deployment, and CI management for the kailash Python SDK and its framework packages.
create-pr
Push the current branch and open a pull request into main with a structured description derived from the branch's commits and issue references.