ai-spend-agent 0.1.3 → 0.1.4
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.
- package/dist/index.js +4 -7
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -108,20 +108,17 @@ async function quickstartCommand(args) {
|
|
|
108
108
|
return ok(`${header}\n${summaryText}`);
|
|
109
109
|
}
|
|
110
110
|
function quickstartNextSteps(mode, detected) {
|
|
111
|
+
// Connect/verify guidance now lives in the readout's APPLY/VERIFY sections;
|
|
112
|
+
// this footer only carries what those can't know (detected local keys) and
|
|
113
|
+
// the report/waitlist pointers.
|
|
111
114
|
const steps = [];
|
|
112
|
-
if (mode === "local-logs") {
|
|
113
|
-
steps.push("These numbers are API-equivalent ESTIMATES from your local Claude Code / Codex logs.");
|
|
114
|
-
}
|
|
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
118
|
steps.push(`ai-spend-agent connect ${detected[0].provider} use it — note: COST data needs an ADMIN/owner key`);
|
|
119
119
|
}
|
|
120
|
-
else if (mode === "demo" || mode === "local-logs") {
|
|
121
|
-
steps.push("ai-spend-agent connect openai pull your real OpenAI spend (org-owner admin key, ~2 min)");
|
|
122
|
-
steps.push("ai-spend-agent connect anthropic pull your real Anthropic spend (admin key, ~2 min)");
|
|
123
|
-
}
|
|
124
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");
|
|
125
122
|
steps.push("Want this watched while your laptop is off? Hosted beta waitlist: https://ai-spend-agent.vercel.app");
|
|
126
123
|
return steps;
|
|
127
124
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ai-spend-agent",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
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.
|
|
53
|
-
"@agent-finops/report": "0.1.
|
|
52
|
+
"@agent-finops/core": "0.1.4",
|
|
53
|
+
"@agent-finops/report": "0.1.4",
|
|
54
54
|
"yocto-spinner": "^1.2.0"
|
|
55
55
|
}
|
|
56
56
|
}
|