Find the $15K/month in orphaned resources nobody knows about
Hunts through your cloud accounts for wasted spend — orphaned EBS volumes, idle load balancers, oversized instances, forgotten snapshots, unused Elastic IPs. Generates a cleanup report with estimated savings and the commands to fix each one.
Create a skill called "Cost Bloodhound". Scan my cloud accounts for wasted spend. Using the AWS CLI (and/or GCP/Azure equivalents): 1. Find orphaned EBS volumes: `aws ec2 describe-volumes --filters Name=status,Values=available` 2. Find unused Elastic IPs: `aws ec2 describe-addresses` cross-referenced with running instances 3. Find idle load balancers: ALBs/NLBs with zero healthy targets or negligible traffic 4. Find old snapshots: snapshots older than 90 days not referenced by any AMI 5. Find oversized instances: CloudWatch CPU avg < 10% over 14 days (and memory too, if memory metrics are available) 6. Find idle RDS instances: connections < 1 over 7 days 7. Find unattached EBS volumes across ALL regions For each finding, show: - Resource ID, type, region, and tags - Monthly cost estimate - Recommended action (delete, downsize, or investigate) - The exact CLI command to remediate (with dry-run where available) Generate a summary with total estimated monthly savings.
Uses your cloud CLI to scan for the common patterns that waste 28-32% of
the average cloud bill. No third-party tool needed — just AWS/GCP/Azure
CLI access.
Debug "Access Denied" without guessing which of 47 policies is wrong
Traces the full IAM policy evaluation chain when you hit an Access Denied — identity policies, resource policies, SCPs, permission boundaries — and tells you exactly which policy is blocking and how to fix it.
Stop guessing CPU and memory limits — let actual usage data decide
Analyzes your pod resource usage over time and recommends properly sized requests and limits. Finds the pods running at 2% CPU with 4 cores requested, and the ones getting OOMKilled because limits are too low.
Local-first AI assistant that automates small daily tasks safely on your device
A personal, local-first AI assistant that automates small daily tasks—organizing files, setting reminders, and monitoring system events—without touching sensitive data or taking risky actions without your approval.
Stop audio drift by quarantining variable-frame-rate clips at ingest
Audio slowly drifts out of sync or randomly desyncs in your timeline when footage is variable frame rate — common with iPhone footage, screen recordings, and some OBS workflows. This recipe catches VFR clips at ingest, transcodes them to constant frame rate, and quarantines the originals so drift never reaches your edit.