← All skills
Tencent SkillHub · Developer Tools

Zadig DevOps

⚠️ 需要 ZADIG_API_URL + ZADIG_API_KEY | Zadig DevOps 平台 API 客户端

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

⚠️ 需要 ZADIG_API_URL + ZADIG_API_KEY | Zadig DevOps 平台 API 客户端

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, index.js, package.json

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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.

Upgrade existing

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
4.0.2

Documentation

ClawHub primary doc Primary doc: SKILL.md 6 sections Open source page

Zadig Skill

基于 Zadig OpenAPI 规范实现的 DevOps 平台客户端。

配置

必须配置以下环境变量(添加到 ~/.openclaw/workspace/.env): # 必填 ZADIG_API_URL=https://your-zadig.example.com ZADIG_API_KEY=your-jwt-token # 可选 ZADIG_DEFAULT_PROJECT=your-project

权限说明

read:env - 读取 .env 文件获取 API 凭证 network:https - 向 Zadig API 服务器发起请求

核心功能

项目管理 工作流管理 环境管理 服务管理 构建管理 测试管理

使用示例

const zadig = require('./skills/zadig'); // 列出项目 const { projects } = await zadig.listProjects(); // 触发工作流 await zadig.triggerWorkflow({ projectKey: 'yaml', workflowKey: 'build', inputs: [...] }); // ===== 便捷方法 ===== // 获取服务状态(一步到位) const status = await zadig.getServiceStatus({ projectKey: 'yaml', envName: 'dev', serviceName: 'service1' }); /* 返回: { service_name: 'service1', env_name: 'dev', status: 'Running', image: 'koderover.tencentcloudcr.com/test/service1:xxx', pod_name: 'service1-xxx-xxx', node: '172.16.64.16', ip: '172.16.64.132', ports: [{ containerPort: 20221, protocol: 'TCP' }], service_endpoints: [{ name: 'service1', service_port: 20221, node_port: 31331 }] } */ // 获取服务日志(同步返回文本) const logs = await zadig.getServiceLogsSync({ projectKey: 'yaml', envName: 'dev', serviceName: 'service1', tailLines: 100 }); // 返回日志文本 // 获取工作流任务状态 const task = await zadig.getWorkflowTask({ workflowKey: 'dev-build', taskId: 67 });

安全建议

使用最小权限的 API Token 不要将 API Key 提交到版本控制

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs1 Scripts1 Config
  • SKILL.md Primary doc
  • README.md Docs
  • index.js Scripts
  • package.json Config