acer-ssh

Executes SSH commands on the local server acer at 192.168.1.10.

Updated Sep 20, 2026
One-click install
npx skills add https://github.com/GreenyZA/neo-light --skill acer-ssh-greenyza
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: acer-ssh
Source: https://github.com/GreenyZA/neo-light/tree/main/.hermes-home/skills/acer-ssh
Command: npx skills add https://github.com/GreenyZA/neo-light --skill acer-ssh-greenyza

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? It removes ambiguity about how to reach the shop-floor GPU server acer, ensuring commands are run on the correct host with the correct user and connection options. ## Core Features & Use Cases - Host targeting: Connects to the server via the server SSH alias as user warpuppy at IP 192.168.1.10. - Command wrapping: Wraps remote commands in ssh server '...' while local Lenovo commands run directly in the terminal. - Safety constraints: Uses BatchMode with a 5-second connect timeout, never invents passwords, and never SSHes off the LAN. - Use Case: When asked to check the llama.cpp host or GPU box, run ssh -o BatchMode=yes -o ConnectTimeout=5 server 'hostname; whoami' to verify connectivity. ## Quick Start Ask the assistant to check the acer server status, and it will run the SSH command against the server alias to report hostname and user.

Frequently Asked Questions about acer-ssh

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I SSH to the acer server at 192.168.1.10?▼

Use the SSH alias `server` with user `warpuppy`, for example: ssh -o BatchMode=yes -o ConnectTimeout=5 server 'hostname; whoami'. The alias maps to IP 192.168.1.10 on the local network.

How to run a command on the remote server instead of locally?▼

Wrap the command in ssh server '...' to execute it on the acer server. Commands intended for the local Lenovo machine should be run directly in the terminal without any ssh wrapper.

Does this SSH setup require a password?▼

No password is used; the connection relies on BatchMode, which disables interactive password prompts and assumes key-based authentication is configured. The skill explicitly forbids inventing or guessing a password.

Why does the SSH command use BatchMode and ConnectTimeout?▼

BatchMode=yes prevents hanging on password prompts when keys are unavailable, and ConnectTimeout=5 fails fast after 5 seconds if the server is unreachable. This keeps automated command execution non-interactive and predictable.

Can I use this to SSH to servers outside the local network?▼

No, the skill is restricted to the LAN and explicitly forbids SSHing off the local network. It is scoped only to the acer server at 192.168.1.10.