# /release Prepare a release of systant. ## Instructions 1. Ensure working directory is clean (`git status`) 2. Run tests: `bun test` 3. Type check: `bunx tsc --noEmit` 4. Build binary: `bun build index.ts --compile --outfile dist/systant` 5. Ask user for version bump type (patch/minor/major) 6. Update version in package.json 7. Create git commit with message: "release: v{version}" 8. Create git tag: `v{version}` 9. Report next steps (push, publish, etc.) ## Prerequisites - All tests must pass - No TypeScript errors - Clean git working directory (or user confirms to proceed) ## Success Criteria - Binary built successfully - Version bumped in package.json - Git commit and tag created - Clear instructions for next steps