terminal

A teaching module for command-line work, where developers control a computer by typing commands. It covers navigation, file operations, npm—the package manager for JavaScript projects—and basic shell and Git usage.

In plain words
What is it for?
Learning commands such as `cd`, `ls`, `pwd`, `mkdir`, `cp`, `mv`, and `rm`, plus basic npm, shell, and Git workflows.
Why use it?
It makes terminal tasks easier to understand for people who are new to text-based computer tools. It also highlights that deleting with `rm` is permanent.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/dojocodinglabs/code-sensei/terminal
Any agent
npx skills add DojoCodingLabs/code-sensei --skill terminal
Clone the repo
git clone --depth 1 https://github.com/DojoCodingLabs/code-sensei

Made for: Claude Code, Codex.

Per session 31 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 693 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00031 $0.00693
Opus 5 $0.00015 $0.00347
Sonnet 5 $0.00006 $0.00139
Haiku 4.5 $0.00003 $0.00069

Measured 2d ago against content hash 0840f41b7519, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

terminal scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

  • terminal — 100% identical, 0 lines differ
skills/terminal/SKILL.md · 54 lines

How it starts

The opening of the file, as written. The whole thing — 54 lines — stays where its author put it; the contents beside it link to each section on GitHub.

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.

Read the full file on GitHub · 54 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 54 lines · 31 tokens per session scan A 0840f41b7519

Subscribe to this mod's changes

terminal is a skill published in the GitHub repository DojoCodingLabs/code-sensei (14 stars, last pushed 2mo ago), licensed MIT. It adds 31 tokens to every session and 693 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

ai-meeting

Run structured AI meetings for plans, product ideas, technical designs, business decisions, feature proposals, and strategy choices. Use when the user wants an AI meeting, AI roundtable, multi-agent discussion, debate, proposal review, plan review, decision review, or wants Codex, Claude Code, and other CLI agents to…

ccplugins/awesome-claude-code-plugins · 120 tokens

fastapi-app

Bootstrap a new FastAPI backend with async SQLAlchemy 2.0, asyncpg, Alembic, Pydantic v2, and no deprecated APIs. Use when the user wants to start, scaffold, or set up a new FastAPI service, a Python REST API, an async backend, or asks to "create a new fastapi app" or "new python backend". Handles JWT auth, layered…

ccplugins/awesome-claude-code-plugins · 103 tokens

flutter-app

Bootstrap a new Flutter mobile app with clean architecture, Riverpod, FVM-pinned SDK, current packages, and no deprecated APIs. Use when the user wants to start, scaffold, or set up a new Flutter app, a cross-platform mobile app, an Android or iOS app in Dart, or asks to "create a new flutter app". Handles BYOK LLM…

ccplugins/awesome-claude-code-plugins · 96 tokens

nextjs-app

Bootstrap a new Next.js (App Router, TypeScript) web app with current packages and no deprecated APIs. Use when the user wants to start, scaffold, or set up a new Next.js project, a React web app, a SaaS or dashboard or landing page on Next.js, or asks to "create a new nextjs app". Handles private, open-source, and…

ccplugins/awesome-claude-code-plugins · 105 tokens

ai-divination-skills

Use this skill when the user asks for a tarot reading, I Ching (Yijing) hexagram cast, or Chinese Xiao Liu Ren (小六壬) divination. Calls audited local Python tools that produce deterministic JSON output; the model never invents the result, it only interprets the JSON.

ccplugins/awesome-claude-code-plugins · 69 tokens

better-auth

Skill for integrating Better Auth - comprehensive TypeScript authentication framework for Cloudflare D1, Next.js, Nuxt, and 15+ frameworks. Use when adding auth, encountering D1 adapter errors, or implementing OAuth/2FA/RBAC features.

secondsky/claude-skills · 53 tokens