@mrclrchtr/supi-cache 1.12.1 → 1.14.0

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.
@@ -21,6 +21,7 @@ pnpm add @mrclrchtr/supi-core
21
21
  ## Package surfaces
22
22
 
23
23
  - `@mrclrchtr/supi-core/api` — reusable helpers for other packages and extensions
24
+ - `@mrclrchtr/supi-core/report` — shared text/report rendering helpers for TUI and plain-text summaries
24
25
 
25
26
  ## What you get from the API
26
27
 
@@ -71,6 +72,14 @@ The built-in settings UI supports:
71
72
  - active-branch session helper: `getActiveBranchEntries()`
72
73
  - terminal helpers such as `formatTitle()`, `signalWaiting()`, and `signalDone()`
73
74
 
75
+ ### Report helpers
76
+
77
+ - `clampReportWidth()` — enforce a minimum readable report width
78
+ - `formatReportTitle()` / `formatSectionHeader()` — shared themed headers
79
+ - `formatDimLine()` / `formatKeyValueLine()` — common summary rows
80
+ - `formatOverflowHint()` — consistent preview-overflow hints
81
+ - `wrapReportText()` — ANSI-aware wrapped report blocks with optional indentation
82
+
74
83
  ## Example
75
84
 
76
85
  ```ts
@@ -101,3 +110,4 @@ const message = wrapExtensionContext("my-extension", "hello", {
101
110
  - `src/config.ts` — shared config loading and writing
102
111
  - `src/config-settings.ts` — config-backed settings registration helper
103
112
  - `src/settings-ui.ts` — shared settings overlay
113
+ - `src/report.ts` — shared text/report rendering helpers
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mrclrchtr/supi-core",
3
- "version": "1.12.1",
3
+ "version": "1.14.0",
4
4
  "description": "SuPi core — shared infrastructure for SuPi extensions (XML context tags, config system)",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -44,9 +44,11 @@
44
44
  "./config": "./src/config.ts",
45
45
  "./context": "./src/context.ts",
46
46
  "./debug": "./src/debug-registry.ts",
47
+ "./footer-registry": "./src/footer-registry.ts",
47
48
  "./llm": "./src/llm.ts",
48
49
  "./package.json": "./package.json",
49
50
  "./path": "./src/path.ts",
51
+ "./report": "./src/report.ts",
50
52
  "./progress-widget": "./src/progress-widget.ts",
51
53
  "./project": "./src/project.ts",
52
54
  "./session": "./src/session.ts",
@@ -13,12 +13,16 @@ export * from "./context.ts";
13
13
  // biome-ignore lint/performance/noReExportAll: intentional convenience barrel
14
14
  export * from "./debug-registry.ts";
15
15
  // biome-ignore lint/performance/noReExportAll: intentional convenience barrel
16
+ export * from "./footer-registry.ts";
17
+ // biome-ignore lint/performance/noReExportAll: intentional convenience barrel
16
18
  export * from "./llm.ts";
17
19
  // biome-ignore lint/performance/noReExportAll: intentional convenience barrel
18
20
  export * from "./path.ts";
19
21
  // biome-ignore lint/performance/noReExportAll: intentional convenience barrel
20
22
  export * from "./project.ts";
21
23
  // biome-ignore lint/performance/noReExportAll: intentional convenience barrel
24
+ export * from "./report.ts";
25
+ // biome-ignore lint/performance/noReExportAll: intentional convenience barrel
22
26
  export * from "./session.ts";
23
27
  // biome-ignore lint/performance/noReExportAll: intentional convenience barrel
24
28
  export * from "./settings.ts";
@@ -0,0 +1,57 @@
1
+ // Shared footer contribution registry for SuPi extensions.
2
+ //
3
+ // Extensions register pre-styled text chunks with a placement hint
4
+ // ("stats" for the metrics line, "status" for the extension status line).
5
+ // The custom footer in supi-extras (or PI's built-in footer) reads these
6
+ // contributions and renders them alongside the built-in metrics.
7
+
8
+ import { createRegistry } from "./registry-utils.ts";
9
+
10
+ /** Where the contribution should appear in the footer. */
11
+ export type FooterPlacement = "stats" | "status";
12
+
13
+ /** A single footer contribution registered by an extension. */
14
+ export interface FooterContribution {
15
+ /** Unique key for this contribution. Re-registering with the same key replaces it. */
16
+ key: string;
17
+ /** Which footer line this belongs on. */
18
+ placement: FooterPlacement;
19
+ /**
20
+ * Sort order within the placement (lower values render further left). Default: 100.
21
+ * Priority 0 is reserved for the turn cache-hit part so it stays adjacent to CH.
22
+ */
23
+ priority?: number;
24
+ /** Return the pre-styled text for this contribution. Called on every render. */
25
+ render: () => string;
26
+ }
27
+
28
+ const registry = createRegistry<FooterContribution>("footer-contributions");
29
+
30
+ function sortByPriority(a: FooterContribution, b: FooterContribution): number {
31
+ return (a.priority ?? 100) - (b.priority ?? 100);
32
+ }
33
+
34
+ export const footerContributions = {
35
+ /** Register or replace a footer contribution. */
36
+ register(contribution: FooterContribution): void {
37
+ registry.register(contribution.key, contribution);
38
+ },
39
+
40
+ /** Remove a contribution (e.g. on session_shutdown or when disabled). */
41
+ unregister(key: string): void {
42
+ registry.unregister(key);
43
+ },
44
+
45
+ /** Get contributions for a specific placement, sorted by priority. */
46
+ getByPlacement(placement: FooterPlacement): FooterContribution[] {
47
+ return registry
48
+ .getAll()
49
+ .filter((c) => c.placement === placement)
50
+ .sort(sortByPriority);
51
+ },
52
+
53
+ /** Remove all contributions (primarily for tests). */
54
+ clear(): void {
55
+ registry.clear();
56
+ },
57
+ };
@@ -13,10 +13,14 @@ export * from "./context.ts";
13
13
  // biome-ignore lint/performance/noReExportAll: intentional convenience barrel
14
14
  export * from "./debug-registry.ts";
15
15
  // biome-ignore lint/performance/noReExportAll: intentional convenience barrel
16
+ export * from "./footer-registry.ts";
17
+ // biome-ignore lint/performance/noReExportAll: intentional convenience barrel
16
18
  export * from "./path.ts";
17
19
  // biome-ignore lint/performance/noReExportAll: intentional convenience barrel
18
20
  export * from "./project.ts";
19
21
  // biome-ignore lint/performance/noReExportAll: intentional convenience barrel
22
+ export * from "./report.ts";
23
+ // biome-ignore lint/performance/noReExportAll: intentional convenience barrel
20
24
  export * from "./session.ts";
21
25
  // biome-ignore lint/performance/noReExportAll: intentional convenience barrel
22
26
  export * from "./settings.ts";
@@ -8,16 +8,38 @@ import { CancellableLoader, Container, Text } from "@earendil-works/pi-tui";
8
8
 
9
9
  // ── Types ──────────────────────────────────────────────────────────────────
10
10
 
11
+ /** What the reviewer is currently doing and on what. */
12
+ export interface CurrentFocus {
13
+ /** Display label for the active tool (e.g. "Reading", "Searching", "Finding"). */
14
+ label: string;
15
+ /** Context detail (e.g. file path, search pattern, directory). */
16
+ detail: string;
17
+ }
18
+
11
19
  /** Progress state for widget display, compatible with child-session updates. */
12
20
  export interface WidgetProgress {
13
21
  /** Number of agent turns completed. */
14
22
  turns: number;
15
23
  /** Number of tool executions started. */
16
24
  toolUses: number;
17
- /** Human-readable active tool descriptions. */
18
- activities: string[];
19
25
  /** Token usage stats, if available. */
20
- tokens?: { input: number; output: number; total: number };
26
+ tokens?: {
27
+ input: number;
28
+ output: number;
29
+ total: number;
30
+ cacheRead?: number;
31
+ cacheWrite?: number;
32
+ };
33
+ /** Per-tool execution counts keyed by short display label (e.g. "diffs", "reads", "greps"). */
34
+ toolCounts?: Record<string, number>;
35
+ /** Number of distinct files inspected so far (via read_snapshot_diff / read_snapshot_file). */
36
+ filesInspected?: number;
37
+ /** Total files in the review snapshot. */
38
+ filesTotal?: number;
39
+ /** Current tool + context for the progress narrative line. */
40
+ currentFocus?: CurrentFocus;
41
+ /** Elapsed time in milliseconds since the operation started. */
42
+ elapsedMs?: number;
21
43
  }
22
44
 
23
45
  // ── Widget ─────────────────────────────────────────────────────────────────
@@ -25,12 +47,12 @@ export interface WidgetProgress {
25
47
  /**
26
48
  * TUI progress widget for long-running operations.
27
49
  *
28
- * Shows an animated loader, turn count, tool uses, token count, and any active
29
- * tool descriptions while the child session or operation is running.
50
+ * Two-line layout: top line shows the narrative (current focus + file progress),
51
+ * bottom line shows stats (tokens, elapsed time, turns, tool counts).
30
52
  */
31
53
  export class ProgressWidget extends Container {
32
54
  private message: string;
33
- private progress: WidgetProgress = { turns: 0, toolUses: 0, activities: [] };
55
+ private progress: WidgetProgress = { turns: 0, toolUses: 0 };
34
56
  private loader: CancellableLoader;
35
57
  private tui: { requestRender(): void };
36
58
  private theme: Theme;
@@ -79,30 +101,89 @@ export class ProgressWidget extends Container {
79
101
 
80
102
  private renderContent(): void {
81
103
  this.clear();
104
+ this.renderTopLine();
105
+ this.renderBottomLine();
106
+ }
82
107
 
83
- const stats: string[] = [];
84
- if (this.progress.turns > 0) stats.push(`⟳${this.progress.turns}`);
85
- if (this.progress.toolUses > 0) stats.push(`${this.progress.toolUses} tool uses`);
86
- if (this.progress.tokens) stats.push(`${formatTokens(this.progress.tokens.total)} tokens`);
108
+ private renderTopLine(): void {
109
+ const topParts: string[] = [];
87
110
 
88
- const loaderMessage =
89
- stats.length > 0 ? `${this.message} · ${stats.join(" · ")}` : this.message;
111
+ if (this.progress.currentFocus) {
112
+ const { label, detail } = this.progress.currentFocus;
113
+ topParts.push(detail ? `${label}: ${detail}` : label);
114
+ }
115
+
116
+ if (this.progress.filesTotal && this.progress.filesTotal > 0) {
117
+ const inspected = this.progress.filesInspected ?? 0;
118
+ topParts.push(`${inspected}/${this.progress.filesTotal} files`);
119
+ }
90
120
 
121
+ const loaderMessage =
122
+ topParts.length > 0 ? `${this.message} · ${topParts.join(" · ")}` : this.message;
91
123
  this.loader.setMessage(loaderMessage);
92
124
  this.addChild(this.loader);
125
+ }
126
+
127
+ private renderBottomLine(): void {
128
+ const stats: string[] = [];
129
+
130
+ this.appendTokenStats(stats);
131
+
132
+ if (this.progress.elapsedMs !== undefined && this.progress.elapsedMs >= 1000) {
133
+ stats.push(formatElapsed(this.progress.elapsedMs));
134
+ }
93
135
 
94
- if (this.progress.activities.length > 0) {
95
- this.addChild(
96
- new Text(this.theme.fg("dim", ` ⎿ ${this.progress.activities.join(", ")}…`), 1, 0),
97
- );
136
+ if (this.progress.turns > 0) {
137
+ stats.push(`⟳ ${this.progress.turns}`);
98
138
  }
139
+
140
+ if (this.progress.toolCounts) {
141
+ const parts = Object.entries(this.progress.toolCounts)
142
+ .filter(([, count]) => count > 0)
143
+ .sort(([, a], [, b]) => b - a)
144
+ .map(([label, count]) => `${count} ${label}`);
145
+ if (parts.length > 0) stats.push(parts.join(" · "));
146
+ }
147
+
148
+ if (stats.length > 0) {
149
+ this.addChild(new Text(this.theme.fg("dim", ` ${stats.join(" · ")}`), 1, 0));
150
+ }
151
+ }
152
+
153
+ private appendTokenStats(stats: string[]): void {
154
+ const tokens = this.progress.tokens;
155
+ if (!tokens) return;
156
+
157
+ stats.push(`↑ ${formatTokens(tokens.input)}`);
158
+ if (tokens.cacheRead !== undefined && tokens.cacheRead > 0) {
159
+ stats.push(`↲ ${formatTokens(tokens.cacheRead)}`);
160
+ }
161
+ if (tokens.cacheWrite !== undefined && tokens.cacheWrite > 0) {
162
+ stats.push(`↱ ${formatTokens(tokens.cacheWrite)}`);
163
+ }
164
+ stats.push(`↓ ${formatTokens(tokens.output)}`);
99
165
  }
100
166
  }
101
167
 
102
168
  // ── Helpers ────────────────────────────────────────────────────────────────
103
169
 
104
- function formatTokens(count: number): string {
170
+ export function formatTokens(count: number): string {
105
171
  if (count >= 1_000_000) return `${(count / 1_000_000).toFixed(1)}M`;
106
172
  if (count >= 1_000) return `${(count / 1_000).toFixed(1)}k`;
107
173
  return String(count);
108
174
  }
175
+
176
+ export function formatElapsed(ms: number): string {
177
+ const totalSec = Math.floor(ms / 1000);
178
+ const hours = Math.floor(totalSec / 3600);
179
+ const minutes = Math.floor((totalSec % 3600) / 60);
180
+ const seconds = totalSec % 60;
181
+
182
+ if (hours > 0) {
183
+ return `${hours}h ${minutes}m ${seconds}s`;
184
+ }
185
+ if (minutes > 0) {
186
+ return `${minutes}m ${seconds}s`;
187
+ }
188
+ return `${seconds}s`;
189
+ }
@@ -27,7 +27,7 @@ function getGlobalRegistryMap<T>(name: string): Map<string, T> {
27
27
  *
28
28
  * @typeParam T - The value type stored in the registry.
29
29
  * @param name - Unique registry name (used to construct the `Symbol.for` key).
30
- * @returns An object with `register`, `getAll`, and `clear` functions.
30
+ * @returns An object with `register`, `unregister`, `getAll`, and `clear` functions.
31
31
  */
32
32
  export function createRegistry<T>(name: string) {
33
33
  const getMap = (): Map<string, T> => getGlobalRegistryMap<T>(name);
@@ -40,6 +40,13 @@ export function createRegistry<T>(name: string) {
40
40
  getMap().set(id, value);
41
41
  },
42
42
 
43
+ /**
44
+ * Remove a registration by id. No-op if not registered.
45
+ */
46
+ unregister: (id: string): void => {
47
+ getMap().delete(id);
48
+ },
49
+
43
50
  /**
44
51
  * Get all registered values in registration order.
45
52
  */
@@ -0,0 +1,121 @@
1
+ import type { Theme } from "@earendil-works/pi-coding-agent";
2
+ import { truncateToWidth, wrapTextWithAnsi } from "@earendil-works/pi-tui";
3
+
4
+ /** Minimal theme surface required by the shared report helpers. */
5
+ export type ReportTheme = Pick<Theme, "fg">;
6
+
7
+ /** Color keys accepted by the report helpers. */
8
+ export type ReportColor = Parameters<Theme["fg"]>[0];
9
+
10
+ /** Options for rendering a themed key/value report row. */
11
+ export interface KeyValueLineOptions {
12
+ /** The label shown on the left. */
13
+ label: string;
14
+ /** The value shown on the right. */
15
+ value: string;
16
+ /** Theme used for color formatting. */
17
+ theme: ReportTheme;
18
+ /** Maximum rendered width. */
19
+ width: number;
20
+ /** Left indentation in spaces. */
21
+ indent?: number;
22
+ /** Theme color applied to the label. Defaults to `"text"`. */
23
+ labelColor?: ReportColor;
24
+ /** Theme color applied to the value. Defaults to `"dim"`. */
25
+ valueColor?: ReportColor;
26
+ /** Separator placed between label and value. Defaults to `": "`. */
27
+ separator?: string;
28
+ }
29
+
30
+ /** Options for rendering a preview-overflow hint. */
31
+ export interface OverflowHintOptions {
32
+ /** Optional follow-up hint such as `run /supi-context full`. */
33
+ hint?: string | null;
34
+ /** Left indentation in spaces. Defaults to `2`. */
35
+ indent?: number;
36
+ }
37
+
38
+ /** Ensure a report width never drops below the minimum readable width. */
39
+ export function clampReportWidth(width: number, minWidth = 24): number {
40
+ return Math.max(minWidth, width);
41
+ }
42
+
43
+ /** Render a top-level report title line with theme color and truncation. */
44
+ export function formatReportTitle(
45
+ title: string,
46
+ theme: ReportTheme,
47
+ width: number,
48
+ color: ReportColor = "accent",
49
+ ): string {
50
+ return truncateToWidth(theme.fg(color, title), width);
51
+ }
52
+
53
+ /**
54
+ * Render a section header with optional dimmed metadata.
55
+ *
56
+ * Example: `Usage by category 42.3k tokens`
57
+ */
58
+ export function formatSectionHeader(
59
+ title: string,
60
+ meta: string | null,
61
+ theme: ReportTheme,
62
+ width: number,
63
+ ): string {
64
+ const left = theme.fg("text", title);
65
+ const content = meta ? `${left}${theme.fg("dim", ` ${meta}`)}` : left;
66
+ return truncateToWidth(content, width);
67
+ }
68
+
69
+ /** Render a single dimmed report line with optional left indentation. */
70
+ export function formatDimLine(text: string, theme: ReportTheme, width: number, indent = 0): string {
71
+ const safeIndent = Math.max(0, indent);
72
+ return truncateToWidth(`${" ".repeat(safeIndent)}${theme.fg("dim", text)}`, width);
73
+ }
74
+
75
+ /** Render a dimmed preview-overflow hint such as `… and 3 more — run /foo full`. */
76
+ export function formatOverflowHint(
77
+ hiddenCount: number,
78
+ theme: ReportTheme,
79
+ width: number,
80
+ options: OverflowHintOptions = {},
81
+ ): string {
82
+ const { hint = null, indent = 2 } = options;
83
+ const suffix = hint ? ` — ${hint}` : "";
84
+ return formatDimLine(`… and ${hiddenCount} more${suffix}`, theme, width, indent);
85
+ }
86
+
87
+ /** Render a single themed `label: value` row with truncation. */
88
+ export function formatKeyValueLine(options: KeyValueLineOptions): string {
89
+ const {
90
+ label,
91
+ value,
92
+ theme,
93
+ width,
94
+ indent = 2,
95
+ labelColor = "text",
96
+ valueColor = "dim",
97
+ separator = ": ",
98
+ } = options;
99
+ const safeIndent = Math.max(0, indent);
100
+
101
+ return truncateToWidth(
102
+ `${" ".repeat(safeIndent)}${theme.fg(labelColor, label)}${separator}${theme.fg(valueColor, value)}`,
103
+ width,
104
+ );
105
+ }
106
+
107
+ /**
108
+ * Wrap a report text block to the available width and optionally prefix each line.
109
+ *
110
+ * This is useful for wrapped bullets or explanatory notes that should align
111
+ * under an existing report indent.
112
+ */
113
+ export function wrapReportText(
114
+ text: string,
115
+ width: number,
116
+ options: { indent?: string } = {},
117
+ ): string[] {
118
+ const indent = options.indent ?? "";
119
+ const wrapped = wrapTextWithAnsi(text, Math.max(1, width - indent.length));
120
+ return indent ? wrapped.map((line) => `${indent}${line}`) : wrapped;
121
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mrclrchtr/supi-cache",
3
- "version": "1.12.1",
3
+ "version": "1.14.0",
4
4
  "description": "SuPi Cache — prompt cache health monitoring and cross-session forensics",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -20,7 +20,7 @@
20
20
  "README.md"
21
21
  ],
22
22
  "dependencies": {
23
- "@mrclrchtr/supi-core": "1.12.1"
23
+ "@mrclrchtr/supi-core": "1.14.0"
24
24
  },
25
25
  "bundledDependencies": [
26
26
  "@mrclrchtr/supi-core"
@@ -6,6 +6,7 @@
6
6
  import { StringEnum } from "@earendil-works/pi-ai";
7
7
  import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
8
8
  import { Container, Spacer, Text } from "@earendil-works/pi-tui";
9
+ import { footerContributions } from "@mrclrchtr/supi-core/footer-registry";
9
10
  import { Type } from "typebox";
10
11
  import { loadCacheMonitorConfig } from "../config.ts";
11
12
  import { computePromptFingerprint, diffFingerprints, zeroFingerprint } from "../fingerprint.ts";
@@ -44,6 +45,22 @@ export default function cacheMonitorExtension(pi: ExtensionAPI) {
44
45
  return loadCacheMonitorConfig(ctx.cwd).regressionThreshold;
45
46
  }
46
47
 
48
+ // ── Helpers ──────────────────────────────────────────────
49
+
50
+ function updateFooterStatus(): void {
51
+ const statusText = formatCacheStatus(state);
52
+ if (statusText) {
53
+ footerContributions.register({
54
+ key: STATUS_KEY,
55
+ placement: "stats",
56
+ priority: 0,
57
+ render: () => statusText,
58
+ });
59
+ } else {
60
+ footerContributions.unregister(STATUS_KEY);
61
+ }
62
+ }
63
+
47
64
  // ── message_end: record turn + update status + check regression
48
65
 
49
66
  pi.on("message_end", async (event, ctx) => {
@@ -59,9 +76,8 @@ export default function cacheMonitorExtension(pi: ExtensionAPI) {
59
76
  // Persist turn record
60
77
  pi.appendEntry(ENTRY_TYPE, record);
61
78
 
62
- // Update footer status
63
- const statusText = formatCacheStatus(state);
64
- ctx.ui.setStatus(STATUS_KEY, statusText);
79
+ // Update footer contribution
80
+ updateFooterStatus();
65
81
 
66
82
  // Check regression
67
83
  const regression = state.detectRegression(getThreshold(ctx));
@@ -106,22 +122,21 @@ export default function cacheMonitorExtension(pi: ExtensionAPI) {
106
122
  state.reset();
107
123
 
108
124
  if (!isEnabled(ctx)) {
109
- ctx.ui.setStatus(STATUS_KEY, undefined);
125
+ footerContributions.unregister(STATUS_KEY);
110
126
  return;
111
127
  }
112
128
 
113
129
  const branch = ctx.sessionManager.getBranch();
114
130
  state.restoreFromEntries(branch);
115
131
 
116
- const statusText = formatCacheStatus(state);
117
- ctx.ui.setStatus(STATUS_KEY, statusText);
132
+ updateFooterStatus();
118
133
  });
119
134
 
120
135
  // ── session_shutdown: clear state ─────────────────────────
121
136
 
122
- pi.on("session_shutdown", async (_event, ctx) => {
137
+ pi.on("session_shutdown", async (_event, _ctx) => {
123
138
  state.reset();
124
- ctx.ui.setStatus(STATUS_KEY, undefined);
139
+ footerContributions.unregister(STATUS_KEY);
125
140
  });
126
141
 
127
142
  // ── /supi-cache-history command ──────────────────────────
@@ -3,11 +3,11 @@
3
3
  import type { CacheMonitorState } from "./state.ts";
4
4
 
5
5
  /**
6
- * Format the compact footer status string.
6
+ * Format the compact footer status string for the stats line.
7
7
  *
8
- * - `cache: 87% ↑` — hit rate with trend arrow
9
- * - `cache: 0%` — first turn (no trend)
10
- * - `cache: —` — no cache data available
8
+ * - `TCH87%↑` — hit rate with trend arrow
9
+ * - `TCH100%` — first turn (no trend)
10
+ * - `undefined` — no cache data available (contribution suppressed)
11
11
  */
12
12
  export function formatCacheStatus(state: CacheMonitorState): string | undefined {
13
13
  const latest = state.getLatestTurn();
@@ -15,7 +15,7 @@ export function formatCacheStatus(state: CacheMonitorState): string | undefined
15
15
 
16
16
  // No cache data: unsupported provider or zero denominator
17
17
  if (!state.cacheSupported || latest.hitRate === undefined) {
18
- return "cache: —";
18
+ return undefined;
19
19
  }
20
20
 
21
21
  const previous = state.getPreviousTurn();
@@ -23,11 +23,11 @@ export function formatCacheStatus(state: CacheMonitorState): string | undefined
23
23
 
24
24
  if (previous?.hitRate !== undefined) {
25
25
  if (latest.hitRate > previous.hitRate) {
26
- trend = " ↑";
26
+ trend = "↑";
27
27
  } else if (latest.hitRate < previous.hitRate) {
28
- trend = " ↓";
28
+ trend = "↓";
29
29
  }
30
30
  }
31
31
 
32
- return `cache: ${latest.hitRate}%${trend}`;
32
+ return `TCH${latest.hitRate}%${trend}`;
33
33
  }