release
Installation
SKILL.md
Release
Prepare and ship a new version of argue packages.
Pre-conditions
- Working tree is clean (
git statusshows no uncommitted changes) - You are on the
masterbranch - All CI checks pass locally (
npm run ci && npm run format:check)
If any pre-condition fails, fix it before proceeding. Do NOT skip checks.
Step 1 — Gather Context
Run these commands and record the output:
# Current unified version (root is the source of truth)
node -e "import('./package.json',{with:{type:'json'}}).then(m=>console.log('workspace:',m.default.version))"
Related skills