cloud-cost-cli 0.3.0-beta.2 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +5 -10
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
 
8
8
  A command-line tool that analyzes your AWS and Azure resources to identify cost-saving opportunities — idle resources, oversized instances, unattached volumes, and more.
9
9
 
10
- **✨ NEW in v0.3.0-beta:** AI-powered explanations and natural language queries!
10
+ **✨ NEW in v0.3.0:** AI-powered explanations and natural language queries!
11
11
 
12
12
  ---
13
13
 
@@ -36,8 +36,8 @@ Cloud bills are growing faster than revenue. Engineering teams overprovision, fo
36
36
  - ✅ **Multi-cloud support** - AWS and Azure
37
37
  - ✅ **AWS analyzers** - EC2, EBS, RDS, S3, ELB, Elastic IP
38
38
  - ✅ **Azure analyzers** - VMs, Managed Disks, Storage, SQL, Public IPs
39
- - ✅ **🤖 AI-powered explanations** - Get human-readable explanations for why resources are costing money (beta)
40
- - ✅ **💬 Natural language queries** - Ask questions like "What's my biggest cost?" or "Show me idle VMs" (beta)
39
+ - ✅ **🤖 AI-powered explanations** - Get human-readable explanations for why resources are costing money
40
+ - ✅ **💬 Natural language queries** - Ask questions like "What's my biggest cost?" or "Show me idle VMs"
41
41
  - ✅ **🔒 Privacy-first AI** - Use local Ollama or cloud OpenAI
42
42
  - ✅ **💰 Cost tracking** - Track AI API costs (OpenAI only)
43
43
  - ✅ **⚙️ Configuration file** - Save your preferences
@@ -84,11 +84,6 @@ No commitment on timeline - contributions welcome!
84
84
  npm install -g cloud-cost-cli
85
85
  ```
86
86
 
87
- **Try the beta with AI features:**
88
- ```bash
89
- npm install -g cloud-cost-cli@beta
90
- ```
91
-
92
87
  ---
93
88
 
94
89
  ## Usage
@@ -128,7 +123,7 @@ az ad sp create-for-rbac --name "cloud-cost-cli" --role Reader --scopes /subscri
128
123
  # }
129
124
  ```
130
125
 
131
- ### 🤖 AI-Powered Features (Beta)
126
+ ### 🤖 AI-Powered Features
132
127
 
133
128
  **Get AI explanations for opportunities:**
134
129
  ```bash
@@ -424,7 +419,7 @@ A: Read-only permissions for each cloud provider:
424
419
  A: Estimates are based on current pricing and usage patterns. Actual savings may vary by region and your specific pricing agreements (Reserved Instances, Savings Plans, etc.).
425
420
 
426
421
  **Q: Is my data sent to OpenAI?**
427
- A: Only if you use `--ai-provider openai` (the default). Resource metadata and recommendations are sent to OpenAI's API to generate explanations. If you want complete privacy, use `--ai-provider ollama` which runs 100% locally on your machine.
422
+ A: Only if you use OpenAI for AI features. When you use `--explain` without specifying `--ai-provider`, it defaults to OpenAI and requires an API key. Resource metadata and recommendations are sent to OpenAI's API to generate explanations. If you want complete privacy, use `--ai-provider ollama` (or set it in config) which runs 100% locally on your machine.
428
423
 
429
424
  **Q: How much do AI features cost?**
430
425
  A:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cloud-cost-cli",
3
- "version": "0.3.0-beta.2",
3
+ "version": "0.3.0",
4
4
  "description": "Optimize your cloud spend in seconds",
5
5
  "main": "dist/index.js",
6
6
  "bin": {