{
  "schemaVersion": "1.0",
  "item": {
    "slug": "openclaw-docker",
    "name": "Docker",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/homeofe/openclaw-docker",
    "canonicalUrl": "https://clawhub.ai/homeofe/openclaw-docker",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/openclaw-docker",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-docker",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "CHANGELOG.md",
      "README.md",
      "SKILL.md",
      "jest.integration.config.cjs",
      "openclaw.plugin.json",
      "package-lock.json"
    ],
    "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.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/openclaw-docker"
    },
    "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/openclaw-docker",
    "agentPageUrl": "https://openagent3.xyz/skills/openclaw-docker/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclaw-docker/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclaw-docker/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "@elvatis_com/openclaw-docker",
        "body": "OpenClaw plugin for Docker container operations and Docker Compose project control."
      },
      {
        "title": "Features",
        "body": "Docker daemon connection via unix socket or TCP\nOptional TLS for remote daemon access\nRead and write container tools\nDocker Compose integration via docker compose CLI\nSafety controls with readOnly and allowedOperations\nConfigurable command timeout"
      },
      {
        "title": "Prerequisites",
        "body": "Docker Engine installed and running on the host\nDocker CLI (docker command) available in PATH (required for Compose operations)\nAccess to the Docker socket (/var/run/docker.sock) or a remote Docker daemon via TCP"
      },
      {
        "title": "Installation",
        "body": "npm install @elvatis_com/openclaw-docker"
      },
      {
        "title": "Security Notes",
        "body": "Use readOnly: true if you only need observation (ps, logs, inspect). This limits the blast radius.\nTLS keys: If using TCP with TLS, keep your PEM files protected. Only configure trusted certificate paths.\nCompose directories: The plugin runs docker compose commands in whichever directories you configure as composeProjects. Only configure trusted project paths.\nLeast privilege: Run the plugin in an environment with minimal Docker permissions when possible."
      },
      {
        "title": "Local socket (default)",
        "body": "{\n  \"plugins\": {\n    \"openclaw-docker\": {\n      \"socketPath\": \"/var/run/docker.sock\",\n      \"readOnly\": false,\n      \"allowedOperations\": [\"ps\", \"logs\", \"inspect\", \"start\", \"stop\", \"restart\", \"compose_up\", \"compose_down\", \"compose_ps\"],\n      \"composeProjects\": [\n        { \"name\": \"aegis\", \"path\": \"/opt/aegis\" }\n      ],\n      \"timeoutMs\": 15000\n    }\n  }\n}"
      },
      {
        "title": "Remote Docker daemon with TLS",
        "body": "{\n  \"plugins\": {\n    \"openclaw-docker\": {\n      \"host\": \"10.0.0.20\",\n      \"port\": 2376,\n      \"tls\": {\n        \"caPath\": \"/etc/openclaw/docker/ca.pem\",\n        \"certPath\": \"/etc/openclaw/docker/cert.pem\",\n        \"keyPath\": \"/etc/openclaw/docker/key.pem\",\n        \"rejectUnauthorized\": true\n      },\n      \"readOnly\": true,\n      \"composeProjects\": []\n    }\n  }\n}"
      },
      {
        "title": "Available Tools",
        "body": "docker_ps\ndocker_logs\ndocker_inspect\ndocker_start\ndocker_stop\ndocker_restart\ndocker_compose_up\ndocker_compose_down\ndocker_compose_ps"
      },
      {
        "title": "Usage Examples",
        "body": "\"List all running containers\"\n\"Show the last 200 lines from api-gateway logs\"\n\"Inspect redis container\"\n\"Restart identity-service\"\n\"Bring aegis compose project up\"\n\"Show status of aegis compose services\""
      },
      {
        "title": "Safety and Permissions",
        "body": "readOnly: true allows only ps, logs, inspect, and compose_ps\nallowedOperations limits which tools can be executed\nCompose operations are limited to projects in composeProjects\nCommands use timeout protection via timeoutMs"
      },
      {
        "title": "Development",
        "body": "npm install\nnpm run build\nnpm test"
      },
      {
        "title": "License",
        "body": "MIT"
      }
    ],
    "body": "@elvatis_com/openclaw-docker\n\nOpenClaw plugin for Docker container operations and Docker Compose project control.\n\nFeatures\nDocker daemon connection via unix socket or TCP\nOptional TLS for remote daemon access\nRead and write container tools\nDocker Compose integration via docker compose CLI\nSafety controls with readOnly and allowedOperations\nConfigurable command timeout\nPrerequisites\nDocker Engine installed and running on the host\nDocker CLI (docker command) available in PATH (required for Compose operations)\nAccess to the Docker socket (/var/run/docker.sock) or a remote Docker daemon via TCP\nInstallation\nnpm install @elvatis_com/openclaw-docker\n\nSecurity Notes\nUse readOnly: true if you only need observation (ps, logs, inspect). This limits the blast radius.\nTLS keys: If using TCP with TLS, keep your PEM files protected. Only configure trusted certificate paths.\nCompose directories: The plugin runs docker compose commands in whichever directories you configure as composeProjects. Only configure trusted project paths.\nLeast privilege: Run the plugin in an environment with minimal Docker permissions when possible.\nConfiguration\nLocal socket (default)\n{\n  \"plugins\": {\n    \"openclaw-docker\": {\n      \"socketPath\": \"/var/run/docker.sock\",\n      \"readOnly\": false,\n      \"allowedOperations\": [\"ps\", \"logs\", \"inspect\", \"start\", \"stop\", \"restart\", \"compose_up\", \"compose_down\", \"compose_ps\"],\n      \"composeProjects\": [\n        { \"name\": \"aegis\", \"path\": \"/opt/aegis\" }\n      ],\n      \"timeoutMs\": 15000\n    }\n  }\n}\n\nRemote Docker daemon with TLS\n{\n  \"plugins\": {\n    \"openclaw-docker\": {\n      \"host\": \"10.0.0.20\",\n      \"port\": 2376,\n      \"tls\": {\n        \"caPath\": \"/etc/openclaw/docker/ca.pem\",\n        \"certPath\": \"/etc/openclaw/docker/cert.pem\",\n        \"keyPath\": \"/etc/openclaw/docker/key.pem\",\n        \"rejectUnauthorized\": true\n      },\n      \"readOnly\": true,\n      \"composeProjects\": []\n    }\n  }\n}\n\nAvailable Tools\ndocker_ps\ndocker_logs\ndocker_inspect\ndocker_start\ndocker_stop\ndocker_restart\ndocker_compose_up\ndocker_compose_down\ndocker_compose_ps\nUsage Examples\n\"List all running containers\"\n\"Show the last 200 lines from api-gateway logs\"\n\"Inspect redis container\"\n\"Restart identity-service\"\n\"Bring aegis compose project up\"\n\"Show status of aegis compose services\"\nSafety and Permissions\nreadOnly: true allows only ps, logs, inspect, and compose_ps\nallowedOperations limits which tools can be executed\nCompose operations are limited to projects in composeProjects\nCommands use timeout protection via timeoutMs\nDevelopment\nnpm install\nnpm run build\nnpm test\n\nLicense\n\nMIT"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/homeofe/openclaw-docker",
    "publisherUrl": "https://clawhub.ai/homeofe/openclaw-docker",
    "owner": "homeofe",
    "version": "0.2.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/openclaw-docker",
    "downloadUrl": "https://openagent3.xyz/downloads/openclaw-docker",
    "agentUrl": "https://openagent3.xyz/skills/openclaw-docker/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclaw-docker/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclaw-docker/agent.md"
  }
}