Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add chaterm/terminal-skills --skill azure-cligit clone --depth 1 https://github.com/chaterm/terminal-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/chaterm/terminal-skills/azure-cli)<a href="https://agentmods.dev/skills/chaterm/terminal-skills/azure-cli"><img src="https://agentmods.dev/badge/skills/chaterm/terminal-skills/azure-cli.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00007 | $0.01707 |
| Opus 5 | $0.00003 | $0.00853 |
| Sonnet 5 | $0.00001 | $0.00341 |
| Haiku 4.5 | $0.00001 | $0.00171 |
Grade A, and why
azure-cli scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 285 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Azure CLI 操作
概述
Azure 资源管理、AKS、存储操作等技能。
配置与认证
# 登录
az login
az login --use-device-code # 设备代码登录
az login --service-principal -u <app-id> -p <password> --tenant <tenant-id>
# 查看账户
az account show
az account list --output table
# 切换订阅
az account set --subscription "subscription-name"
az account set --subscription "subscription-id"
# 查看当前配置
az configure --list-defaults
# 设置默认值
az configure --defaults group=myResourceGroup location=eastus
资源组
# 列出资源组
az group list --output table
# 创建资源组
az group create --name myResourceGroup --location eastus
# 删除资源组
az group delete --name myResourceGroup --yes --no-wait
# 查看资源组中的资源
az resource list --resource-group myResourceGroup --output table
虚拟机
VM 管理
# 列出 VM
az vm list --output table
az vm list --resource-group myResourceGroup --output table
# 创建 VM
az vm create \
--resource-group myResourceGroup \
--name myVM \
--image Ubuntu2204 \
--admin-username azureuser \
--generate-ssh-keys \
--size Standard_B2s
# 启动/停止 VM
az vm start --resource-group myResourceGroup --name myVM
az vm stop --resource-group myResourceGroup --name myVM
az vm deallocate --resource-group myResourceGroup --name myVM
az vm restart --resource-group myResourceGroup --name myVM
# 删除 VM
az vm delete --resource-group myResourceGroup --name myVM --yes
# 查看 VM 详情
az vm show --resource-group myResourceGroup --name myVM
az vm get-instance-view --resource-group myResourceGroup --name myVM
VM 操作
# 获取公网 IP
az vm list-ip-addresses --resource-group myResourceGroup --name myVM --output table
# 打开端口
az vm open-port --resource-group myResourceGroup --name myVM --port 80
# 调整大小
az vm resize --resource-group myResourceGroup --name myVM --size Standard_D4s_v3
# 运行命令
az vm run-command invoke \
--resource-group myResourceGroup \
--name myVM \
--command-id RunShellScript \
--scripts "apt-get update && apt-get install -y nginx"
存储账户
账户管理
# 列出存储账户
az storage account list --output table
# 创建存储账户
az storage account create \
--name mystorageaccount \
--resource-group myResourceGroup \
--location eastus \
--sku Standard_LRS
# 获取连接字符串
az storage account show-connection-string \
--name mystorageaccount \
--resource-group myResourceGroup
# 获取密钥
az storage account keys list \
--account-name mystorageaccount \
--resource-group myResourceGroup
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 8d ago First seen · 285 lines · 7 tokens per session scan A c4a1beffa103
azure-cli is a skill published in the GitHub repository chaterm/terminal-skills (58 stars, last pushed 6mo ago), licensed Apache-2.0. It adds 7 tokens to every session and 1,707 once invoked, about $0.0000 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
c-files
Sync files to Google Drive, S3, Dropbox, OneDrive, and 70+ cloud providers using rclone.
azure-cli
Operational skill for agents to manage Microsoft Azure via az CLI - subscriptions, resource groups, AKS, App Service, Key Vault, and RBAC hygiene.
awesome-azd-template-submit
Submit an azd template to the awesome-azd gallery. Use when asked to submit, add, or contribute a template to awesome-azd. Requires only a GitHub repository URL — all metadata (title, description, languages, frameworks, Azure services, IaC) is auto-detected by the submission pipeline.
cloudflare-api
Hit the Cloudflare REST API directly for operations that wrangler and MCP can't handle well. Bulk DNS, custom hostnames, email routing, cache purge, WAF rules, redirect rules, zone settings, Worker routes, D1 cross-database queries, R2 bulk operations, KV bulk read/write, Vectorize queries, Queues, and fleet-wide…
hono-api-scaffolder
Scaffold Hono API routes for Cloudflare Workers. Produces route files, middleware, typed bindings, Zod validation, error handling, and APIENDPOINTS.md documentation. Use after a project is set up with cloudflare-worker-builder or vite-flare-starter, when you need to add API routes, create endpoints, or generate API…
Cloud Security & Container Hardening
AWS/Azure/GCP security auditing, container and Kubernetes hardening, Infrastructure as Code scanning, and cloud compliance assessment.