cloud-storage-optimization

aj-geddes/useful-ai-prompts · updated Apr 8, 2026

$npx skills add https://github.com/aj-geddes/useful-ai-prompts --skill cloud-storage-optimization
0 commentsdiscussion
summary

Optimize cloud storage costs and performance across multiple cloud providers using compression, intelligent tiering, data partitioning, and lifecycle management. Reduce storage costs while maintaining accessibility and compliance requirements.

skill.md

Cloud Storage Optimization

Table of Contents

Overview

Optimize cloud storage costs and performance across multiple cloud providers using compression, intelligent tiering, data partitioning, and lifecycle management. Reduce storage costs while maintaining accessibility and compliance requirements.

When to Use

  • Reducing storage costs
  • Optimizing data access patterns
  • Implementing tiered storage strategies
  • Archiving historical data
  • Improving data retrieval performance
  • Managing compliance requirements
  • Organizing large datasets
  • Optimizing data lakes and data warehouses

Quick Start

Minimal working example:

# Enable Intelligent-Tiering
aws s3api put-bucket-intelligent-tiering-configuration \
  --bucket my-bucket \
  --id OptimizedStorage \
  --intelligent-tiering-configuration '{
    "Id": "OptimizedStorage",
    "Filter": {"Prefix": "data/"},
    "Status": "Enabled",
    "Tierings": [
      {
        "Days": 90,
        "AccessTier": "ARCHIVE_ACCESS"
      },
      {
        "Days": 180,
        "AccessTier": "DEEP_ARCHIVE_ACCESS"
      }
    ]
  }'

# Analyze storage usage
aws s3api list-bucket-metrics-configurations --bucket my-bucket

# Enable S3 Select for cost optimization
aws s3api put-bucket-metrics-configuration \
// ... (see reference guides for full implementation)

Reference Guides

Detailed implementations in the references/ directory:

Guide Contents
AWS S3 Storage Optimization AWS S3 Storage Optimization
Data Compression and Partitioning Strategy Data Compression and Partitioning Strategy
Terraform Multi-Cloud Storage Configuration Terraform Multi-Cloud Storage Configuration
Data Lake Partitioning Strategy Data Lake Partitioning Strategy

Best Practices

✅ DO

  • Use Parquet or ORC formats for analytics
  • Implement tiered storage strategy
  • Partition data by time and queryable dimensions
  • Enable versioning for critical data
  • Use compression (gzip, snappy, brotli)
  • Monitor storage costs regularly
  • Implement data lifecycle policies
  • Archive infrequently accessed data

❌ DON'T

  • Store uncompressed data
  • Keep raw logs long-term
  • Ignore storage optimization
  • Use only hot storage tier
  • Store duplicate data
  • Forget to delete old test data

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.639 reviews
  • Jin Abbas· Dec 20, 2024

    Solid pick for teams standardizing on skills: cloud-storage-optimization is focused, and the summary matches what you get after install.

  • Hassan Sharma· Dec 16, 2024

    Keeps context tight: cloud-storage-optimization is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • Maya Kapoor· Dec 12, 2024

    Registry listing for cloud-storage-optimization matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Ganesh Mohane· Dec 8, 2024

    cloud-storage-optimization is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Rahul Santra· Nov 27, 2024

    Useful defaults in cloud-storage-optimization — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

  • Jin Martin· Nov 7, 2024

    cloud-storage-optimization has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Maya Dixit· Nov 3, 2024

    cloud-storage-optimization reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Min Farah· Oct 26, 2024

    cloud-storage-optimization fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Advait Abebe· Oct 22, 2024

    cloud-storage-optimization is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Maya Thompson· Oct 22, 2024

    Solid pick for teams standardizing on skills: cloud-storage-optimization is focused, and the summary matches what you get after install.

showing 1-10 of 39

1 / 4