From code-sensei
Teaches JavaScript essentials like const/let/var, arrow functions, objects, arrays, async/await, import/export for .js/.mjs/.jsx/.ts files during vibecoding.
npx claudepluginhub dojocodinglabs/code-sensei --plugin code-senseiThis skill uses the workspace's default tool permissions.
- **Analogy:** If HTML is the skeleton and CSS is the skin, JavaScript is the brain and muscles. It makes things HAPPEN — clicks, animations, data loading, form validation.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Guides MCP server integration in Claude Code plugins via .mcp.json or plugin.json configs for stdio, SSE, HTTP types, enabling external services as tools.
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, proxies