terminal

terminal is a skill for Claude Code from temporary111111/agent-mcp-gateway-v2. It costs 209 tokens per session (2,780 once invoked), scanned A, a copy of terminal, MIT.

Instructions for using Desktop Commander as a safe terminal and command-line assistant across macOS, Linux, and Windows.

In plain words
What is it for?
Use them for shell commands, persistent development servers, Python or Node sessions, database shells, SSH, and PowerShell work.
Why use it?
They require checking the computer and shell before running non-trivial commands, reducing mistakes caused by assuming the wrong environment.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the desktop-commander plugin — 6 skills shipped together

Good fit Use them for shell commands, persistent development servers, Python or Node sessions, database shells, SSH, and PowerShell work.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/temporary111111/agent-mcp-gateway-v2/terminal
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.

Any agent
npx skills add temporary111111/agent-mcp-gateway-v2 --skill terminal
Clone the repo
git clone --depth 1 https://github.com/temporary111111/agent-mcp-gateway-v2

Made for: Claude Code.

Or install desktop-commander, the plugin that ships this one along with the rest of its 6 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for terminal

README.md
[![agentmods](https://agentmods.dev/badge/skills/temporary111111/agent-mcp-gateway-v2/terminal/github.svg)](https://agentmods.dev/skills/temporary111111/agent-mcp-gateway-v2/terminal)
Your own site
<a href="https://agentmods.dev/skills/temporary111111/agent-mcp-gateway-v2/terminal"><img src="https://agentmods.dev/badge/skills/temporary111111/agent-mcp-gateway-v2/terminal/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for terminal

Your own site · 80×15
<a href="https://agentmods.dev/skills/temporary111111/agent-mcp-gateway-v2/terminal"><img src="https://agentmods.dev/badge/skills/temporary111111/agent-mcp-gateway-v2/terminal.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 209 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,780 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. ✓ AI security review Sonnet 5 · 7 Sept 2026 📄 Read the review
Origin 100% copy Near-identical to another mod 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.1 $0.00209 $0.02780
Opus 5 $0.00105 $0.01390
Sonnet 5 $0.00042 $0.00556
Haiku 4.5 $0.00021 $0.00278

Measured 9d ago against content hash 6672a30bd2ad, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, 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 9d 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

This is a copy

100% identical to terminal — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

plugins/claude/skills/terminal/SKILL.md · 204 lines

How it starts

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

Terminal Command Assistant

Be a calm, safe, cross-platform terminal copilot. The user may be an expert or may be opening a terminal for the first time — read their cues and match them. Explain what a command does in plain language, run it through Desktop Commander, read the real output, and explain the result. The user's machine is the source of truth; never assume the OS, shell, or installed tools — detect them.

1. Detect the environment first (do this before suggesting commands)

Different OSes and shells need different commands. Before recommending or running anything non-trivial, call get_config (Desktop Commander) and read systemInfo:

  • platformName / isWindows / isMacOS / isLinux — which OS.
  • defaultShell and uiHints.availableShells — which shell to target.
  • pythonInfo, nodeInfo — whether Python/Node exist and their versions.
  • blockedCommands — commands Desktop Commander refuses to run (see §7).
  • allowedDirectories[] means full access; otherwise commands/paths are scoped to those directories.

This one cheap call prevents the most common mistake: handing a macOS user a PowerShell command, or assuming python3 exists when it doesn't. Cache what you learn for the rest of the session; re-check only if something seems off.

2. Choosing the right command for the shell

Pick syntax by the detected shell, not by habit. Common equivalents:

Task bash / zsh (macOS, Linux) PowerShell (Windows) cmd (Windows)
List files ls -la Get-ChildItem / ls dir
Current dir pwd Get-Location / pwd cd
Find file find . -name "*.log" Get-ChildItem -Recurse -Filter *.log dir /s *.log
Search text grep -r "TODO" . Get-ChildItem -Recurse | Select-String TODO findstr /s TODO *
Env var echo $HOME $env:USERPROFILE echo %USERPROFILE%
Set env (session) export KEY=val $env:KEY="val" set KEY=val
Delete file rm file Remove-Item file del file
Copy cp a b Copy-Item a b copy a b
Path separator / \ (or /) \

Read the full file on GitHub · 204 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. 9d ago First seen · 204 lines · 209 tokens per session scan E 6672a30bd2ad

Subscribe to this mod's changes

terminal is a skill published in the GitHub repository temporary111111/agent-mcp-gateway-v2 (0 stars, last pushed 18d ago), licensed MIT. It adds 209 tokens to every session and 2,780 once invoked, about $0.0010 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to terminal, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

insight-error-page

Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…

vercel/next.js · 83 tokens

next-cache-components-optimizer

Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…

vercel/next.js · 170 tokens

next-partial-prefetching-adoption

Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…

vercel/next.js · 103 tokens