{
  "schemaVersion": "1.0",
  "item": {
    "slug": "komodo",
    "name": "Komodo",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/weird-aftertaste/komodo",
    "canonicalUrl": "https://clawhub.ai/weird-aftertaste/komodo",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/komodo",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=komodo",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/komodo.py"
    ],
    "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/komodo"
    },
    "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/komodo",
    "agentPageUrl": "https://openagent3.xyz/skills/komodo/agent",
    "manifestUrl": "https://openagent3.xyz/skills/komodo/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/komodo/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": "Komodo Skill",
        "body": "Manage servers, Docker containers, stacks, builds, and procedures via Komodo Core API."
      },
      {
        "title": "Prerequisites",
        "body": "Set environment variables:\n\nKOMODO_ADDRESS - Komodo Core URL (e.g., https://komodo.example.com)\nKOMODO_API_KEY - API key (starts with K-)\nKOMODO_API_SECRET - API secret (starts with S-)"
      },
      {
        "title": "Quick Reference",
        "body": "# Set env (or source from credentials file)\nexport KOMODO_ADDRESS=\"https://komodo.weird.cyou\"\nexport KOMODO_API_KEY=\"K-...\"\nexport KOMODO_API_SECRET=\"S-...\"\n\n# List resources\npython scripts/komodo.py servers\npython scripts/komodo.py deployments\npython scripts/komodo.py stacks\npython scripts/komodo.py builds\npython scripts/komodo.py procedures\npython scripts/komodo.py repos\n\n# Server operations\npython scripts/komodo.py server <name>\npython scripts/komodo.py server-stats <name>\n\n# Deployment operations\npython scripts/komodo.py deployment <name>\npython scripts/komodo.py deploy <name>\npython scripts/komodo.py start <name>\npython scripts/komodo.py stop <name>\npython scripts/komodo.py restart <name>\npython scripts/komodo.py logs <name> [lines]\n\n# Stack operations\npython scripts/komodo.py stack <name>\npython scripts/komodo.py deploy-stack <name>\npython scripts/komodo.py start-stack <name>\npython scripts/komodo.py stop-stack <name>\npython scripts/komodo.py restart-stack <name>\npython scripts/komodo.py create-stack <name> <server> <compose.yml> [env_file]\npython scripts/komodo.py delete-stack <name>\npython scripts/komodo.py stack-logs <name> [service]\n\n# Build operations\npython scripts/komodo.py build <name>\npython scripts/komodo.py run-build <name>\n\n# Procedure operations\npython scripts/komodo.py procedure <name>\npython scripts/komodo.py run-procedure <name>"
      },
      {
        "title": "State Indicators",
        "body": "🟢 Running/Ok\n🔴 Stopped\n⚪ NotDeployed\n🟡 Unhealthy\n🔄 Restarting\n🔨 Building\n⏳ Pending"
      },
      {
        "title": "Direct API Calls",
        "body": "For operations not covered by the CLI, use curl:\n\n# Read operation\ncurl -X POST \"$KOMODO_ADDRESS/read/ListServers\" \\\n  -H \"Content-Type: application/json\" \\\n  -H \"X-Api-Key: $KOMODO_API_KEY\" \\\n  -H \"X-Api-Secret: $KOMODO_API_SECRET\" \\\n  -d '{}'\n\n# Execute operation\ncurl -X POST \"$KOMODO_ADDRESS/execute/Deploy\" \\\n  -H \"Content-Type: application/json\" \\\n  -H \"X-Api-Key: $KOMODO_API_KEY\" \\\n  -H \"X-Api-Secret: $KOMODO_API_SECRET\" \\\n  -d '{\"deployment\": \"my-deployment\"}'"
      },
      {
        "title": "API Reference",
        "body": "Read endpoints: ListServers, ListDeployments, ListStacks, ListBuilds, ListProcedures, ListRepos, GetSystemStats, GetLog\n\nExecute endpoints: Deploy, StartDeployment, StopDeployment, RestartDeployment, DeployStack, StartStack, StopStack, RestartStack, RunBuild, RunProcedure\n\nFull API docs: https://komo.do/docs"
      }
    ],
    "body": "Komodo Skill\n\nManage servers, Docker containers, stacks, builds, and procedures via Komodo Core API.\n\nPrerequisites\n\nSet environment variables:\n\nKOMODO_ADDRESS - Komodo Core URL (e.g., https://komodo.example.com)\nKOMODO_API_KEY - API key (starts with K-)\nKOMODO_API_SECRET - API secret (starts with S-)\nQuick Reference\n# Set env (or source from credentials file)\nexport KOMODO_ADDRESS=\"https://komodo.weird.cyou\"\nexport KOMODO_API_KEY=\"K-...\"\nexport KOMODO_API_SECRET=\"S-...\"\n\n# List resources\npython scripts/komodo.py servers\npython scripts/komodo.py deployments\npython scripts/komodo.py stacks\npython scripts/komodo.py builds\npython scripts/komodo.py procedures\npython scripts/komodo.py repos\n\n# Server operations\npython scripts/komodo.py server <name>\npython scripts/komodo.py server-stats <name>\n\n# Deployment operations\npython scripts/komodo.py deployment <name>\npython scripts/komodo.py deploy <name>\npython scripts/komodo.py start <name>\npython scripts/komodo.py stop <name>\npython scripts/komodo.py restart <name>\npython scripts/komodo.py logs <name> [lines]\n\n# Stack operations\npython scripts/komodo.py stack <name>\npython scripts/komodo.py deploy-stack <name>\npython scripts/komodo.py start-stack <name>\npython scripts/komodo.py stop-stack <name>\npython scripts/komodo.py restart-stack <name>\npython scripts/komodo.py create-stack <name> <server> <compose.yml> [env_file]\npython scripts/komodo.py delete-stack <name>\npython scripts/komodo.py stack-logs <name> [service]\n\n# Build operations\npython scripts/komodo.py build <name>\npython scripts/komodo.py run-build <name>\n\n# Procedure operations\npython scripts/komodo.py procedure <name>\npython scripts/komodo.py run-procedure <name>\n\nState Indicators\n🟢 Running/Ok\n🔴 Stopped\n⚪ NotDeployed\n🟡 Unhealthy\n🔄 Restarting\n🔨 Building\n⏳ Pending\nDirect API Calls\n\nFor operations not covered by the CLI, use curl:\n\n# Read operation\ncurl -X POST \"$KOMODO_ADDRESS/read/ListServers\" \\\n  -H \"Content-Type: application/json\" \\\n  -H \"X-Api-Key: $KOMODO_API_KEY\" \\\n  -H \"X-Api-Secret: $KOMODO_API_SECRET\" \\\n  -d '{}'\n\n# Execute operation\ncurl -X POST \"$KOMODO_ADDRESS/execute/Deploy\" \\\n  -H \"Content-Type: application/json\" \\\n  -H \"X-Api-Key: $KOMODO_API_KEY\" \\\n  -H \"X-Api-Secret: $KOMODO_API_SECRET\" \\\n  -d '{\"deployment\": \"my-deployment\"}'\n\nAPI Reference\n\nRead endpoints: ListServers, ListDeployments, ListStacks, ListBuilds, ListProcedures, ListRepos, GetSystemStats, GetLog\n\nExecute endpoints: Deploy, StartDeployment, StopDeployment, RestartDeployment, DeployStack, StartStack, StopStack, RestartStack, RunBuild, RunProcedure\n\nFull API docs: https://komo.do/docs"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/weird-aftertaste/komodo",
    "publisherUrl": "https://clawhub.ai/weird-aftertaste/komodo",
    "owner": "weird-aftertaste",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/komodo",
    "downloadUrl": "https://openagent3.xyz/downloads/komodo",
    "agentUrl": "https://openagent3.xyz/skills/komodo/agent",
    "manifestUrl": "https://openagent3.xyz/skills/komodo/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/komodo/agent.md"
  }
}