burnwatch 0.13.1 → 0.14.1
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/CHANGELOG.md +9 -0
- package/README.md +276 -214
- package/billing/anthropic.json +49 -0
- package/billing/billing.schema.json +213 -0
- package/billing/browserbase.json +68 -0
- package/billing/google-gemini.json +66 -0
- package/billing/inngest.json +45 -0
- package/billing/openai.json +70 -0
- package/billing/posthog.json +61 -0
- package/billing/resend.json +49 -0
- package/billing/scrapfly.json +38 -0
- package/billing/supabase.json +32 -0
- package/billing/upstash.json +65 -0
- package/billing/vercel.json +85 -0
- package/billing/voyage-ai.json +42 -0
- package/dist/cli.js +542 -299
- package/dist/cli.js.map +1 -1
- package/dist/cost-impact.d.ts +8 -4
- package/dist/cost-impact.js +261 -72
- package/dist/cost-impact.js.map +1 -1
- package/dist/{detector-myYS2eVC.d.ts → detector-CkgIuoqj.d.ts} +1 -1
- package/dist/hooks/on-file-change.js +271 -88
- package/dist/hooks/on-file-change.js.map +1 -1
- package/dist/hooks/on-prompt.js +9 -2
- package/dist/hooks/on-prompt.js.map +1 -1
- package/dist/hooks/on-session-start.js +152 -97
- package/dist/hooks/on-session-start.js.map +1 -1
- package/dist/hooks/on-stop.js +89 -57
- package/dist/hooks/on-stop.js.map +1 -1
- package/dist/index.d.ts +6 -4
- package/dist/index.js +318 -118
- package/dist/index.js.map +1 -1
- package/dist/interactive-init.d.ts +2 -2
- package/dist/interactive-init.js +46 -19
- package/dist/interactive-init.js.map +1 -1
- package/dist/mcp-server.js +763 -103
- package/dist/mcp-server.js.map +1 -1
- package/dist/{types-BwIeWOYc.d.ts → types-Be52LNVD.d.ts} +8 -0
- package/llms.txt +1 -1
- package/package.json +2 -1
- package/registry.json +11 -67
- package/skills/burnwatch-interview/SKILL.md +2 -4
- package/skills/setup-burnwatch/SKILL.md +7 -9
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,15 @@ All notable changes to burnwatch will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.13.2] - 2026-03-25
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- **Flat fees now show full monthly cost**: Services on flat plans (Anthropic Max, Vercel Pro, Browserbase Startup, etc.) now display the full monthly plan cost instead of a prorated day-of-month estimate. Flat fees are already paid — prorating them understated the real expense. Usage-based plans continue to show prorated projections.
|
|
13
|
+
- **Plan matching disambiguation**: When multiple plans share a prefix (e.g., "Max ($100/mo)" vs "Max ($200/mo)"), burnwatch now disambiguates using the `--budget` hint or `$` amount in the plan name. Previously it always picked the first match.
|
|
14
|
+
- **Right border alignment in box rendering**: The status box now calculates visual width of emoji characters (✅, 🟡, 🔴, ⚠️, 🚨) correctly, so the right `║` border aligns consistently across all rows — including in non-terminal (agent/IDE) contexts where emoji widths differ.
|
|
15
|
+
- **Budgets default to plan costs**: Flat plan budgets now consistently default to `monthlyBase` across all configuration paths (CLI, auto-configure, probe auto-apply).
|
|
16
|
+
|
|
8
17
|
## [0.13.1] - 2026-03-25
|
|
9
18
|
|
|
10
19
|
### Fixed
|