Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计通过

az-cost-optimizeaz 成本优化

Agent Skill

az-cost-optimize 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

195,216

周安装

8,293

GitHub Stars

31,687

下载量

68,392
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:az-cost-optimize(az 成本优化)
来源仓库:https://github.com/github/awesome-copilot
仓库路径:skills/az-cost-optimize
安装命令:
npx skills add https://github.com/github/awesome-copilot --skill az-cost-optimize
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/github/awesome-copilot --skill az-cost-optimize

简介

分析 Azure 资源和 IaC 文件以确定成本优化,创建跟踪的 GitHub 问题以供实施。

  • 跨订阅和资源组发现 Azure 资源,分析 IaC 文件(Bicep、Terraform、ARM 模板),并从 Log Analytics 收集使用指标以验证当前成本
  • 生成基于证据的优化建议,并根据每月节省、实施工作和风险评估进行优先级评分
  • 为每个优化机会创建单独的 GitHub 问题以及一个用于协调跟踪的 EPIC 问题,并使用特定的 Azure CLI 命令和实施步骤
  • 支持基于 IaC 的修改和直接的 Azure CLI 修改,并根据检测到的基础结构文件提供关于使用哪种方法的明确指导

SKILL.md

Azure Cost Optimize

This workflow analyzes Infrastructure-as-Code (IaC) files and Azure resources to generate cost optimization recommendations. It creates individual GitHub issues for each optimization opportunity plus one EPIC issue to coordinate implementation, enabling efficient tracking and execution of cost savings initiatives.

Prerequisites

  • Azure MCP server configured and authenticated
  • GitHub MCP server configured and authenticated
  • Target GitHub repository identified
  • Azure resources deployed (IaC files optional but helpful)
  • Prefer Azure MCP tools (azmcp-*) over direct Azure CLI when available

Workflow Steps

Step 1: Get Azure Best Practices

Action: Retrieve cost optimization best practices before analysis Tools: Azure MCP best practices tool Process:

  1. Load Best Practices:

- Execute azmcp-bestpractices-get to get some of the latest Azure optimization guidelines. This may not cover all scenarios but provides a foundation. - Use these practices to inform subsequent analysis and recommendations as much as possible - Reference best practices in optimization recommendations, either from the MCP tool output or general Azure documentation

Step 2: Discover Azure Infrastructure

Action: Dynamically discover and analyze Azure resources and configurations Tools: Azure MCP tools + Azure CLI fallback + Local file system access Process:

  1. Resource Discovery:

- Execute azmcp-subscription-list to find available subscriptions - Execute azmcp-group-list --subscription <subscription-id> to find resource groups - Get a list of all resources in the relevant group(s): - Use az resource list --subscription <id> --resource-group <name> - For each resource type, use MCP tools first if possible, then CLI fallback: - azmcp-cosmos-account-list --subscription <id> - Cosmos DB accounts - azmcp-storage-account-list --subscription <id> - Storage accounts - azmcp-monitor-workspace-list --subscription <id> - Log Analytics workspaces - azmcp-keyvault-key-list - Key Vaults - az webapp list - Web Apps (fallback - no MCP tool available) - az appservice plan list - App Service Plans (fallback) - az functionapp list - Function Apps (fallback) - az sql server list - SQL Servers (fallback) - az redis list - Redis Cache (fallback) - ... and so on for other resource types

  1. IaC Detection:

- Use file_search to scan for IaC files: "**/*.bicep", "**/*.tf", "/main.json", "/*template*.json" - Parse resource definitions to understand intended configurations - Compare against discovered resources to identify discrepancies - Note presence of IaC files for implementation recommendations later on - Do NOT use any other file from the repository, only IaC files. Using other files is NOT allowed as it is not a source of truth. - If you do not find IaC files, then STOP and report no IaC files found to the user.

  1. Configuration Analysis:

- Extract current SKUs, tiers, and settings for each resource - Identify resource relationships and dependencies - Map resource utilization patterns where available

Step 3: Collect Usage Metrics & Validate Current Costs

Action: Gather utilization data AND verify actual resource costs Tools: Azure MCP monitoring tools + Azure CLI Process:

  1. Find Monitoring Sources:

- Use azmcp-monitor-workspace-list --subscription <id> to find Log Analytics workspaces - Use azmcp-monitor-table-list --subscription <id> --workspace <name> --table-type "CustomLog" to discover available data

  1. Execute Usage Queries: // CPU utilization for App Services AppServiceAppLogs | where TimeGenerated > ago(7d) | summarize avg(CpuTime) by Resource, bin(TimeGenerated, 1h) // Cosmos DB RU consumption AzureDiagnostics | where ResourceProvider == "MICROSOFT.DOCUMENTDB" | where TimeGenerated > ago(7d) | summarize avg(RequestCharge) by Resource // Storage account access patterns StorageBlobLogs | where TimeGenerated > ago(7d) | summarize RequestCount=count() by AccountName, bin(TimeGenerated, 1d)

- Use azmcp-monitor-log-query with these predefined queries: - Query: "recent" for recent activity patterns - Query: "errors" for error-level logs indicating issues - For custom analysis, use KQL queries:

  1. Calculate Baseline Metrics:

- CPU/Memory utilization averages - Database throughput patterns - Storage access frequency - Function execution rates

  1. VALIDATE CURRENT COSTS:

- Using the SKU/tier configurations discovered in Step 2 - Look up current Azure pricing at https://azure.microsoft.com/pricing/ or use az billing commands - Document: Resource → Current SKU → Estimated monthly cost - Calculate realistic current monthly total before proceeding to recommendations

Step 4: Generate Cost Optimization Recommendations

Action: Analyze resources to identify optimization opportunities Tools: Local analysis using collected data Process:

  1. Apply Optimization Patterns based on resource types found: Compute Optimizations: Database Optimizations: Storage Optimizations: Infrastructure Optimizations:

- App Service Plans: Right-size based on CPU/memory usage - Function Apps: Premium → Consumption plan for low usage - Virtual Machines: Scale down oversized instances - Cosmos DB: - Provisioned → Serverless for variable workloads - Right-size RU/s based on actual usage - SQL Database: Right-size service tiers based on DTU usage - Implement lifecycle policies (Hot → Cool → Archive) - Consolidate redundant storage accounts - Right-size storage tiers based on access patterns - Remove unused/redundant resources - Implement auto-scaling where beneficial - Schedule non-production environments

  1. Calculate Evidence-Based Savings:

- Current validated cost → Target cost = Savings - Document pricing source for both current and target configurations

  1. Calculate Priority Score for each recommendation: Priority Score = (Value Score × Monthly Savings) / (Risk Score × Implementation Days) High Priority: Score > 20 Medium Priority: Score 5-20 Low Priority: Score < 5
  2. Validate Recommendations:

- Ensure Azure CLI commands are accurate - Verify estimated savings calculations - Assess implementation risks and prerequisites - Ensure all savings calculations have supporting evidence

Step 5: User Confirmation

Action: Present summary and get approval before creating GitHub issues Process:

  1. Display Optimization Summary: 🎯 Azure Cost Optimization Summary 📊 Analysis Results: • Total Resources Analyzed: X • Current Monthly Cost: $X • Potential Monthly Savings: $Y • Optimization Opportunities: Z • High Priority Items: N 🏆 Recommendations: 1. [Resource]: [Current SKU] → [Target SKU] = $X/month savings - [Risk Level] | [Implementation Effort] 2. [Resource]: [Current Config] → [Target Config] = $Y/month savings - [Risk Level] | [Implementation Effort] 3. [Resource]: [Current Config] → [Target Config] = $Z/month savings - [Risk Level] | [Implementation Effort]... and so on 💡 This will create: • Y individual GitHub issues (one per optimization) • 1 EPIC issue to coordinate implementation ❓ Proceed with creating GitHub issues? (y/n)
  2. Wait for User Confirmation: Only proceed if user confirms

Step 6: Create Individual Optimization Issues

Action: Create separate GitHub issues for each optimization opportunity. Label them with "cost-optimization" (green color), "azure" (blue color). MCP Tools Required: create_issue for each recommendation Process:

  1. Create Individual Issues using this template: Title Format: [COST-OPT] [Resource Type] - [Brief Description] - $X/month savings Body Template: ``` ## 💰 Cost Optimization: [Brief Title] **Monthly Savings**: $X | **Risk Level**: [Low/Medium/High] | **Implementation Effort**: X days ### 📋 Description [Clear explanation of the optimization and why it's needed] ### 🔧 Implementation **IaC Files Detected**: [Yes/No - based on file_search results] `bash # If IaC files found: Show IaC modifications + deployment # File: infrastructure/bicep/modules/app-service.bicep # Change: sku.name: 'S3' → 'B2' az deployment group create --resource-group [rg] --template-file infrastructure/bicep/main.bicep # If no IaC files: Direct Azure CLI commands + warning # ⚠️ No IaC files found. If they exist elsewhere, modify those instead. az appservice plan update --name [plan] --sku B2 `` 📊 Evidence ✅ Validation Steps ⚠️ Risks & Considerations **Priority Score**: X | **Value**: X/10 | **Risk**: X/10 `

- Current Configuration: [details] - Usage Pattern: [evidence from monitoring data] - Cost Impact: $X/month → $Y/month - Best Practice Alignment: [reference to Azure best practices if applicable] - Test in non-production environment - Verify no performance degradation - Confirm cost reduction in Azure Cost Management - Update monitoring and alerts if needed - [Risk 1 and mitigation] - [Risk 2 and mitigation]

Step 7: Create EPIC Coordinating Issue

Action: Create master issue to track all optimization work. Label it with "cost-optimization" (green color), "azure" (blue color), and "epic" (purple color). MCP Tools Required: create_issue for EPIC Note about mermaid diagrams: Ensure you verify mermaid syntax is correct and create the diagrams taking accessibility guidelines into account (styling, colors, etc.). Process:

  1. Create EPIC Issue: Title: [EPIC] Azure Cost Optimization Initiative - $X/month potential savings Body Template: ``` # 🎯 Azure Cost Optimization EPIC **Total Potential Savings**: $X/month | **Implementation Timeline**: X weeks ## 📊 Executive Summary - **Resources Analyzed**: X - **Optimization Opportunities**: Y - **Total Monthly Savings Potential**: $X - **High Priority Items**: N ## 🏗️ Current Architecture Overview `mermaid graph TB subgraph "Resource Group: [name]" [Generated architecture diagram showing current resources and costs] end `` 📋 Implementation Tracking 🚀 High Priority (Implement First) ⚡ Medium Priority 🔄 Low Priority (Nice to Have) 📈 Progress Tracking 🎯 Success Criteria 📝 Notes `

- #[issue-number]: [Title] - $X/month savings - #[issue-number]: [Title] - $X/month savings - #[issue-number]: [Title] - $X/month savings - #[issue-number]: [Title] - $X/month savings - #[issue-number]: [Title] - $X/month savings - Completed: 0 of Y optimizations - Savings Realized: $0 of $X/month - Implementation Status: Not Started - All high-priority optimizations implemented - >80% of estimated savings realized - No performance degradation observed - Cost monitoring dashboard updated - Review and update this EPIC as issues are completed - Monitor actual vs. estimated savings - Consider scheduling regular cost optimization reviews

Error Handling

  • Cost Validation: If savings estimates lack supporting evidence or seem inconsistent with Azure pricing, re-verify configurations and pricing sources before proceeding
  • Azure Authentication Failure: Provide manual Azure CLI setup steps
  • No Resources Found: Create informational issue about Azure resource deployment
  • GitHub Creation Failure: Output formatted recommendations to console
  • Insufficient Usage Data: Note limitations and provide configuration-based recommendations only

Success Criteria

  • ✅ All cost estimates verified against actual resource configurations and Azure pricing
  • ✅ Individual issues created for each optimization (trackable and assignable)
  • ✅ EPIC issue provides comprehensive coordination and tracking
  • ✅ All recommendations include specific, executable Azure CLI commands
  • ✅ Priority scoring enables ROI-focused implementation
  • ✅ Architecture diagram accurately represents current state
  • ✅ User confirmation prevents unwanted issue creation

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.69%
按下载量换算25,093

Claude

28.13%
按下载量换算19,239

Cursor

21.6%
按下载量换算14,773

Gemini CLI

9.92%
按下载量换算6,784

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills