Ask me what skills you need
What are you building?
Tell me what you're working on and I'll find the best agent skills for you.
# Install
curl -fsSL https://bun.sh/install | bash
# Init project
bun init
# Run TypeScript directly
bun run index.ts
# Watch mode (hard restart on change)
bun --watch index.ts
# Hot reload (preserves global state, no restart)
bun --hot server.ts
bun install # install all deps
bun add express # add dependency
bun add -d @types/node # add dev dependency
bun remove lodash # remove
bun update # update all
bun update --latest # ignore semver ranges
bunx prettier --write . # execute package binary (npx equivalent)
bun patch express # patch a dependency in node_modules
// root package.json
{ "workspaces": ["packages/*"] }
// child package.json
{ "dependencies": { "shared": "workspace:*" } }
bun install --filter "pkg-*" # install filtered workspaces
.env files auto-loaded in order: .env → .env.$(NODE_ENV) → .env.local
Bun.env.API_KEY // Bun-native
process.env.API_KEY // Node.js compat
import.meta.env.API_KEY
npx skills add fellipeutaka/denji --skill bunHow clear and easy to understand the SKILL.md instructions are, rated from 1 to 5.
Clear and well structured, with only minor parts that might need a second read.
How directly an agent can act on the SKILL.md instructions, rated from 1 to 5.
Mostly actionable with clear steps; only a few small gaps remain.