Jump to related tools in the same category or review the original source on GitHub.

Web & Frontend Development @xejrax Updated 2/26/2026

🖥️ Ssh Exec OpenClaw Skill - ClawHub

Do you want your AI agent to automate Ssh Exec workflows? This free skill from ClawHub helps with web & frontend development tasks without building custom tools from scratch.

What this skill does

Run a single command on a remote Tailscale node via SSH without opening an interactive session.

Install

npx clawhub@latest install ssh-exec

Full SKILL.md

Open original
namedescription
ssh-execRun a single command on a remote Tailscale node via SSH without opening an interactive session.

SSH Exec Skill

Run a single command on a remote Tailscale node via SSH without opening an interactive session. Requires SSH access to the target (key in ~/.ssh/ or SSH_AUTH_SOCK) and SSH_TARGET env var (e.g., 100.107.204.64:8022).

Execute a Remote Command

Run a command on the target and return stdout/stderr:

ssh -p 8022 [email protected] "uname -a"

Execute with Custom Port

Use the SSH_TARGET env var:

ssh -p "${SSH_PORT:-22}" "$SSH_HOST" "df -h"

Run a Script Remotely

Pipe a local script to the remote host:

ssh -p 8022 [email protected] 'bash -s' < local-script.sh
Original URL: https://github.com/openclaw/skills/blob/main/skills/xejrax/ssh-exec

Related skills

If this matches your use case, these are close alternatives in the same category.