JavaScript essentials for vibecoders. Activated when Claude works with .js/.mjs/.jsx/.ts files. Covers the language concepts most commonly encountered during vibecoding.
Teaches core JavaScript concepts like arrow functions and async/await when working with .js or .ts files.
/plugin marketplace add dojocodinglabs/code-sensei/plugin install code-sensei@code-senseiThis skill inherits all available tools. When active, it can use any tool Claude has access to.
const = a constant, can't be reassigned (use this most of the time)let = a variable that can changevar = the old way, avoid it (mention only if Claude uses it)const instead of let here?"() => {}{}{ name: "Juan", age: 25 } — the object has two "drawers"[].map(), .filter(), .forEach() — the "assembly line" methodsawait) and the kitchen works on it while you chat. When it's ready, it arrives. You don't stand at the kitchen door waiting.await means "wait for this to finish before moving on."export puts a tool in the shared toolbox. import grabs it from there.`Hello ${name}`${}) that get filled in with real values.fetch() — asking another server for data (like calling a restaurant for delivery).then() / .catch() — what to do when the data arrives / if something goes wrongJSON.parse() / JSON.stringify() — translating between text and data objectsconsole.log() — leaving yourself a note to see what's happening (debugging)this keyword, generators, symbols, proxiesSearch, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.