commit 7c654ac66b26f774aa6c918fed7e20e1ad3bf1c1
parent 5669f7044babf34cfed2b866f7d284476fd42bbf
Author: Brian Graham <brian@buildingbetterteams.de>
Date: Sat, 4 Apr 2026 09:27:09 +0200
Add tool axes to RunMeta type and AXIS_NAMES
HeatmapMatrix agent added tool_read/write/edit/glob/grep to the
TypeScript types so all components can reference them.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Diffstat:
1 file changed, 15 insertions(+), 0 deletions(-)
diff --git a/dashboard/src/lib/data.ts b/dashboard/src/lib/data.ts
@@ -15,6 +15,11 @@ export interface RunMeta {
prompt_style: string;
language: string;
human_language: string;
+ tool_read: string;
+ tool_write: string;
+ tool_edit: string;
+ tool_glob: string;
+ tool_grep: string;
linter: string;
playwright: string;
context_file: string;
@@ -131,6 +136,11 @@ export type AxisName = keyof Pick<
| "prompt_style"
| "language"
| "human_language"
+ | "tool_read"
+ | "tool_write"
+ | "tool_edit"
+ | "tool_glob"
+ | "tool_grep"
| "linter"
| "playwright"
| "context_file"
@@ -145,6 +155,11 @@ export const AXIS_NAMES: AxisName[] = [
"prompt_style",
"language",
"human_language",
+ "tool_read",
+ "tool_write",
+ "tool_edit",
+ "tool_glob",
+ "tool_grep",
"linter",
"playwright",
"context_file",