AI SummaryThis Cursor rules booster enforces consistent Bun package manager usage across a project, preventing dependency management conflicts and ensuring team alignment on tooling. It benefits developers working in Bun-based projects who want to eliminate confusion from mixed package managers.
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to add the "likelemba-platform — Cursor Rules" prompt rules to my project. Repository: https://github.com/elvic-group/likelemba-platform Please read the repo to find the rules/prompt file, then: 1. Download it to the correct location (.cursorrules, .windsurfrules, .github/prompts/, or project root — based on the file type) 2. If there's an existing rules file, merge the new rules in rather than overwriting 3. Confirm what was added
Description
Use Bun commands when installing or running to maintain consistent package management
Requirements
• Install dependencies with bun add [package] or bun add -D [package]. • Run scripts using bun [script] (exception: for build and test scripts use bun run build or bun run test). • For standalone scripts use bun path/to/script.ts instead of node, ts-node or tsx. • For one-off commands, use bun x [command] instead of npx. • Install Shadcn components via bun ui [component-name]. • Update user schema by editing src/lib/auth.ts then bun db:auth.
Examples
<example> bun add axios bun dev bun x vitest </example> <example type="invalid"> npm install axios npm run dev npx vitest </example>
Bun Package Manager Rules
<author>blefnk/rules</author> <version>1.0.0</version>
Context
• For installing dependencies and running scripts in this project • Eliminates mixing other package managers
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster
Works With
Any AI assistant that accepts custom rules or system prompts