1.2k★by xejrax
ssh-exec – OpenClaw Skill
ssh-exec is an OpenClaw Skills integration for data analytics workflows. Run a single command on a remote Tailscale node via SSH without opening an interactive session.
Skill Snapshot
| name | ssh-exec |
| description | Run a single command on a remote Tailscale node via SSH without opening an interactive session. OpenClaw Skills integration. |
| owner | xejrax |
| repository | xejrax/ssh-exec |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @xejrax/ssh-exec |
| last updated | Feb 7, 2026 |
Maintainer

name: ssh-exec description: "Run a single command on a remote Tailscale node via SSH without opening an interactive session." metadata: { "openclaw": { "emoji": "🖥️", "requires": { "bins": ["ssh"] }, "install": [], }, }
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 user@100.107.204.64 "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 user@100.107.204.64 'bash -s' < local-script.sh
No README available.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install ssh-exec?
Run openclaw add @xejrax/ssh-exec in your terminal. This installs ssh-exec into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/xejrax/ssh-exec. Review commits and README documentation before installing.
