release

Use this skill for EVERY ClawRouter release. Enforces the full checklist — version sync, CHANGELOG, blockrun server constant, build, tests, npm publish, git tag, GitHub release. No step can be skipped.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "release" with this command: npx skills add blockrunai/clawrouter/blockrunai-clawrouter-release

ClawRouter Release Checklist

This skill is mandatory for every release. Execute every step in order. Do not skip.

Step 1: Confirm the New Version

Read the current version:

cat package.json | grep '"version"'

Ask: "What version are we releasing?" Confirm it follows semver and is higher than current.


Step 2: Update package.json Version

Edit package.json — bump "version" to the new version.


Step 3: Write CHANGELOG Entry

Open CHANGELOG.md. Add a new section at the top (after the header) in this format:

## v{VERSION} — {DATE}

- **Feature/Fix name** — description
- **Feature/Fix name** — description

Rules:

  • Date format: Mar 8, 2026
  • One bullet per logical change
  • Every bullet must be present — no "see git log"
  • Include all changes since the previous release

Step 4: Sync CURRENT_CLAWROUTER_VERSION in blockrun

This is the most commonly forgotten step.

File: /Users/vickyfu/Documents/blockrun-web/blockrun/src/app/api/v1/chat/completions/route.ts

Find this line:

const CURRENT_CLAWROUTER_VERSION = "x.y.z";

Update it to match the new version. Verify with:

grep CURRENT_CLAWROUTER_VERSION /Users/vickyfu/Documents/blockrun-web/blockrun/src/app/api/v1/chat/completions/route.ts

Do not skip this. It controls the update nudge shown to users running outdated versions.


Step 5: Build

npm run build

Fix any TypeScript or build errors before proceeding.


Step 6: Run Tests

npm test
npm run typecheck
npm run lint

All must pass. Fix failures before proceeding.


Step 7: Commit Everything

Stage and commit:

git add package.json CHANGELOG.md
git commit -m "chore: bump version to {VERSION}"

If blockrun's route.ts was updated, commit that separately in the blockrun repo.


Step 8: Push to GitHub

git push origin main

Step 9: Create Git Tag

git tag v{VERSION}
git push origin v{VERSION}

Step 10: Create GitHub Release

gh release create v{VERSION} \
  --title "v{VERSION}" \
  --notes "$(sed -n '/^## v{VERSION}/,/^## v[0-9]/p' CHANGELOG.md | head -n -1)"

Verify the release on GitHub: https://github.com/BlockRunAI/ClawRouter/releases

The release notes must match the CHANGELOG entry exactly.


Step 11: Publish to npm

npm publish --access public

Verify: https://npmjs.com/package/@blockrun/clawrouter

Expected output: + @blockrun/clawrouter@{VERSION}


Step 12: Final Verification

Run this checklist to confirm everything is in sync:

# 1. package.json version
cat package.json | grep '"version"'

# 2. CHANGELOG has the entry
head -10 CHANGELOG.md

# 3. blockrun CURRENT_CLAWROUTER_VERSION
grep CURRENT_CLAWROUTER_VERSION /Users/vickyfu/Documents/blockrun-web/blockrun/src/app/api/v1/chat/completions/route.ts

# 4. npm package is live
npm view @blockrun/clawrouter version

# 5. GitHub tag exists
git tag | grep v{VERSION}

# 6. GitHub release exists
gh release view v{VERSION}

All 6 must match the new version. If any mismatch, fix before declaring the release done.


Common Mistakes (Never Repeat These)

MistakePrevention
Forgot to update CURRENT_CLAWROUTER_VERSION in blockrunStep 4 — always check
CHANGELOG entry missing or incompleteStep 3 — write it before building
npm publish before tests passSteps 5-6 must precede Step 11
GitHub release notes emptyStep 10 — extract from CHANGELOG
Git tag not pushedStep 9 — push tag separately
docs not reflecting new featuresUpdate docs in same PR as the feature

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

clawrouter

No summary provided by upstream source.

Repository SourceNeeds Review
General

imagegen

No summary provided by upstream source.

Repository SourceNeeds Review
General

x-api

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

Universal Release

Universal release workflow. Auto-detects version files and changelogs. Supports Node.js, Python, Rust, Claude Plugin, and generic projects. Use when user say...

Registry SourceRecently Updated
590Profile unavailable