Command line, npm, git, and shell basics. Activated when Claude runs Bash commands. Demystifies the terminal for non-technical users.
Explains terminal commands, npm, and git basics in simple analogies when Claude runs shell operations.
/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.
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)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.