From code-sensei
Teaches reading error messages, troubleshooting, and fixing common frontend JavaScript, backend server, and database bugs. Activates on errors or user debugging requests.
npx claudepluginhub dojocodinglabs/code-sensei --plugin code-senseiThis skill uses the workspace's default tool permissions.
- **Analogy:** Debugging is detective work. Something isn't working, and you need to find out why. Every error message is a clue.
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.
Teach users to look for these three things in EVERY error:
Example:
TypeError: Cannot read property 'name' of undefined
at UserCard (src/components/UserCard.jsx:12)
Translation: "On line 12 of UserCard.jsx, you tried to get .name from something that doesn't exist yet."
Every error is a learning moment. When Claude fixes an error, explain:
This is where real engineering intuition is built.