惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
腾讯CDC
宝玉的分享
宝玉的分享
量子位
Recent Announcements
Recent Announcements
Martin Fowler
Martin Fowler
J
Java Code Geeks
V
Visual Studio Blog
阮一峰的网络日志
阮一峰的网络日志
Blog — PlanetScale
Blog — PlanetScale
大猫的无限游戏
大猫的无限游戏
博客园 - 叶小钗
S
SegmentFault 最新的问题
B
Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 【当耐特】
小众软件
小众软件
The Cloudflare Blog
Y
Y Combinator Blog
I
InfoQ
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
GbyAI
GbyAI
IT之家
IT之家

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(status): render sub-1000 token counts as plain intege...
jbetala7 · 2026-06-14 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -1,6 +1,6 @@

11

// Status format tests cover compact token and prompt-cache display helpers.

22

import { describe, expect, it } from "vitest";

3-

import { formatPromptCacheCompact, formatTokensCompact } from "./status.format.js";

3+

import { formatKTokens, formatPromptCacheCompact, formatTokensCompact } from "./status.format.js";

44
55

describe("status cache formatting", () => {

66

it("formats explicit cache details for verbose status output", () => {

@@ -37,4 +37,35 @@ describe("status cache formatting", () => {

3737

}),

3838

).toBe("5.0k/10k (50%) · 🗄️ 67% cached");

3939

});

40+
41+

it("renders sub-1000 token counts as plain integers, not fractional k", () => {

42+

expect(formatKTokens(0)).toBe("0");

43+

expect(formatKTokens(420)).toBe("420");

44+

// 999 must not round up across the boundary into a misleading "1.0k".

45+

expect(formatKTokens(999)).toBe("999");

46+

expect(formatKTokens(1_000)).toBe("1.0k");

47+

expect(formatKTokens(12_000)).toBe("12k");

48+

expect(formatKTokens(999_500)).toBe("1.0m");

49+

});

50+
51+

it("keeps small sessions and cache writes readable in status output", () => {

52+

expect(

53+

formatTokensCompact({

54+

inputTokens: 120,

55+

cacheRead: 0,

56+

cacheWrite: 0,

57+

totalTokens: 420,

58+

contextTokens: 200_000,

59+

percentUsed: 0,

60+

}),

61+

).toBe("420/200k (0%)");

62+

expect(

63+

formatPromptCacheCompact({

64+

inputTokens: 9_000,

65+

cacheRead: 12_000,

66+

cacheWrite: 300,

67+

totalTokens: 21_300,

68+

}),

69+

).toBe("56% hit · read 12k · write 300");

70+

});

4071

});

Original file line numberDiff line numberDiff line change

@@ -5,12 +5,11 @@ import { normalizeLowercaseStringOrEmpty } from "@openclaw/normalization-core/st

55

import { getSystemdCgroupHygieneSummary } from "../daemon/service-runtime.js";

66

import { formatDurationPrecise } from "../infra/format-time/format-duration.ts";

77

import { formatRuntimeStatusWithDetails } from "../infra/runtime-status.ts";

8+

import { formatTokenCount } from "../utils/token-format.js";

89

import type { SessionStatus } from "./status.types.js";

910

export { shortenText } from "./text-format.js";

1011
11-

/** Formats a token count in thousands for compact status rows. */

12-

export const formatKTokens = (value: number) =>

13-

`${(value / 1000).toFixed(value >= 10_000 ? 0 : 1)}k`;

12+

export const formatKTokens = formatTokenCount;

1413
1514

/** Formats a duration or returns `unknown` for missing/non-finite values. */

1615

export const formatDuration = (ms: number | null | undefined) => {

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,19 @@

1+

/** Formats a token count for compact human-facing status text. */

2+

export function formatTokenCount(value?: number): string {

3+

if (value === undefined || !Number.isFinite(value)) {

4+

return "0";

5+

}

6+

const safe = Math.max(0, value);

7+

if (safe >= 1_000_000) {

8+

return `${(safe / 1_000_000).toFixed(1)}m`;

9+

}

10+

if (safe >= 1_000) {

11+

const precision = safe >= 10_000 ? 0 : 1;

12+

const formattedThousands = (safe / 1_000).toFixed(precision);

13+

if (Number(formattedThousands) >= 1_000) {

14+

return `${(safe / 1_000_000).toFixed(1)}m`;

15+

}

16+

return `${formattedThousands}k`;

17+

}

18+

return String(Math.round(safe));

19+

}

Original file line numberDiff line numberDiff line change

@@ -12,6 +12,7 @@ import type { OpenClawConfig } from "../config/types.openclaw.js";

1212

import { getGatewayModelPricingCacheFingerprint } from "../gateway/model-pricing-cache-state.js";

1313

import { getCachedGatewayModelPricing } from "../gateway/model-pricing-cache.js";

1414

import { tryReadJsonSync } from "../infra/json-files.js";

15+

export { formatTokenCount } from "./token-format.js";

1516
1617

/**

1718

* A single tier in a tiered-pricing schedule. Prices are expressed as

@@ -99,26 +100,6 @@ let providerCostIndexByConfig = new WeakMap<

99100

let modelKeyCache = new Map<string, string | null>();

100101

let sortedPricingTiersByInput = new WeakMap<PricingTier[], PricingTier[]>();

101102
102-

/** Formats a token count for compact human-facing status text. */

103-

export function formatTokenCount(value?: number): string {

104-

if (value === undefined || !Number.isFinite(value)) {

105-

return "0";

106-

}

107-

const safe = Math.max(0, value);

108-

if (safe >= 1_000_000) {

109-

return `${(safe / 1_000_000).toFixed(1)}m`;

110-

}

111-

if (safe >= 1_000) {

112-

const precision = safe >= 10_000 ? 0 : 1;

113-

const formattedThousands = (safe / 1_000).toFixed(precision);

114-

if (Number(formattedThousands) >= 1_000) {

115-

return `${(safe / 1_000_000).toFixed(1)}m`;

116-

}

117-

return `${formattedThousands}k`;

118-

}

119-

return String(Math.round(safe));

120-

}

121-
122103

/** Formats a USD amount for usage summaries, keeping tiny costs visible. */

123104

export function formatUsd(value?: number): string | undefined {

124105

if (value === undefined || !Number.isFinite(value)) {