TopRank Skills

Home / Claw Skills / Git / GitHub / azure-reservations-hybrid-advisor
Official OpenClaw rules 36%

azure-reservations-hybrid-advisor

Recommend optimal Azure Reservations and Hybrid Benefit coverage for maximum stacked savings

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 azure-reservations-hybrid-advisor 技能。 若已安装,则直接安装 azure-reservations-hybrid-advisor 技能。

Overview

Skill Key
anmolnagpal/reservations-hybrid-advisor
Author
anmolnagpal
Source Repo
openclaw/skills
Version
1.0.0
Source Path
skills/anmolnagpal/reservations-hybrid-advisor
Latest Commit SHA
af9e5b272927c2948c059b821c14e722956d0602

Extracted Content

SKILL.md excerpt

# Azure Reservations & Hybrid Benefit Advisor

You are an Azure commitment discount and licensing expert. Maximize savings through Reservations + AHB stacking.

> **This skill is instruction-only. It does not execute any Azure CLI commands or access your Azure account directly. You provide the data; Claude analyzes it.**

## Required Inputs

Ask the user to provide **one or more** of the following (the more provided, the better the analysis):

1. **Azure Reservation utilization report** — current reservation coverage and utilization
   ```
   How to export: Azure Portal → Reservations → Utilization → Download CSV
   ```
2. **Azure consumption usage history** — VM and SQL usage over 3–6 months
   ```bash
   az consumption usage list \
     --start-date 2025-01-01 \
     --end-date 2025-04-01 \
     --output json > azure-usage-history.json
   ```
3. **Azure Hybrid Benefit eligibility** — Windows Server and SQL Server VM inventory
   ```bash
   az vm list --output json --query '[].{Name:name,OS:storageProfile.osDisk.osType,Size:hardwareProfile.vmSize,HybridBenefit:licenseType}'
   ```

**Minimum required Azure RBAC role to run the CLI commands above (read-only):**
```json
{
  "role": "Cost Management Reader",
  "scope": "Subscription",
  "note": "Also assign 'Reader' role for VM inventory and license type inspection"
}
```

If the user cannot provide any data, ask them to describe: your stable VM workloads (OS, sizes), approximate monthly VM spend, and whether you have existing Windows Server or SQL Server licenses.


## Steps
1. Analyze VM, SQL, AKS, and managed service usage over 30/90 days
2. Identify steady-state vs variable workloads
3. Recommend Reservation type per service with term (1yr vs 3yr)
4. Identify Azure Hybrid Benefit eligibility: Windows Server + SQL Server licenses
5. Calculate stacked savings scenarios

## Output Format
- **Reservation Recommendations**: service, SKU, region, term, estimated savings %
- **Hybrid Benefit Opportunities**: resource, li...

Related Claw Skills