clawculator 2.8.3 → 2.8.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawculator",
3
- "version": "2.8.3",
3
+ "version": "2.8.4",
4
4
  "description": "AI cost forensics for OpenClaw and multi-model setups. Your friendly penny pincher. 100% offline. Zero AI. Pure deterministic logic.",
5
5
  "main": "src/analyzer.js",
6
6
  "bin": {
@@ -22,7 +22,7 @@ function generateSnapshotCard(analysis, outputDir) {
22
22
  // Exclude: historical session costs, untracked sessions, cache totals, cost gaps
23
23
  // These are noise for "what does it cost to run this setup?"
24
24
  const configFindings = (analysis.findings || []).filter(f => {
25
- const t = (f.title || '').toLowerCase();
25
+ const t = (f.title || f.message || '').toLowerCase();
26
26
  const src = (f.source || '').toLowerCase();
27
27
  // Skip historical/session findings
28
28
  if (t.includes('orphaned session')) return false;
@@ -22,7 +22,7 @@ function generateSnapshotCard(analysis, outputDir) {
22
22
  // Exclude: historical session costs, untracked sessions, cache totals, cost gaps
23
23
  // These are noise for "what does it cost to run this setup?"
24
24
  const configFindings = (analysis.findings || []).filter(f => {
25
- const t = (f.title || '').toLowerCase();
25
+ const t = (f.title || f.message || '').toLowerCase();
26
26
  const src = (f.source || '').toLowerCase();
27
27
  // Skip historical/session findings
28
28
  if (t.includes('orphaned session')) return false;