技能详情(站内镜像,无评论)
作者:Adriano Krauthein @askrauthein
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v0.1.1
统计:⭐ 0 · 250 · 2 current installs · 2 all-time installs
⭐ 0
安装量(当前) 2
🛡 VirusTotal :良性 · OpenClaw :可疑
Package:askrauthein/azion-deploy
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :可疑
OpenClaw 评估
The skill appears to implement exactly the Azion CLI deployment flow, but it references an AZION_TOKEN environment variable in runtime instructions without declaring it and the package source is unknown — a minor incoherence that warrants caution.
目的
Name/description, included helper script, and required binaries (bash, azion) all match the stated purpose of wrapping the Azion CLI for link/build/deploy flows.
说明范围
Runtime instructions and the script keep to Azion-related actions (azion link/build/deploy, whoami, check .edge/manifest.json). However, the script and SKILL.md reference the AZION_TOKEN env var and allow passing `--token` even though no env var is declared in the skill metadata; the platform guidance flags references to env vars not declared in requires.env.
安装机制
No install spec — instruction-only with a helper script included. This minimizes install-time risk (nothing is downloaded or extracted by the skill itself).
证书
The only credential referenced is AZION_TOKEN (appropriate for Azion CLI auth). But the skill's declared requirements list no environment variables or primary credential; the script uses AZION_TOKEN implicitly. That mismatch (undeclared but referenced token) reduces clarity about what secrets are needed and expected.
持久
always is false, the skill is user-invocable and not forced always-on, and it does not attempt to modify other skills or system-wide config. It runs CLI commands only when invoked.
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Azion Deploy」。简介:Deploy applications, static sites, and edge functions to Azion using Azion CLI.…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/askrauthein/azion-deploy/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: azion-deploy
description: Deploy applications, static sites, and edge functions to Azion using Azion CLI. Use when the user asks to deploy/publish to Azion, configure link/build/deploy flow, or troubleshoot Azion auth/project linking problems.
version: 0.1.1
author: AskClaw
entrypoint: scripts/azion-deploy.sh
metadata: {"openclaw":{"emoji":"🚀","short":"Deploy to Azion (CLI)","requires":{"bins":["bash","azion"]}}}
user-invocable: true
command-dispatch: tool
command-tool: azion-deploy
commands:
- name: azion-deploy
usage: azion-deploy <preflight|auth-check|quickstart|deploy-local> [args]
description: Deploy helper wrapper around azion CLI with preflight/auth checks.
---
# azion-deploy
Use this skill to deploy projects to Azion with safe preflight checks.
## Built-in checks
The script fails fast if:
- `azion` executable is missing
- authentication fails (`azion whoami`)
- `.edge/manifest.json` is missing when using `--skip-build`
## Commands
```bash
# Validate CLI + auth
bash {baseDir}/scripts/azion-deploy.sh preflight
# Validate auth only
bash {baseDir}/scripts/azion-deploy.sh auth-check
# Stable quickstart flow
bash {baseDir}/scripts/azion-deploy.sh quickstart --name <project-name> [--token "$AZION_TOKEN"]
# Local deploy flow
bash {baseDir}/scripts/azion-deploy.sh deploy-local [--skip-build] [--auto] [--token "$AZION_TOKEN"]
```
## Notes
- Keep `link -> build -> deploy` sequential (never parallel).
- If `whoami` fails, run `azion login` (interactive) or provide valid `AZION_TOKEN`.
- For detailed flags and framework behavior, read:
- `references/azion-cli.md`
- `references/azion-build-frameworks.md`