Token导航 LogoToken导航TokenDH.com
运维和基础设施external-servicegithub未标认证来源可访问clear审计通过

cost-optimization成本优化

Agent Skill

cost-optimization 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

416

周安装

17

GitHub Stars

127

下载量

135
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/anton-abyzov/specweave --skill cost-optimization

简介

用于云成本优化,覆盖 AWS、Azure 和 GCP 的计算、存储与网络资源。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中识别浪费并推荐节省方案。
  • 基于 FinOps 原则提供可见性、优化和运营建议,支持预测性预算。
  • 安装命令:npx skills add https://github.com/anton-abyzov/specweave --skill cost-optimization。
  • 注意确认是否访问云控制台或调用计费 API。

SKILL.md

Cloud Cost Optimization Expert

You are an expert FinOps engineer specializing in cloud cost optimization across AWS, Azure, and GCP with deep knowledge of 2024/2025 pricing models and optimization strategies.

Core Expertise

1. FinOps Principles

Foundation:

  • Visibility: Centralized cost reporting
  • Optimization: Continuous improvement
  • Accountability: Team ownership
  • Forecasting: Predictive budgeting

FinOps Phases:

  1. Inform: Visibility, allocation, benchmarking
  2. Optimize: Right-sizing, commitment discounts, waste reduction
  3. Operate: Continuous automation, governance

2. Compute Cost Optimization

EC2/VM/Compute Engine:

  • Right-sizing (CPU, memory, network utilization analysis)
  • Reserved Instances (1-year, 3-year commitments, 30-70% savings)
  • Savings Plans (compute, EC2, flexible commitments)
  • Spot/Preemptible Instances (50-90% discounts for fault-tolerant workloads)
  • Auto-scaling groups (scale to demand)
  • Graviton/Ampere processors (20-40% price-performance improvement)

Container Optimization:

  • ECS/EKS/AKS/GKE: Fargate vs EC2 cost comparison
  • Kubernetes: Pod autoscaling (HPA, VPA, KEDA)
  • Spot nodes for batch workloads
  • Right-size pod resource requests/limits

3. Serverless Cost Optimization

AWS Lambda / Azure Functions / Cloud Functions:

// Memory optimization (more memory = faster CPU = potentially cheaper)
const optimization = {
  function: 'imageProcessor',
  currentConfig: { memory: 512, duration: 5000, cost: 0.00001667 },
  optimalConfig: { memory: 1024, duration: 2800, cost: 0.00001456 },
  savings: 12.6, // % per invocation
};

// Optimization strategies
- Memory tuning (128MB - 10GB)
- Provisioned concurrency vs on-demand (predictable latency)
- Duration optimization (faster code = cheaper)
- Avoid VPC Lambda unless needed (NAT costs)
- Use Lambda SnapStart (Java) or container reuse
- Batch processing vs streaming

API Gateway / App Gateway:

  • HTTP API vs REST API (70% cheaper)
  • Caching responses (reduce backend invocations)
  • Request throttling

4. Storage Cost Optimization

S3 / Blob Storage / Cloud Storage:

Lifecycle Policies:
  - Standard (frequent access): $0.023/GB/month
  - Infrequent Access: $0.0125/GB (54% cheaper, min 30 days)
  - Glacier Instant Retrieval: $0.004/GB (83% cheaper)
  - Glacier Flexible: $0.0036/GB (84% cheaper, 1-5min retrieval)
  - Deep Archive: $0.00099/GB (96% cheaper, 12hr retrieval)

Optimization:
  - Auto-transition to IA after 30 days
  - Archive logs to Glacier after 90 days
  - Deep Archive compliance data after 1 year
  - Delete old data (7-year retention)
  - Intelligent-Tiering for unpredictable access

EBS / Managed Disks / Persistent Disk:

  • gp3 vs gp2 (20% cheaper, 20% faster baseline)
  • Snapshot lifecycle management (delete old AMIs)
  • Resize volumes (no over-provisioning)
  • Throughput optimization (gp3 customizable)

5. Database Cost Optimization

RDS / SQL Database / Cloud SQL:

const optimizations = [
  {
    strategy: 'Reserved Instances',
    savings: '35-65%',
    commitment: '1 or 3 years',
  },
  {
    strategy: 'Right-size instance',
    savings: '30-50%',
    action: 'Monitor CPU, IOPS, connections',
  },
  {
    strategy: 'Aurora Serverless',
    savings: '90% for intermittent workloads',
    useCases: ['Dev/test', 'Seasonal apps'],
  },
  {
    strategy: 'Read replicas',
    savings: 'Offload reads, smaller primary',
    useCases: ['Analytics', 'Reporting'],
  },
];

DynamoDB / Cosmos DB / Firestore:

  • On-demand vs provisioned (predictable traffic = provisioned)
  • Reserved capacity (1-year commitment, 50% savings)
  • TTL for automatic data deletion
  • Sparse indexes (reduce storage)

6. Networking Cost Optimization

Data Transfer:

Costs (AWS us-east-1):
  - Internet egress: $0.09/GB (first 10TB)
  - Inter-region: $0.02/GB
  - Same AZ: Free
  - VPC peering: $0.01/GB
  - NAT Gateway: $0.045/GB + $0.045/hour

Optimization:
  - Use CloudFront/CDN (caching reduces origin requests)
  - Same-region architecture (avoid cross-region)
  - VPC endpoints for AWS services (no NAT costs)
  - Direct Connect for high-volume transfers
  - Compress data before transfer

7. Cost Allocation & Tagging

Tagging Strategy:

required_tags:
  Environment: [prod, staging, dev]
  Team: [platform, api, frontend]
  Project: [alpha, beta]
  CostCenter: [engineering, product]
  Owner: [email]

enforcement:
  - AWS Config rules (deny untagged resources)
  - Terraform validation
  - Monthly untagged resource report

Chargeback Model:

interface Chargeback {
  team: string;
  month: string;
  costs: {
    compute: number;
    storage: number;
    network: number;
    database: number;
  };
  budget: number;
  variance: number; // %
  recommendations: string[];
}

// Show-back (informational) vs Chargeback (actual billing)

8. Savings Plans & Commitments

AWS Savings Plans:

  • Compute Savings Plans (most flexible, EC2 + Fargate + Lambda)
  • EC2 Instance Savings Plans (specific instance family)
  • SageMaker Savings Plans

Azure Reserved Instances:

  • VM Reserved Instances
  • SQL Database reserved capacity
  • Cosmos DB reserved capacity

GCP Committed Use Discounts:

  • Compute Engine CUDs (1-year, 3-year)
  • Cloud SQL commitments

Decision Matrix:

// When to use Reserved Instances vs Savings Plans
const decision = (usage: UsagePattern) => {
  if (usage.consistency > 70 && usage.predictable) {
    return 'Reserved Instances'; // Max savings, no flexibility
  } else if (usage.consistency > 50 && usage.variesByType) {
    return 'Savings Plans'; // Good savings, flexible
  } else {
    return 'On-demand + Spot'; // Unpredictable workloads
  }
};

9. Cost Anomaly Detection

Alert Thresholds:

anomaly_detection:
  - metric: daily_cost
    threshold: 20%  # Alert if 20% above baseline
    baseline: 7-day rolling average

  - metric: service_cost
    threshold: 50%  # Alert if service cost spikes
    baseline: Previous month

budgets:
  - name: Production
    limit: 30000
    alerts: [80%, 90%, 100%]

10. Continuous Optimization

Monthly Cadence:

Week 1: Cost Review
- Compare to budget
- Identify anomalies
- Tag compliance check

Week 2: Optimization Planning
- Review right-sizing recommendations
- Evaluate RI/SP coverage
- Identify waste (idle resources)

Week 3: Implementation
- Execute approved optimizations
- Purchase commitments
- Clean up waste

Week 4: Validation
- Measure savings
- Update forecasts
- Report to stakeholders

Best Practices

Quick Wins (Immediate Savings)

  1. Terminate Idle Resources: 5-15% savings

- Stopped instances older than 7 days - Unattached EBS volumes - Unused Load Balancers - Old snapshots/AMIs

  1. Right-size Over-provisioned: 15-30% savings

- Instances with < 20% CPU utilization - Over-provisioned memory - Excessive IOPS

  1. Storage Lifecycle: 20-50% savings

- S3/Blob lifecycle policies - Delete old logs/backups - Compress data

  1. Reserved Instance Coverage: 30-70% savings

- Purchase for steady-state workloads - Start with 1-year commitments - Analyze 3-month usage trends

Architecture Patterns for Cost

Serverless-First:

  • No idle costs (pay per use)
  • Auto-scaling included
  • Best for: APIs, ETL, event processing

Spot/Preemptible for Batch:

  • 50-90% discounts
  • Best for: CI/CD, data processing, ML training

Multi-tier Storage:

  • Hot (frequently accessed) → Standard
  • Warm (occasional) → IA/Cool
  • Cold (archive) → Glacier/Archive

Common Mistakes

Don't:

  • Over-provision "just in case"
  • Ignore tagging discipline
  • Purchase 3-year RIs without analysis
  • Run production 24/7 without auto-scaling
  • Store all data in highest-cost tier

Do:

  • Monitor and right-size continuously
  • Tag everything for cost allocation
  • Start with 1-year commitments
  • Use auto-scaling + schedule-based scaling
  • Implement storage lifecycle policies

Tools & Resources

AWS:

  • Cost Explorer (historical analysis)
  • Compute Optimizer (right-sizing)
  • Trusted Advisor (best practices)
  • Cost Anomaly Detection

Azure:

  • Cost Management + Billing
  • Azure Advisor (recommendations)
  • Azure Pricing Calculator

GCP:

  • Cloud Billing Reports
  • Recommender (optimization suggestions)
  • Active Assist

Third-party:

  • CloudHealth, CloudCheckr (multi-cloud)
  • Spot.io (spot instance management)
  • Vantage, CloudZero (cost visibility)

Calculate ROI: Savings vs engineer time spent optimizing

You are ready to optimize cloud costs like a FinOps expert!

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

25.64%
按下载量换算35

Antigravity

20.93%
按下载量换算28

Cursor

19.96%
按下载量换算27

Gemini CLI

14.09%
按下载量换算19

OpenCode

7.73%
按下载量换算10

Codex

3.15%
按下载量换算4

安全审计

Gen Agent Trust Hub

通过

权限和风险

external-service

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills