From code-sensei
Teaches backend concepts: servers (Express.js), routes/endpoints with HTTP methods, REST APIs, request/response cycles, middleware, .env security, and CORS. Activates for server-side code, API routes, or Express/Fastify/Next.js handlers.
npx claudepluginhub dojocodinglabs/code-sensei --plugin code-senseiThis skill uses the workspace's default tool permissions.
- **Analogy:** If your website is a restaurant, the frontend is the dining room (what customers see) and the backend is the kitchen (where the real work happens). The backend stores data, processes requests, handles logins, and talks to databases.
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.
/api/users is the Users department. /api/products is Products. Each one handles specific requests.GET — "Give me data" (reading)POST — "Here's new data, save it" (creating)PUT/PATCH — "Update this existing data" (editing)DELETE — "Remove this data" (deleting)User clicks "Submit"
↓
Frontend sends HTTP request to backend
↓
Backend receives request, processes it
↓
Backend talks to database if needed
↓
Backend sends response back
↓
Frontend displays the result
.env files — where secrets live, read by the server but never sent to users