ssh

A guide to Secure Shell (SSH), a standard way to connect to another computer securely over a network. It covers SSH keys, connection settings, remote commands, and file transfers.

In plain words
What is it for?
Use it to manage SSH keys, connect to remote machines, run commands, copy files, forward ports, and inspect known hosts.
Why use it?
It helps avoid guessing the commands needed to connect to servers, diagnose connection problems, and move files between computers.

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/gebruder/wirken/ssh
Any agent
npx skills add gebruder/wirken --skill ssh
Clone the repo
git clone --depth 1 https://github.com/gebruder/wirken

Made for: Claude Code, Codex.

Per session 8 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 273 The whole file, excluding the scripts and references it only reads on demand.
Security scan E 2 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.00008 $0.00273
Opus 5 $0.00004 $0.00137
Sonnet 5 $0.00002 $0.00055
Haiku 4.5 $0.00001 $0.00027

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

Security

Grade E, and why

ssh scanned grade E with 2 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 3d 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.

Enumerates the file system for secretshighData exfiltration

Searching home directories for .env, .ssh, .aws or credential files is reconnaissance for credential theft.

- List keys: `ls -la ~/.ssh/`

Reaches for credential fileshighPrivilege escalation

SSH keys, cloud credentials, git-credentials, .npmrc, /etc/shadow: reading these is how a config file becomes a credential leak.

- Show public key: `cat ~/.ssh/id_ed25519.pub`
skills/ssh/SKILL.md · 46 lines

What it actually says

SSH

Manage SSH keys and connections.

Key management

  • List keys: ls -la ~/.ssh/
  • Generate key: ssh-keygen -t ed25519 -C "comment"
  • Show public key: cat ~/.ssh/id_ed25519.pub
  • Test connection: ssh -T [email protected]

Config

  • View: cat ~/.ssh/config
  • List known hosts: cat ~/.ssh/known_hosts | wc -l

Remote operations

  • Connect: ssh user@host
  • Run command: ssh user@host "command"
  • Copy file to remote: scp file.txt user@host:/path/
  • Copy from remote: scp user@host:/path/file.txt .
  • Port forward: ssh -L 8080:localhost:80 user@host

Tips

  • Use ssh-add to add keys to the agent
  • Check ssh -v user@host for connection debugging
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. 3d ago First seen · 46 lines · 8 tokens per session scan E 27b91171e6d5

Subscribe to this mod's changes

ssh is a skill published in the GitHub repository gebruder/wirken (169 stars, last pushed 3d ago), licensed MIT. It adds 8 tokens to every session and 273 once invoked, about $0.0000 per session on Opus 5. A static security scan graded it E with 2 findings (enumerates the file system for secrets, reaches for credential files). 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

build-ami

Use when building, compiling, or publishing the Nexus Gateway AWS AMI / single-instance appliance (the nexus-ami/ Packer image) and registering it to AWS. Covers the full pipeline (Go cross-compile + UI + Prisma + Packer), the EC2 vCPU-quota trap that makes the default m5.4xlarge fail with VcpuLimitExceeded on fresh…

AlphaBitCore/nexus-gateway · 143 tokens

plano-agent-skills

Best practices for building agents and agentic applications with Plano, including configuration, routing, orchestration, guardrails, observability, and deployment.

katanemo/plano · 35 tokens

defenseclaw-ops

Manage DefenseClaw enterprise security - scan components, manage tool permissions, view alerts, configure guardrails.

automateyournetwork/netclaw · 27 tokens

release-beta

Publish the next AlphaClaw beta and always update the Railway beta template pin to the exact released beta version.

chrysb/alphaclaw · 25 tokens

azure-security-audit

Azure NSG compliance auditing and security posture assessment. CIS Azure Foundations Benchmark rules, effective security rule analysis, orphaned NSG detection. Use when auditing Azure NSGs for CIS compliance, checking for overly permissive rules, or reviewing effective security on NICs.

automateyournetwork/netclaw · 57 tokens

spec-writing

Spec-writing for Spec-Driven Development (SDD) skill for writing requirement specifications before implementation. Use when starting a new feature, planning work, writing requirements, or designing a component. Trigger keywords: spec, specification, SDD, plan feature, write requirements, design feature, spec-driven…

AlphaBitCore/nexus-gateway · 69 tokens