{
  "schemaVersion": "1.0",
  "item": {
    "slug": "4090ctl",
    "name": "4090ctl",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/olmmlo-cmd/4090ctl",
    "canonicalUrl": "https://clawhub.ai/olmmlo-cmd/4090ctl",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/4090ctl",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4090ctl",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.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",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/4090ctl"
    },
    "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/4090ctl",
    "agentPageUrl": "https://openagent3.xyz/skills/4090ctl/agent",
    "manifestUrl": "https://openagent3.xyz/skills/4090ctl/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/4090ctl/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": "4090 服务器控制",
        "body": "通过 SSH 控制 4090 服务器（192.168.199.17）。"
      },
      {
        "title": "快速命令",
        "body": "# Dify 状态检查\nssh -F ~/.ssh/config 4090 \"docker ps -a | grep dify\"\n\n# 查看资源使用\nssh -F ~/.ssh/config 4090 \"docker stats --no-stream\"\n\n# 重启 Dify\nssh -F ~/.ssh/config 4090 \"cd ~/dify/docker && docker-compose restart\"\n\n# 查看日志\nssh -F ~/.ssh/config 4090 \"docker logs -f docker-api-1\""
      },
      {
        "title": "Docker 管理",
        "body": "# 查看所有容器\ndocker ps -a\n\n# 查看资源占用\ndocker stats --no-stream --format 'table {{.Name}}\\t{{.CPUPerc}}\\t{{.MemPerc}}'\n\n# 重启单个容器\ndocker restart docker-api-1\n\n# 查看容器日志\ndocker logs -f docker-api-1"
      },
      {
        "title": "Dify 服务",
        "body": "服务容器名端口说明APIdocker-api-15001主 APIWorkerdocker-worker-15001异步任务Webdocker-web-13000前端界面Plugindocker-plugin_daemon-15003插件服务Sandboxdocker-sandbox-1-安全沙箱"
      },
      {
        "title": "系统监控",
        "body": "# CPU/内存\ntop -bn1 | head -5\n\n# 磁盘使用\ndf -h\n\n# 负载情况\nuptime"
      },
      {
        "title": "SSH 配置",
        "body": "~/.ssh/config:\n\nHost 4090\n    HostName 192.168.199.17\n    User olmmlo\n    IdentityFile ~/.ssh/4090_key\n    PasswordAuthentication no"
      }
    ],
    "body": "4090 服务器控制\n\n通过 SSH 控制 4090 服务器（192.168.199.17）。\n\n快速命令\n# Dify 状态检查\nssh -F ~/.ssh/config 4090 \"docker ps -a | grep dify\"\n\n# 查看资源使用\nssh -F ~/.ssh/config 4090 \"docker stats --no-stream\"\n\n# 重启 Dify\nssh -F ~/.ssh/config 4090 \"cd ~/dify/docker && docker-compose restart\"\n\n# 查看日志\nssh -F ~/.ssh/config 4090 \"docker logs -f docker-api-1\"\n\n常用操作\nDocker 管理\n# 查看所有容器\ndocker ps -a\n\n# 查看资源占用\ndocker stats --no-stream --format 'table {{.Name}}\\t{{.CPUPerc}}\\t{{.MemPerc}}'\n\n# 重启单个容器\ndocker restart docker-api-1\n\n# 查看容器日志\ndocker logs -f docker-api-1\n\nDify 服务\n服务\t容器名\t端口\t说明\nAPI\tdocker-api-1\t5001\t主 API\nWorker\tdocker-worker-1\t5001\t异步任务\nWeb\tdocker-web-1\t3000\t前端界面\nPlugin\tdocker-plugin_daemon-1\t5003\t插件服务\nSandbox\tdocker-sandbox-1\t-\t安全沙箱\n系统监控\n# CPU/内存\ntop -bn1 | head -5\n\n# 磁盘使用\ndf -h\n\n# 负载情况\nuptime\n\nSSH 配置\n\n~/.ssh/config:\n\nHost 4090\n    HostName 192.168.199.17\n    User olmmlo\n    IdentityFile ~/.ssh/4090_key\n    PasswordAuthentication no"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/olmmlo-cmd/4090ctl",
    "publisherUrl": "https://clawhub.ai/olmmlo-cmd/4090ctl",
    "owner": "olmmlo-cmd",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/4090ctl",
    "downloadUrl": "https://openagent3.xyz/downloads/4090ctl",
    "agentUrl": "https://openagent3.xyz/skills/4090ctl/agent",
    "manifestUrl": "https://openagent3.xyz/skills/4090ctl/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/4090ctl/agent.md"
  }
}