{
  "schemaVersion": "1.0",
  "item": {
    "slug": "coala",
    "name": "Coala Client",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/hubentu/coala",
    "canonicalUrl": "https://clawhub.ai/hubentu/coala",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/coala",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=coala",
    "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-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/coala"
    },
    "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/coala",
    "agentPageUrl": "https://openagent3.xyz/skills/coala/agent",
    "manifestUrl": "https://openagent3.xyz/skills/coala/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/coala/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": "Coala Client",
        "body": "Part of the coala ecosystem. CLI for chat with OpenAI-compatible LLMs (OpenAI, Gemini, Ollama) and MCP (Model Context Protocol) servers. Supports importing CWL toolsets as MCP servers, importing skills."
      },
      {
        "title": "Config paths",
        "body": "MCP config and toolsets: ~/.config/coala/mcps/\n\nmcp_servers.json — server definitions\n<toolset>/ — per-toolset dirs with run_mcp.py and CWL files\n\n\nSkills: ~/.config/coala/skills/ (one subfolder per imported source)\nEnv: ~/.config/coala/env (optional; key=value for providers and MCP env)"
      },
      {
        "title": "Quick start",
        "body": "Init (first time)\ncoala init — creates ~/.config/coala/mcps/mcp_servers.json and env.\n\n\nSet API key\ne.g. export OPENAI_API_KEY=... or export GEMINI_API_KEY=.... Ollama needs no key.\n\n\nChat\ncoala or coala chat — interactive chat with MCP tools.\ncoala ask \"question\" — single prompt with MCP.\n\n\nOptions\n-p, --provider (openai|gemini|ollama|custom), -m, --model, --no-mcp."
      },
      {
        "title": "MCP: CWL toolsets",
        "body": "No API key needed for MCP import, list, or call — only for chat/ask with an LLM.\n\nImport (creates toolset under ~/.config/coala/mcps/<TOOLSET>/ and registers server):\ncoala mcp-import <TOOLSET> <SOURCES...> or alias coala mcp ...\nSOURCES: local .cwl files, a .zip, or http(s) URLs to a .cwl or .zip.\nRequires the coala package where the MCP server runs (for run_mcp.py).\n\n\nList\ncoala mcp-list — list server names.\ncoala mcp-list <SERVER_NAME> — print each tool’s schema (name, description, inputSchema).\n\n\nCall\ncoala mcp-call <SERVER>.<TOOL> --args '<JSON>'\nExample: coala mcp-call gene-variant.ncbi_datasets_gene --args '{\"data\": [{\"gene\": \"TP53\", \"taxon\": \"human\"}]}'"
      },
      {
        "title": "Skills",
        "body": "Import (into ~/.config/coala/skills/, one subfolder per source):\ncoala skill <SOURCES...>\nSOURCES: GitHub tree URL (e.g. https://github.com/owner/repo/tree/main/skills), zip URL, or local zip/dir.\n\n\nIn chat\n/skill — list installed skills.\n/skill <name> — load skill from ~/.config/coala/skills/<name>/ (e.g. SKILL.md) into context."
      },
      {
        "title": "Chat commands",
        "body": "/help, /exit, /quit, /clear\n/tools — list MCP tools\n/servers — list connected MCP servers\n/skill — list skills; /skill <name> — load a skill\n/model — show model info\n/switch <provider> — switch provider"
      },
      {
        "title": "MCP on/off",
        "body": "All off: coala --no-mcp (or coala ask \"...\" --no-mcp).\nOne server off: remove its entry from ~/.config/coala/mcps/mcp_servers.json.\nOn: default when --no-mcp is not used; add or restore servers in mcp_servers.json."
      },
      {
        "title": "Providers and env",
        "body": "Set provider via -p or env PROVIDER. Set keys and URLs per provider (e.g. OPENAI_API_KEY, GEMINI_API_KEY, OLLAMA_BASE_URL). Optional: put vars in ~/.config/coala/env.\ncoala config — print current config paths and provider/model info."
      }
    ],
    "body": "Coala Client\n\nPart of the coala ecosystem. CLI for chat with OpenAI-compatible LLMs (OpenAI, Gemini, Ollama) and MCP (Model Context Protocol) servers. Supports importing CWL toolsets as MCP servers, importing skills.\n\nConfig paths\nMCP config and toolsets: ~/.config/coala/mcps/\nmcp_servers.json — server definitions\n<toolset>/ — per-toolset dirs with run_mcp.py and CWL files\nSkills: ~/.config/coala/skills/ (one subfolder per imported source)\nEnv: ~/.config/coala/env (optional; key=value for providers and MCP env)\nQuick start\n\nInit (first time)\ncoala init — creates ~/.config/coala/mcps/mcp_servers.json and env.\n\nSet API key\ne.g. export OPENAI_API_KEY=... or export GEMINI_API_KEY=.... Ollama needs no key.\n\nChat\ncoala or coala chat — interactive chat with MCP tools.\ncoala ask \"question\" — single prompt with MCP.\n\nOptions\n-p, --provider (openai|gemini|ollama|custom), -m, --model, --no-mcp.\n\nMCP: CWL toolsets\n\nNo API key needed for MCP import, list, or call — only for chat/ask with an LLM.\n\nImport (creates toolset under ~/.config/coala/mcps/<TOOLSET>/ and registers server):\ncoala mcp-import <TOOLSET> <SOURCES...> or alias coala mcp ...\nSOURCES: local .cwl files, a .zip, or http(s) URLs to a .cwl or .zip.\nRequires the coala package where the MCP server runs (for run_mcp.py).\n\nList\ncoala mcp-list — list server names.\ncoala mcp-list <SERVER_NAME> — print each tool’s schema (name, description, inputSchema).\n\nCall\ncoala mcp-call <SERVER>.<TOOL> --args '<JSON>'\nExample: coala mcp-call gene-variant.ncbi_datasets_gene --args '{\"data\": [{\"gene\": \"TP53\", \"taxon\": \"human\"}]}'\n\nSkills\n\nImport (into ~/.config/coala/skills/, one subfolder per source):\ncoala skill <SOURCES...>\nSOURCES: GitHub tree URL (e.g. https://github.com/owner/repo/tree/main/skills), zip URL, or local zip/dir.\n\nIn chat\n/skill — list installed skills.\n/skill <name> — load skill from ~/.config/coala/skills/<name>/ (e.g. SKILL.md) into context.\n\nChat commands\n/help, /exit, /quit, /clear\n/tools — list MCP tools\n/servers — list connected MCP servers\n/skill — list skills; /skill <name> — load a skill\n/model — show model info\n/switch <provider> — switch provider\nMCP on/off\nAll off: coala --no-mcp (or coala ask \"...\" --no-mcp).\nOne server off: remove its entry from ~/.config/coala/mcps/mcp_servers.json.\nOn: default when --no-mcp is not used; add or restore servers in mcp_servers.json.\nProviders and env\n\nSet provider via -p or env PROVIDER. Set keys and URLs per provider (e.g. OPENAI_API_KEY, GEMINI_API_KEY, OLLAMA_BASE_URL). Optional: put vars in ~/.config/coala/env.\ncoala config — print current config paths and provider/model info."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/hubentu/coala",
    "publisherUrl": "https://clawhub.ai/hubentu/coala",
    "owner": "hubentu",
    "version": "0.1.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/coala",
    "downloadUrl": "https://openagent3.xyz/downloads/coala",
    "agentUrl": "https://openagent3.xyz/skills/coala/agent",
    "manifestUrl": "https://openagent3.xyz/skills/coala/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/coala/agent.md"
  }
}