Skills azion-deploy
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.
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/askrauthein/azion-deploy" ~/.claude/skills/openclaw-skills-azion-deploy && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/askrauthein/azion-deploy" ~/.openclaw/skills/openclaw-skills-azion-deploy && rm -rf "$T"
manifest:
skills/askrauthein/azion-deploy/SKILL.mdsource content
azion-deploy
Use this skill to deploy projects to Azion with safe preflight checks.
Built-in checks
The script fails fast if:
executable is missingazion- authentication fails (
)azion whoami
is missing when using.edge/manifest.json--skip-build
Commands
# 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
sequential (never parallel).link -> build -> deploy - If
fails, runwhoami
(interactive) or provide validazion login
.AZION_TOKEN - For detailed flags and framework behavior, read:
references/azion-cli.mdreferences/azion-build-frameworks.md