chore: bun-native build + redis client, refresh deps, add agent tooling#25
Merged
Merged
Conversation
Adds CLAUDE.md, .agents/skills, and .claude/{commands,rules,skills} so
future Claude Code sessions have full project context, architecture
rules, and a /commit slash command. Switches build/start scripts to
bun-native (--target bun, minified) so production runs on bun
end-to-end instead of the previous Node-CJS bundle.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Pre-commit prettier aligned the path-aliases table; commit the whitespace-only changes so the working tree stays clean. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Swap direct ioredis usage in the cache and RedisClient helper to Bun's built-in RedisClient. Queue connection still returns ioredis because BullMQ requires an ioredis instance. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
bun --target bunfor build,bun --compilefor binaries) and add the agent tooling under.agents/and.claude/(CLAUDE.md, project rules, skills).RedisClient.getRedisClient()to Bun's built-inRedisClient.getQueueRedisClient()stays on ioredis because BullMQ requires an ioredis instance.Test plan
bun installandbun run typecheckpass.bun run buildproducesdist/serve.jsanddist/worker.js.bun run devboots API + worker;/healthreports redis healthy.storeRefreshToken/validateRefreshToken/revokeRefreshToken) against the Bun client.send-emailqueue enqueues and the worker processes a job (still on ioredis).🤖 Generated with Claude Code