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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/code-sensei:terminalThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- **Analogy:** The terminal is like texting your computer. Instead of clicking buttons, you type instructions and it responds. It's not scarier than that.
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)npx claudepluginhub dojocodinglabs/code-sensei --plugin code-senseiInteractive step-by-step tutorials for learning GitHub Copilot CLI from scratch, with separate Developer and Non-Developer tracks and on-demand Q&A.
Cross-platform terminal copilot that detects OS/shell, runs commands via Desktop Commander, and explains results. Handles REPLs, dev servers, SSH, Docker, cloud CLIs, and error diagnosis.
Explains Git/GitHub terminology using cloud-folder analogies (Dropbox/Google Drive) for non-developers. Answers questions like "what is commit" or "commit이 뭐야?" and provides step-by-step guidance.