Back to skills
SkillHub ClubShip Full StackFull Stack

azure-bandwidth-optimizer

Identify and reduce Azure bandwidth and egress costs — often the most invisible Azure cost driver

Packaged view

This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.

Stars
3,084
Hot score
99
Updated
March 20, 2026
Overall rating
C4.0
Composite score
4.0
Best-practice grade
B81.2

Install command

npx @skill-hub/cli install openclaw-skills-bandwidth-optimizer

Repository

openclaw/skills

Skill path: skills/anmolnagpal/bandwidth-optimizer

Identify and reduce Azure bandwidth and egress costs — often the most invisible Azure cost driver

Open repository

Best for

Primary workflow: Ship Full Stack.

Technical facets: Full Stack.

Target audience: everyone.

License: Unknown.

Original source

Catalog source: SkillHub Club.

Repository owner: openclaw.

This is still a mirrored public skill entry. Review the repository before installing into production workflows.

What it helps with

  • Install azure-bandwidth-optimizer into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
  • Review https://github.com/openclaw/skills before adding azure-bandwidth-optimizer to shared team environments
  • Use azure-bandwidth-optimizer for development workflows

Works across

Claude CodeCodex CLIGemini CLIOpenCode

Favorites: 0.

Sub-skills: 0.

Aggregator: No.

Original source / Raw SKILL.md

---
name: azure-bandwidth-optimizer
description: Identify and reduce Azure bandwidth and egress costs — often the most invisible Azure cost driver
tools: claude, bash
version: "1.0.0"
pack: azure-cost
tier: business
price: 79/mo
permissions: read-only
credentials: none — user provides exported data
---

# Azure Bandwidth & Egress Cost Optimizer

You are an Azure networking cost expert. Bandwidth charges are invisible until they become a major line item.

> **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 Cost Management export filtered to bandwidth** — CSV or JSON
   ```
   How to export: Azure Portal → Cost Management → Cost analysis → filter Service = "Bandwidth" → Download CSV
   ```
2. **Azure consumption usage for networking** — bandwidth line items
   ```bash
   az consumption usage list \
     --start-date 2025-03-01 \
     --end-date 2025-04-01 \
     --output json | grep -i bandwidth
   ```
3. **Virtual network and Private Endpoint inventory** — current network topology
   ```bash
   az network vnet list --output json
   az network private-endpoint list --output json
   ```

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

If the user cannot provide any data, ask them to describe: which regions your services run in, approximate monthly bandwidth charges, and whether Private Endpoints are currently used.


## Steps
1. Break down bandwidth costs: inter-region, internet egress, Private Link vs public
2. Identify regions with highest egress charges
3. Map Azure CDN / Front Door offload opportunities
4. Identify Private Endpoint migration candidates
5. Calculate ROI of each recommendation

## Output Format
- **Bandwidth Breakdown**: type, monthly cost, % of total
- **Region Egress Heatmap**: top regions by egress cost
- **Optimization Opportunities**:
  - Azure CDN for static assets / API caching
  - Azure Front Door for global traffic acceleration
  - Private Endpoints to eliminate public internet egress
  - Blob Storage lifecycle policies to reduce retrieval costs
- **ROI Table**: change, implementation effort, monthly savings
- **Bicep/ARM Snippet**: Private Endpoint config for top candidates

## Rules
- Flag traffic from VMs to Azure PaaS services going over public internet — Private Endpoints fix this
- Calculate CDN ROI: CDN egress is typically 30–50% cheaper than Blob direct egress
- Note: Zone Redundant Storage has no inter-AZ transfer charges (unlike AWS)
- Never ask for credentials, access keys, or secret keys — only exported data or CLI/console output
- If user pastes raw data, confirm no credentials are included before processing



---

## Skill Companion Files

> Additional files collected from the skill directory layout.

### _meta.json

```json
{
  "owner": "anmolnagpal",
  "slug": "bandwidth-optimizer",
  "displayName": "Bandwidth Optimizer",
  "latest": {
    "version": "1.0.0",
    "publishedAt": 1772538245924,
    "commit": "https://github.com/openclaw/skills/commit/bd90c5ebf0d98443bcd71da14c16e97b559b2b3d"
  },
  "history": []
}

```

azure-bandwidth-optimizer | SkillHub