A robust integration for automating remote server management and command execution via secure SSH connections.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install ssh
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install ssh using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
The SSH skill for Openclaw Skills provides a streamlined way to interact with remote servers across both Windows and Linux environments. By leveraging the paramiko Python library, this skill allows for secure connections to execute shell commands, install software, and monitor system logs programmatically. It serves as an essential tool for developers and system administrators looking to incorporate remote host management into their Openclaw Skills workflows.
This skill simplifies the complexity of SSH protocols by providing a high-level interface for authentication, command execution, and result retrieval. Whether you are managing a single instance or a fleet of servers, this integration ensures reliable communication and task automation through a standardized Python-based approach.
To integrate this functionality into your Openclaw Skills setup, ensure you have the paramiko library installed in your Python environment:
pip install paramiko
You can then initialize a basic connection test using the following structure:
import paramiko
ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh.connect('TARGET_IP', username='USERNAME', password='PASSWORD')
The skill utilizes a structured set of parameters to define connection details and execution logic within Openclaw Skills:
| Parameter | Type | Description |
|---|---|---|
| host | String | The IP address or domain of the remote server. |
| username | String | The SSH user account name. |
| password | String | The authentication password for the user. |
| command | String | The specific shell command to be executed. |
| shell | Object | Optional interactive shell session for real-time streams. |
Loading
A specialized vision skill that provides high-accuracy image recognition and text extraction to power AI agent reasoning.

A comprehensive automation toolkit for programmatic interaction with the Moltbook social platform.

A powerful Python utility for sending automated messages to Feishu and Lark users using various identifiers.

A powerful CLI utility for converting HTML content into professional-grade PDFs and images without complex server-side rendering setup.

A specialized AI skill for SAP Finance & Controlling tailored specifically for Australian tax, banking, and compliance requirements.

A versatile tool for instant text sharing, QR code generation, and URL shortening within AI agent environments.








































