# Send Komodo 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": "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": {
    "downloadUrl": "/downloads/komodo",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=komodo",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/komodo.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "komodo",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T09:01:42.662Z",
      "expiresAt": "2026-05-07T09:01:42.662Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=komodo",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=komodo",
        "contentDisposition": "attachment; filename=\"komodo-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "komodo"
      },
      "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/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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Komodo Skill

Manage servers, Docker containers, stacks, builds, and procedures via Komodo Core API.

### Prerequisites

Set environment variables:

KOMODO_ADDRESS - Komodo Core URL (e.g., https://komodo.example.com)
KOMODO_API_KEY - API key (starts with K-)
KOMODO_API_SECRET - API secret (starts with S-)

### Quick Reference

# Set env (or source from credentials file)
export KOMODO_ADDRESS="https://komodo.weird.cyou"
export KOMODO_API_KEY="K-..."
export KOMODO_API_SECRET="S-..."

# List resources
python scripts/komodo.py servers
python scripts/komodo.py deployments
python scripts/komodo.py stacks
python scripts/komodo.py builds
python scripts/komodo.py procedures
python scripts/komodo.py repos

# Server operations
python scripts/komodo.py server <name>
python scripts/komodo.py server-stats <name>

# Deployment operations
python scripts/komodo.py deployment <name>
python scripts/komodo.py deploy <name>
python scripts/komodo.py start <name>
python scripts/komodo.py stop <name>
python scripts/komodo.py restart <name>
python scripts/komodo.py logs <name> [lines]

# Stack operations
python scripts/komodo.py stack <name>
python scripts/komodo.py deploy-stack <name>
python scripts/komodo.py start-stack <name>
python scripts/komodo.py stop-stack <name>
python scripts/komodo.py restart-stack <name>
python scripts/komodo.py create-stack <name> <server> <compose.yml> [env_file]
python scripts/komodo.py delete-stack <name>
python scripts/komodo.py stack-logs <name> [service]

# Build operations
python scripts/komodo.py build <name>
python scripts/komodo.py run-build <name>

# Procedure operations
python scripts/komodo.py procedure <name>
python scripts/komodo.py run-procedure <name>

### State Indicators

🟢 Running/Ok
🔴 Stopped
⚪ NotDeployed
🟡 Unhealthy
🔄 Restarting
🔨 Building
⏳ Pending

### Direct API Calls

For operations not covered by the CLI, use curl:

# Read operation
curl -X POST "$KOMODO_ADDRESS/read/ListServers" \\
  -H "Content-Type: application/json" \\
  -H "X-Api-Key: $KOMODO_API_KEY" \\
  -H "X-Api-Secret: $KOMODO_API_SECRET" \\
  -d '{}'

# Execute operation
curl -X POST "$KOMODO_ADDRESS/execute/Deploy" \\
  -H "Content-Type: application/json" \\
  -H "X-Api-Key: $KOMODO_API_KEY" \\
  -H "X-Api-Secret: $KOMODO_API_SECRET" \\
  -d '{"deployment": "my-deployment"}'

### API Reference

Read endpoints: ListServers, ListDeployments, ListStacks, ListBuilds, ListProcedures, ListRepos, GetSystemStats, GetLog

Execute endpoints: Deploy, StartDeployment, StopDeployment, RestartDeployment, DeployStack, StartStack, StopStack, RestartStack, RunBuild, RunProcedure

Full API docs: https://komo.do/docs
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: weird-aftertaste
- 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-04-30T09:01:42.662Z
- Expires at: 2026-05-07T09:01:42.662Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/komodo)
- [Send to Agent page](https://openagent3.xyz/skills/komodo/agent)
- [JSON manifest](https://openagent3.xyz/skills/komodo/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/komodo/agent.md)
- [Download page](https://openagent3.xyz/downloads/komodo)