{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/server",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=server",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "configs.md",
      "docker.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/server",
    "agentPageUrl": "https://openagent3.xyz/skills/server/agent",
    "manifestUrl": "https://openagent3.xyz/skills/server/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/server/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Scope",
        "body": "This skill covers the software layer — what runs inside a machine.\nFor infrastructure (provisioning VMs, SSH hardening, firewalls, backups), use the vps skill."
      },
      {
        "title": "When to Use",
        "body": "Configuring nginx, Caddy, or Apache\nDeploying Node.js, Python, Go, or other apps\nDocker and Docker Compose setups\nSSL/TLS certificates with Let's Encrypt\nReverse proxy and load balancing\nProcess management (pm2, systemd services)\nTroubleshooting port conflicts, CORS, connection errors\nSelf-hosting (Plex, Nextcloud, game servers)\nLocal development servers (Vite, webpack-dev-server)"
      },
      {
        "title": "Common Pitfalls",
        "body": "Port already in use — Check with lsof -i :PORT or ss -tlnp | grep PORT, kill stale processes\nCORS in development — Proxy through your dev server or configure backend headers, don't disable in production\nSSL certificate issues — Certbot needs port 80/443 open, use --standalone or --webroot mode appropriately\nnginx config not loading — Always run nginx -t before systemctl reload nginx\nDocker container can't reach host — Use host.docker.internal (Docker Desktop) or 172.17.0.1 (Linux)\nProcess dies after SSH disconnect — Use systemd, pm2, or run inside tmux/screen\nWrong permissions on mounted volumes — Match container user UID with host file ownership"
      },
      {
        "title": "Patterns by Use Case",
        "body": "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\n\nFor framework-specific configs, see configs.md.\nFor Docker Compose patterns, see docker.md."
      },
      {
        "title": "Debugging Checklist",
        "body": "Is the process running? systemctl status or docker ps\nIs it listening? ss -tlnp | grep PORT\nCan you reach it locally? curl localhost:PORT\nFirewall blocking? Check ufw status or cloud security groups\nReverse proxy misconfigured? Check nginx logs: /var/log/nginx/error.log\nDNS pointing correctly? dig domain.com or nslookup"
      }
    ],
    "body": "Scope\n\nThis skill covers the software layer — what runs inside a machine. For infrastructure (provisioning VMs, SSH hardening, firewalls, backups), use the vps skill.\n\nWhen to Use\nConfiguring nginx, Caddy, or Apache\nDeploying Node.js, Python, Go, or other apps\nDocker and Docker Compose setups\nSSL/TLS certificates with Let's Encrypt\nReverse proxy and load balancing\nProcess management (pm2, systemd services)\nTroubleshooting port conflicts, CORS, connection errors\nSelf-hosting (Plex, Nextcloud, game servers)\nLocal development servers (Vite, webpack-dev-server)\nCommon Pitfalls\nPort already in use — Check with lsof -i :PORT or ss -tlnp | grep PORT, kill stale processes\nCORS in development — Proxy through your dev server or configure backend headers, don't disable in production\nSSL certificate issues — Certbot needs port 80/443 open, use --standalone or --webroot mode appropriately\nnginx config not loading — Always run nginx -t before systemctl reload nginx\nDocker container can't reach host — Use host.docker.internal (Docker Desktop) or 172.17.0.1 (Linux)\nProcess dies after SSH disconnect — Use systemd, pm2, or run inside tmux/screen\nWrong permissions on mounted volumes — Match container user UID with host file ownership\nPatterns by Use Case\nUse Case\tRecommended Stack\nStatic site\tCaddy (auto-SSL, zero config)\nNode.js app\tPM2 + nginx reverse proxy\nPython (Django/FastAPI)\tGunicorn + nginx\nMultiple services\tDocker Compose + Traefik\nGame server\tDedicated container + port mapping\n\nFor framework-specific configs, see configs.md. For Docker Compose patterns, see docker.md.\n\nDebugging Checklist\nIs the process running? systemctl status or docker ps\nIs it listening? ss -tlnp | grep PORT\nCan you reach it locally? curl localhost:PORT\nFirewall blocking? Check ufw status or cloud security groups\nReverse proxy misconfigured? Check nginx logs: /var/log/nginx/error.log\nDNS pointing correctly? dig domain.com or nslookup"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ivangdavila/server",
    "publisherUrl": "https://clawhub.ai/ivangdavila/server",
    "owner": "ivangdavila",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}