west

v1.0.0

Manage domain DNS records on West Digitals by adding, modifying, or deleting entries via the West Digitals API.

0· 157·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for misskivin/west-dns-manager.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "west" (misskivin/west-dns-manager) from ClawHub.
Skill page: https://clawhub.ai/misskivin/west-dns-manager
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install west-dns-manager

ClawHub CLI

Package manager switcher

npx clawhub@latest install west-dns-manager
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description say it manages West Digitals DNS and the code implements add/modify/delete using a West API base_url; required inputs (username, api_password, dns fields) match the stated purpose.
Instruction Scope
SKILL.md and handler expect only action, config, and dns_params. The runtime code only reads those inputs and does HTTP POSTs to api.west.cn; it does not access unrelated files, environment variables, or unexpected external endpoints.
Install Mechanism
No install spec is provided (lowest-risk), but repository includes requirements.txt (requests, typing) and a Python file; installing will require adding those packages via pip. There are no downloads from untrusted URLs or archive extraction steps.
Credentials
No platform environment variables or system credentials are requested. The skill asks for a West username and API password in the config object, which is proportional to DNS-management functionality.
Persistence & Privilege
always is false, skill is user-invocable and not forced on every agent run. The code does not modify other skills or system-wide config and does not request permanent platform privileges.
Assessment
This skill appears coherent for managing West Digitals DNS. Before installing, confirm you trust the source (owner unknown), and only provide a West API-specific password (not your login password). The skill will make HTTPS POSTs to https://api.west.cn; review that endpoint and the token scheme if you require cryptographic assurances (the code computes an MD5-based token with a timestamp). Install the required Python packages in a controlled environment, supply minimal-scope API credentials, and consider rotating the API password after use or testing in a sandboxed account first.

Like a lobster shell, security has layers — review code before you run it.

latestvk978wm4sk1jnkgafp5kcmd7be5835e3b
157downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

西部数码域名解析管理

基本信息

  • 技能名称:西部数码域名解析管理
  • 技能 ID:west-dns-manager
  • 版本:1.0.0
  • 入口函数:skill.handler
  • 运行环境:Python3
  • 作者:OpenClaw

功能描述

通过西部数码 API 实现域名解析记录的添加、修改、删除。

输入参数

{ "action": "add/modify/delete", "config": { "username": "西部数码用户名", "api_password": "API密码" }, "dns_params": { "domain": "域名", "host": "主机头", "type": "A/CNAME/MX/TXT/AAAA", "value": "解析值", "old_value": "旧值(修改时必填)", "record_id": "解析ID(可选)" } }

输出结果

{ "success": true/false, "message": "提示信息", "data": {}, "error": "" }

Comments

Loading comments...