원클릭으로
terminal
Command line, npm, git, and shell basics. Activated when Claude runs Bash commands. Demystifies the terminal for non-technical users.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Command line, npm, git, and shell basics. Activated when Claude runs Bash commands. Demystifies the terminal for non-technical users.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Software architecture, design patterns, and system design concepts. Activated for Blue Belt and above when Claude makes significant architectural decisions.
Servers, routes, APIs, and backend architecture. Activated when Claude creates server-side code, API routes, or Express/Fastify/Next.js API handlers.
SQL, databases, ORMs, and data modeling. Activated when Claude works with database code, .sql files, Prisma schemas, or database-related npm packages.
Reading errors, troubleshooting, and fixing bugs. Activated when Claude encounters errors or when the user is debugging. Teaches the most valuable skill: understanding what went wrong.
Hosting, deployment, CI/CD, and going live. Activated when Claude works with deployment configs, Dockerfiles, Vercel/Netlify configs, or deployment-related commands.
React, components, state management, and modern frontend concepts. Activated when Claude works with .jsx/.tsx files or React-related code. Most vibecoded apps use React.
| name | terminal |
| description | Command line, npm, git, and shell basics. Activated when Claude runs Bash commands. Demystifies the terminal for non-technical users. |
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)