AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Terminal

skill-dojocodinglabs-code-sensei-terminal · by DojoCodingLabs

>

No reviews yet
0 installs
36 views
0.0% view→install

Install

$ agentstack add skill-dojocodinglabs-code-sensei-terminal

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets Used
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-dojocodinglabs-code-sensei-terminal)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Terminal? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

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)

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.