{
  "schemaVersion": "1.0",
  "item": {
    "slug": "zadig",
    "name": "Zadig DevOps",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/lilianzhu/zadig",
    "canonicalUrl": "https://clawhub.ai/lilianzhu/zadig",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/zadig",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=zadig",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "index.js",
      "package.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-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-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/zadig"
    },
    "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/zadig",
    "agentPageUrl": "https://openagent3.xyz/skills/zadig/agent",
    "manifestUrl": "https://openagent3.xyz/skills/zadig/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/zadig/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": "Zadig Skill",
        "body": "基于 Zadig OpenAPI 规范实现的 DevOps 平台客户端。"
      },
      {
        "title": "配置",
        "body": "必须配置以下环境变量（添加到 ~/.openclaw/workspace/.env）：\n\n# 必填\nZADIG_API_URL=https://your-zadig.example.com\nZADIG_API_KEY=your-jwt-token\n\n# 可选\nZADIG_DEFAULT_PROJECT=your-project"
      },
      {
        "title": "权限说明",
        "body": "read:env - 读取 .env 文件获取 API 凭证\nnetwork:https - 向 Zadig API 服务器发起请求"
      },
      {
        "title": "核心功能",
        "body": "项目管理\n工作流管理\n环境管理\n服务管理\n构建管理\n测试管理"
      },
      {
        "title": "使用示例",
        "body": "const zadig = require('./skills/zadig');\n\n// 列出项目\nconst { projects } = await zadig.listProjects();\n\n// 触发工作流\nawait zadig.triggerWorkflow({\n  projectKey: 'yaml',\n  workflowKey: 'build',\n  inputs: [...]\n});\n\n// ===== 便捷方法 =====\n\n// 获取服务状态（一步到位）\nconst status = await zadig.getServiceStatus({\n  projectKey: 'yaml',\n  envName: 'dev',\n  serviceName: 'service1'\n});\n/* 返回:\n{\n  service_name: 'service1',\n  env_name: 'dev',\n  status: 'Running',\n  image: 'koderover.tencentcloudcr.com/test/service1:xxx',\n  pod_name: 'service1-xxx-xxx',\n  node: '172.16.64.16',\n  ip: '172.16.64.132',\n  ports: [{ containerPort: 20221, protocol: 'TCP' }],\n  service_endpoints: [{ name: 'service1', service_port: 20221, node_port: 31331 }]\n}\n*/\n\n// 获取服务日志（同步返回文本）\nconst logs = await zadig.getServiceLogsSync({\n  projectKey: 'yaml',\n  envName: 'dev',\n  serviceName: 'service1',\n  tailLines: 100\n});\n// 返回日志文本\n\n// 获取工作流任务状态\nconst task = await zadig.getWorkflowTask({\n  workflowKey: 'dev-build',\n  taskId: 67\n});"
      },
      {
        "title": "安全建议",
        "body": "使用最小权限的 API Token\n不要将 API Key 提交到版本控制"
      }
    ],
    "body": "Zadig Skill\n\n基于 Zadig OpenAPI 规范实现的 DevOps 平台客户端。\n\n配置\n\n必须配置以下环境变量（添加到 ~/.openclaw/workspace/.env）：\n\n# 必填\nZADIG_API_URL=https://your-zadig.example.com\nZADIG_API_KEY=your-jwt-token\n\n# 可选\nZADIG_DEFAULT_PROJECT=your-project\n\n权限说明\nread:env - 读取 .env 文件获取 API 凭证\nnetwork:https - 向 Zadig API 服务器发起请求\n核心功能\n项目管理\n工作流管理\n环境管理\n服务管理\n构建管理\n测试管理\n使用示例\nconst zadig = require('./skills/zadig');\n\n// 列出项目\nconst { projects } = await zadig.listProjects();\n\n// 触发工作流\nawait zadig.triggerWorkflow({\n  projectKey: 'yaml',\n  workflowKey: 'build',\n  inputs: [...]\n});\n\n// ===== 便捷方法 =====\n\n// 获取服务状态（一步到位）\nconst status = await zadig.getServiceStatus({\n  projectKey: 'yaml',\n  envName: 'dev',\n  serviceName: 'service1'\n});\n/* 返回:\n{\n  service_name: 'service1',\n  env_name: 'dev',\n  status: 'Running',\n  image: 'koderover.tencentcloudcr.com/test/service1:xxx',\n  pod_name: 'service1-xxx-xxx',\n  node: '172.16.64.16',\n  ip: '172.16.64.132',\n  ports: [{ containerPort: 20221, protocol: 'TCP' }],\n  service_endpoints: [{ name: 'service1', service_port: 20221, node_port: 31331 }]\n}\n*/\n\n// 获取服务日志（同步返回文本）\nconst logs = await zadig.getServiceLogsSync({\n  projectKey: 'yaml',\n  envName: 'dev',\n  serviceName: 'service1',\n  tailLines: 100\n});\n// 返回日志文本\n\n// 获取工作流任务状态\nconst task = await zadig.getWorkflowTask({\n  workflowKey: 'dev-build',\n  taskId: 67\n});\n\n安全建议\n使用最小权限的 API Token\n不要将 API Key 提交到版本控制"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/lilianzhu/zadig",
    "publisherUrl": "https://clawhub.ai/lilianzhu/zadig",
    "owner": "lilianzhu",
    "version": "4.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/zadig",
    "downloadUrl": "https://openagent3.xyz/downloads/zadig",
    "agentUrl": "https://openagent3.xyz/skills/zadig/agent",
    "manifestUrl": "https://openagent3.xyz/skills/zadig/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/zadig/agent.md"
  }
}