ai-spend-agent 0.1.4 → 0.1.5

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/dist/index.js +3 -3
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -115,10 +115,10 @@ function quickstartNextSteps(mode, detected) {
115
115
  if (detected.length > 0) {
116
116
  const names = detected.map((credential) => `${credential.provider} (${credential.hint})`).join(", ");
117
117
  steps.push(`Found local key${detected.length === 1 ? "" : "s"}: ${names}`);
118
- steps.push(`ai-spend-agent connect ${detected[0].provider} use it — note: COST data needs an ADMIN/owner key`);
118
+ steps.push(`npx ai-spend-agent connect ${detected[0].provider} use it — note: COST data needs an ADMIN/owner key`);
119
119
  }
120
- steps.push("ai-spend-agent report write a shareable Markdown + HTML report");
121
- steps.push("ai-spend-agent --group-by project see which project burns the most");
120
+ steps.push("npx ai-spend-agent report write a shareable Markdown + HTML report");
121
+ steps.push("npx ai-spend-agent --group-by project see which project burns the most");
122
122
  steps.push("Want this watched while your laptop is off? Hosted beta waitlist: https://ai-spend-agent.vercel.app");
123
123
  return steps;
124
124
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-spend-agent",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Your AI spend in one view, in 90 seconds — local-first CLI for OpenAI, Anthropic, Cursor, Copilot + Claude Code/Codex session logs, with a ranked savings cut list, and flags the tools your agent loads but never uses (dead context).",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -49,8 +49,8 @@
49
49
  "prepack": "npm run build"
50
50
  },
51
51
  "dependencies": {
52
- "@agent-finops/core": "0.1.4",
53
- "@agent-finops/report": "0.1.4",
52
+ "@agent-finops/core": "0.1.5",
53
+ "@agent-finops/report": "0.1.5",
54
54
  "yocto-spinner": "^1.2.0"
55
55
  }
56
56
  }