| name | release-helper |
| description | Prepare a safe Local Coding Agent release build, including version checks, tests, and changelog. |
Release Helper
Use this to cut a release without breaking the stable version.
Rules
- Never commit secrets, tokens, logs with sensitive data, or the tunnel client.
- Do not tag or publish without explicit maintainer confirmation.
Steps
- Confirm the target public version.
- Run the checks:
node -v (>= 18)
npm --prefix server install
npm --prefix server run test:agent
npm --prefix server run test:pro
npm --prefix server run test:security
node scripts/validate-skills.mjs
- Verify version references:
- Version constant in
server/server.mjs and server/package.json.
- Tray app version if a Windows build is included.
- Update
CHANGELOG.md with a dated, clearly labeled section.
- Confirm public docs do not expose internal-only experiments.
- Only after approval: commit, tag, and push.
Report Back
Return the version, which checks passed or failed, the changelog entry, and any
remaining blocker before publishing.