# Send Server 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": "server",
    "name": "Server",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ivangdavila/server",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/server",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/server",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=server",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "configs.md",
      "docker.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "server",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-08T17:50:39.409Z",
      "expiresAt": "2026-05-15T17:50:39.409Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=server",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=server",
        "contentDisposition": "attachment; filename=\"server-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "server"
      },
      "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/server"
    },
    "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/server",
    "downloadUrl": "https://openagent3.xyz/downloads/server",
    "agentUrl": "https://openagent3.xyz/skills/server/agent",
    "manifestUrl": "https://openagent3.xyz/skills/server/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/server/agent.md"
  }
}
```
## Documentation

### Scope

This skill covers the software layer — what runs inside a machine.
For infrastructure (provisioning VMs, SSH hardening, firewalls, backups), use the vps skill.

### When to Use

Configuring nginx, Caddy, or Apache
Deploying Node.js, Python, Go, or other apps
Docker and Docker Compose setups
SSL/TLS certificates with Let's Encrypt
Reverse proxy and load balancing
Process management (pm2, systemd services)
Troubleshooting port conflicts, CORS, connection errors
Self-hosting (Plex, Nextcloud, game servers)
Local development servers (Vite, webpack-dev-server)

### Common Pitfalls

Port already in use — Check with lsof -i :PORT or ss -tlnp | grep PORT, kill stale processes
CORS in development — Proxy through your dev server or configure backend headers, don't disable in production
SSL certificate issues — Certbot needs port 80/443 open, use --standalone or --webroot mode appropriately
nginx config not loading — Always run nginx -t before systemctl reload nginx
Docker container can't reach host — Use host.docker.internal (Docker Desktop) or 172.17.0.1 (Linux)
Process dies after SSH disconnect — Use systemd, pm2, or run inside tmux/screen
Wrong permissions on mounted volumes — Match container user UID with host file ownership

### Patterns by Use Case

Use CaseRecommended StackStatic siteCaddy (auto-SSL, zero config)Node.js appPM2 + nginx reverse proxyPython (Django/FastAPI)Gunicorn + nginxMultiple servicesDocker Compose + TraefikGame serverDedicated container + port mapping

For framework-specific configs, see configs.md.
For Docker Compose patterns, see docker.md.

### Debugging Checklist

Is the process running? systemctl status or docker ps
Is it listening? ss -tlnp | grep PORT
Can you reach it locally? curl localhost:PORT
Firewall blocking? Check ufw status or cloud security groups
Reverse proxy misconfigured? Check nginx logs: /var/log/nginx/error.log
DNS pointing correctly? dig domain.com or nslookup
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ivangdavila
- Version: 1.0.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-08T17:50:39.409Z
- Expires at: 2026-05-15T17:50:39.409Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/server)
- [Send to Agent page](https://openagent3.xyz/skills/server/agent)
- [JSON manifest](https://openagent3.xyz/skills/server/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/server/agent.md)
- [Download page](https://openagent3.xyz/downloads/server)