Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计提醒

komodo-skill科莫多技能

Agent Skill

komodo-skill 用于辅助部署、云资源、容器和基础设施运维,适合在 OpenClaw 中需要检查配置、整理部署步骤或排查环境问题时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

7,543

周安装

324

GitHub Stars

公开资料未说明

下载量

2,644
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:komodo-skill(科莫多技能)
来源仓库:https://github.com/onekill0503/komodo-skill
安装命令:
openclaw skills install komodo-skill
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install komodo-skill

简介

与 Komodo Core API 交互管理服务器、容器与部署资源,支持多云环境运维。

  • 适用于 DevOps 自动化、基础设施即代码(IaC)与故障排查场景。
  • 可列出、启停或监控 Komodo 托管资源,集成 CI/CD 流水线更佳。
  • 操作前应确认 API 权限范围,避免误删生产环境实例。
  • 建议在非高峰时段执行批量操作,减少对线上服务的影响。

SKILL.md

name
komodo-skill
description
Interact with Komodo Core API using this project. Use when the user wants to list, manage, deploy, or execute operations against Komodo resources (servers, stacks, deployments, builds, repos, procedures, variables, alerts, etc.).
argument-hint
[what to do with Komodo]

You are an expert at managing Komodo infrastructure using this project. The openclaw.ts module exports a pre-configured komodo client authenticated via API key and secret from environment variables. All scripts in scripts/ import from it.

Environment Variables

VariableDescription
KOMODO_URLBase URL of Komodo Core (e.g. https://komodo.example.com)
KOMODO_API_KEYAPI key
KOMODO_API_SECRETAPI secret

Available Scripts

Every script can be run two ways — pick whichever fits the environment:

node scripts/<script>.js [args]        # compiled JS, no tooling needed
bun run scripts/<script>.ts [args]     # TypeScript source, requires Bun

list — Inspect resources

node scripts/list.js <type>
TypeOutput
serversState, address, region, periphery version, CPU, memory, disk, load average
stacksState, services & images, repo/branch, deployed vs latest commit
deploymentsState, image, update availability, attached build
buildsState, version, last built, repo/branch, built vs latest commit
reposState, last pulled/built, repo/branch, cloned/built/latest commit
proceduresState, stage count, last run, next scheduled run
actionsState, last run, next scheduled run

create — Create a resource

node scripts/create.js <type> <name> [json-config]

Config is optional — omit to use Komodo defaults.

node scripts/create.js stack my-stack '{"repo":"org/repo","branch":"main"}'
node scripts/create.js deployment my-dep '{"image":"nginx:latest","server_id":"<id>"}'
node scripts/create.js build my-build '{"repo":"org/repo","branch":"main"}'
node scripts/create.js repo my-repo '{"repo":"org/repo","branch":"main","server_id":"<id>"}'
node scripts/create.js procedure my-proc
node scripts/create.js action my-action '{"run_at_startup":false}'

Types: stack deployment build repo procedure action


update — Patch resource config

Applies a partial JSON merge — only specified fields change, everything else stays.

node scripts/update.js <type> <name> '<json>'
node scripts/update.js stack my-stack '{"branch":"main"}'
node scripts/update.js deployment my-dep '{"image":"nginx:1.27"}'
node scripts/update.js build my-build '{"version":{"major":2,"minor":0,"patch":0}}'
node scripts/update.js repo my-repo '{"branch":"develop"}'
node scripts/update.js procedure my-proc '{"schedule":"0 0 * * *","schedule_enabled":true}'
node scripts/update.js action my-action '{"run_at_startup":false}'

Types: stack deployment build repo procedure action


run — Execute and wait for completion

Runs a procedure, action, or build and blocks until done. Prints update ID, status, duration, and logs.

node scripts/run.js <type> <name>
node scripts/run.js procedure my-proc
node scripts/run.js action my-action
node scripts/run.js build my-build

deploy-stack — Deploy a stack

Deploys a stack and waits for completion. Prints the full update result and logs.

node scripts/deploy-stack.js <stack-name>

stack-ctrl — Control a stack

node scripts/stack-ctrl.js <action> <stack-name>

Actions: start stop restart pull destroy


deployment-ctrl — Control a deployment

node scripts/deployment-ctrl.js <action> <deployment-name>

Actions: deploy start stop restart pull destroy


get-logs — Fetch logs

node scripts/get-logs.js stack <stack-name> [tail]
node scripts/get-logs.js deployment <deployment-name> [tail]
node scripts/get-logs.js container <server-name> <container-name> [tail]

Writing New Scripts

When adding a new script, follow this pattern:

import { komodo } from "../openclaw.ts";
import { printUpdate } from "./print-update.ts"; // for execute_and_poll results

// Read
const items = await komodo.read("ListStacks", {});

// Write (create/update/delete)
await komodo.write("CreateVariable", { name: "KEY", value: "val" });

// Execute and wait for completion
const result = await komodo.execute_and_poll("DeployStack", { stack: "name" });
printUpdate(result);

Key rules:

  • Always import komodo from "../openclaw.ts" — never initialize the client directly
  • Always use execute_and_poll (not execute) when waiting for a task to finish
  • Use printUpdate(result) from ./print-update.ts to display execution results
  • Read args from process.argv — never hardcode resource names or credentials
  • After writing a new .ts script, rebuild with bun run build to produce the .js counterpart

Instructions

When the user provides a request via $ARGUMENTS:

  1. Identify the resource type and operation needed.
  2. Use an existing script first — check the list above before writing new code.
  3. If adapting an existing script, show the exact command to run.
  4. If writing a new script, place it in scripts/, follow the pattern above, and remind the user to rebuild.
  5. Always show both run options: node scripts/<script>.js and bun run scripts/<script>.ts.
  6. For execution results (deploy, run, ctrl), the output always includes: update ID, status, success, duration, operator, and per-stage logs.

The user's request: $ARGUMENTS

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

71.18%
按下载量换算1,882

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills