Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Terminal

ASecurity

Command line, npm, git, and shell basics. Activated when Claude runs Bash commands. Demystifies the terminal for non-technical users.

14 stars
0 votes
0 copies
4 views
Added 2/8/2026
developmentgoshellbashnodegitapidatabase

Works with

terminalcliapi

Security Analysis

A92/100
mediumInstalls packages at runtime which could introduce malicious dependencies

Scanned 2/12/2026

Install to Claude Code

$npx -y skills add DojoCodingLabs/code-sensei --skill terminal --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Terminal?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Terminal
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/dojocodinglabs-terminal/badge)](https://www.skillsdirectory.com/skills/dojocodinglabs-terminal)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: terminal
description: >
  Command line, npm, git, and shell basics. Activated when Claude runs Bash commands.
  Demystifies the terminal for non-technical users.
---

# Terminal & Command Line — CodeSensei Teaching Module

## The Terminal
- **Analogy:** The terminal is like texting your computer. Instead of clicking buttons, you type instructions and it responds. It's not scarier than that.
- **Key insight:** Everything you can do by clicking in a graphical interface, you can do faster by typing in the terminal. Developers prefer typing because it's faster and scriptable.

## Essential Commands
Teach these as they appear in the user's session:

### Navigation
- `cd [folder]` — "Change Directory" — walk into a folder
- `ls` — "List" — see what's in the current folder
- `pwd` — "Print Working Directory" — "where am I right now?"
- **Analogy:** You're in a building. `cd` is walking to a room, `ls` is looking around, `pwd` is checking the room number on the door.

### File Operations
- `mkdir [name]` — "Make Directory" — create a new folder
- `touch [file]` — create a new empty file
- `cp` — copy, `mv` — move/rename, `rm` — delete
- **⚠️ Teach:** `rm` is permanent. There's no trash can.

### npm (Node Package Manager)
- **Analogy:** An app store for code. Other developers built tools and shared them. `npm install` downloads those tools into your project.
- `npm install [package]` — download and add a tool
- `npm run [script]` — run a pre-defined task (like "start the server" or "run tests")
- `package.json` — the shopping list of all tools your project uses
- `node_modules/` — the warehouse where downloaded tools live (never edit this!)

### git (Version Control)
- **Analogy:** A time machine for your code. Every "commit" is a save point you can go back to.
- `git add` — stage changes (put items on the "to save" pile)
- `git commit` — save a snapshot with a description
- `git push` — upload your snapshots to the cloud (GitHub)
- `git pull` — download the latest from the cloud
- **Key insight:** Git exists because code breaks. It lets you undo mistakes by going back to when things worked.

### Environment Variables
- **Analogy:** Secret notes that your app can read but aren't written in the code itself. Like a password you whisper instead of writing on a whiteboard.
- `.env` file — where secrets live (API keys, database passwords)
- **⚠️ Teach:** NEVER commit .env files to git. That's like posting your passwords publicly.

## Scary-Looking but Simple
- `|` (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)

Attribution

DojoCodingLabsDojoCodingLabs
View sourceMore from DojoCodingLabs →
SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Related Skills

Browser Extension Developer

Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.

284722 votes

Seo Optimizer

SEO optimization with keyword analysis, readability assessment, technical validation, content quality. Use for search rankings, blog posts, content audits, or encountering keyword density, readability scores, meta tags, schema markup errors.

2192 votes

Google Official Seo Guide

Official Google SEO guide covering search optimization, best practices, Search Console, crawling, indexing, and improving website search visibility based on official Google documentation

1862 votes

Tanstack Start

Build a full-stack TanStack Start app on Cloudflare Workers from scratch — SSR, file-based routing, server functions, D1+Drizzle, better-auth, Tailwind v4+shadcn/ui. Use whenever the user mentions TanStack Start, asks to scaffold a full-stack Cloudflare app with SSR, wants an SSR dashboard, or asks for a React 19 + Cloudflare Workers app with file-based routing and server functions — even if they don't name TanStack Start specifically. No template repo — Claude generates every file fresh per ...

9881 votes

Pentest

PTES-aligned adversarial security audit for backend, frontend, and mobile applications. Produces a CVSS-scored Hacker Report with verified PoCs and phased remediation.

5491 votes
View all in development →