# Send SSH OP to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "ssh-op",
    "name": "SSH OP",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/moodykong/ssh-op",
    "canonicalUrl": "https://clawhub.ai/moodykong/ssh-op",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/ssh-op",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ssh-op",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "config.env",
      "references/onboarding.md",
      "scripts/ensure_ssh_config.py",
      "scripts/onboard.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "ssh-op",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-08T09:20:38.813Z",
      "expiresAt": "2026-05-15T09:20:38.813Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ssh-op",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ssh-op",
        "contentDisposition": "attachment; filename=\"ssh-op-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "ssh-op"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/ssh-op"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/ssh-op",
    "downloadUrl": "https://openagent3.xyz/downloads/ssh-op",
    "agentUrl": "https://openagent3.xyz/skills/ssh-op/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ssh-op/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ssh-op/agent.md"
  }
}
```
## Documentation

### ssh-op

ssh-op is a wrapper around ssh that:

ensures an ssh-agent exists for the current shell
loads an SSH key from 1Password via op read ... | ssh-add -
then execs ssh with your arguments

### Prerequisites

Fail-fast checks you can run:

command -v op ssh ssh-agent ssh-add
op whoami

If op whoami fails:

Sign in to 1Password CLI (desktop integration / account sign-in), or
If using a service account flow, ensure OP_SERVICE_ACCOUNT_TOKEN is set.

### Configuration (portable)

Machine-specific config lives alongside the skill:

Example (do not edit): ~/.openclaw/skills/ssh-op/config.env.example
Real (machine-specific): ~/.openclaw/skills/ssh-op/config.env

Required keys:

SSH_OP_VAULT_NAME — 1Password vault containing the key
SSH_OP_ITEM_TITLE — 1Password item title

Optional keys:

SSH_OP_KEY_FIELD — defaults to private key
SSH_OP_KEY_FINGERPRINT_SHA256 — if set, skip re-loading when already in ssh-agent
SSH_OP_HOSTS_FILE — defaults to hosts.conf (ssh config snippet filename)

SSH host entries (optional) live in:

~/.openclaw/skills/ssh-op/hosts.conf

### Preferred (chat-first)

Because the primary interface is chat (Telegram), the preferred onboarding flow is:

Ask Boss the required questions in chat.
Write the real config file: config.env.
Run a smoke test (e.g. ssh-op --help and a safe ssh-op -T <alias>).

### Optional (terminal)

If you are running in a real terminal, you can use the interactive onboarding script:

~/.openclaw/skills/ssh-op/scripts/onboard.sh

(If you want a step-by-step runbook, see references/onboarding.md.)

### 1) Put the executable on PATH

Canonical executable lives inside the skill:

~/.openclaw/skills/ssh-op/scripts/ssh-op

For convenience, create a symlink:

mkdir -p ~/.local/bin
ln -sf ~/.openclaw/skills/ssh-op/scripts/ssh-op ~/.local/bin/ssh-op

### 2) Configure which key to load

Run onboarding to populate the real config:

~/.openclaw/skills/ssh-op/scripts/onboard.sh

(Or edit config.env manually and set SSH_OP_VAULT_NAME / SSH_OP_ITEM_TITLE.)

Then validate:

ssh-op --help
# try a safe ssh command (or any host alias you have configured)
ssh-op -T <host-alias>

### 3) (Optional) Manage ~/.ssh/config host aliases

Put desired Host entries in hosts.conf
Apply them idempotently (adds/updates a managed block):

~/.openclaw/skills/ssh-op/scripts/ensure_ssh_config.py

This will update ~/.ssh/config between:

# BEGIN ssh-op (managed)
# END ssh-op (managed)

### Usage

ssh-op <ssh-args...>

Examples:

ssh-op my-host-alias
ssh-op -T my-host-alias
ssh-op -L 8080:localhost:8080 my-host-alias

### Notes / behavior

No private key is written to disk.
ssh-agent lifetime is tied to the current shell unless you export SSH_AUTH_SOCK / SSH_AGENT_PID.

### Executables / bin placement

Keep the canonical executable in the skill folder (scripts/ssh-op).
Use a symlink (e.g. ~/.local/bin/ssh-op) for convenience.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: moodykong
- Version: 0.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-08T09:20:38.813Z
- Expires at: 2026-05-15T09:20:38.813Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/ssh-op)
- [Send to Agent page](https://openagent3.xyz/skills/ssh-op/agent)
- [JSON manifest](https://openagent3.xyz/skills/ssh-op/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/ssh-op/agent.md)
- [Download page](https://openagent3.xyz/downloads/ssh-op)