sigrank-mcp 0.6.7 → 0.6.8
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/cli.mjs +1 -1
- package/package.json +1 -1
package/cli.mjs
CHANGED
|
@@ -441,7 +441,7 @@ function tokscalePillars() {
|
|
|
441
441
|
const claude = entries.filter(e =>
|
|
442
442
|
e.client === 'claude' &&
|
|
443
443
|
e.model !== '<synthetic>' && e.model !== 'unknown' &&
|
|
444
|
-
e.
|
|
444
|
+
(e.input > 0 || e.output > 0)
|
|
445
445
|
)
|
|
446
446
|
const p = claude.reduce((acc, e) => ({
|
|
447
447
|
input: acc.input + (e.input ?? 0),
|