SQL, databases, ORMs, and data modeling. Activated when Claude works with database code, .sql files, Prisma schemas, or database-related npm packages.
Generates database schemas, SQL queries, and ORM code for PostgreSQL, SQLite, and MongoDB integration.
/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.
SELECT — "Show me data" → SELECT * FROM users (show all users)INSERT — "Add new data" → INSERT INTO users (name, email) VALUES ('Juan', 'juan@email.com')UPDATE — "Change existing data" → UPDATE users SET name = 'Juan C' WHERE id = 1DELETE — "Remove data" → DELETE FROM users WHERE id = 1WHERE — "But only the ones that match this condition"prisma.user.findMany() → becomes SELECT * FROM usersprisma.user.create({ data: { name: "Juan" } }) → becomes INSERT INTO users...Search, 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.