From code-sensei
Teaches core programming fundamentals—variables, functions, conditionals, loops, data types—using analogies, key insights, quizzes, and structured progression. Activates on basic code structures for CodeSensei explanations.
npx claudepluginhub dojocodinglabs/code-sensei --plugin code-senseiThis skill uses the workspace's default tool permissions.
When explaining fundamental programming concepts to the user, use these guidelines:
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.
When explaining fundamental programming concepts to the user, use these guidelines:
= sign means "put this value in" not "equals" like in mathlet score = 10 and then score = 20, what is score now?"= (assignment) vs == or === (comparison)42 vs the text "42" — they look the same but the computer treats them differentlyEach concept builds on the previous. Don't explain loops before variables are understood.