skills$openclaw/ssh-exec
xejrax1.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.

1.2k stars1.7k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics

Skill Snapshot

namessh-exec
descriptionRun a single command on a remote Tailscale node via SSH without opening an interactive session. OpenClaw Skills integration.
ownerxejrax
repositoryxejrax/ssh-exec
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @xejrax/ssh-exec
last updatedFeb 7, 2026

Maintainer

xejrax

xejrax

Maintains ssh-exec in the OpenClaw Skills directory.

View GitHub profile
File Explorer
3 files
.
_meta.json
268 B
CLAUDE.md
303 B
SKILL.md
918 B
SKILL.md

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
README.md

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.