finops-cost-optimization

Installation
SKILL.md

OCI FinOps - Expert Knowledge

NEVER Do This

NEVER terminate instances without --preserve-boot-volume false

# DEFAULT OCI behavior: boot volume PRESERVED after instance termination
oci compute instance terminate --instance-id <ocid> --force
# Instance gone, but boot volume keeps charging at $0.025/GB/month FOREVER

# RIGHT: explicitly delete boot volume
oci compute instance terminate \
  --instance-id <ocid> \
  --preserve-boot-volume false
Related skills

More from acedergren/agentic-tools

Installs
10
GitHub Stars
14
First Seen
Mar 20, 2026