From code-sensei
Teaches terminal basics: navigation, file operations, npm, git, env vars, pipes. Auto-activates when Claude runs Bash commands for non-technical users.
npx claudepluginhub dojocodinglabs/code-sensei --plugin code-senseiThis skill uses the workspace's default tool permissions.
- **Analogy:** The terminal is like texting your computer. Instead of clicking buttons, you type instructions and it responds. It's not scarier than that.
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 these as they appear in the user's session:
cd [folder] — "Change Directory" — walk into a folderls — "List" — see what's in the current folderpwd — "Print Working Directory" — "where am I right now?"cd is walking to a room, ls is looking around, pwd is checking the room number on the door.mkdir [name] — "Make Directory" — create a new foldertouch [file] — create a new empty filecp — copy, mv — move/rename, rm — deleterm is permanent. There's no trash can.npm install downloads those tools into your project.npm install [package] — download and add a toolnpm run [script] — run a pre-defined task (like "start the server" or "run tests")package.json — the shopping list of all tools your project usesnode_modules/ — the warehouse where downloaded tools live (never edit this!)git add — stage changes (put items on the "to save" pile)git commit — save a snapshot with a descriptiongit push — upload your snapshots to the cloud (GitHub)git pull — download the latest from the cloud.env file — where secrets live (API keys, database passwords)| (pipe) — sends output from one command as input to another, like a conveyor belt> — saves output to a file instead of showing it on screen&& — "do this AND THEN do that" (run two commands in sequence)sudo — "do this as administrator" (the master key)