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
|
@@ -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;
|
package/src/snapshotCard.js
CHANGED
|
@@ -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;
|