commit a2ea0ddeec70ded9e637706b5c304b5ea760b5b6
parent e2396915c53f65c3522ae5c60698635ac457e87a
Author: Brian Graham <brian@buildingbetterteams.de>
Date: Mon, 6 Apr 2026 20:38:51 +0200
Add new axes to run config box, link run to cell
Config now shows: provider, strategy, tests_provided, design_guidance,
architecture, error_checking, renderer, context_noise. Removed sub_agents.
Added cell link next to raw data/prompt/eval links.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Diffstat:
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/dashboard/src/components/RunDetail.tsx b/dashboard/src/components/RunDetail.tsx
@@ -34,10 +34,18 @@ const EXIT_CODES: Record<number, string> = {
const AXIS_CONFIG: Array<{ key: string; label: string }> = [
{ key: "model", label: "Model" },
+ { key: "provider", label: "Provider" },
{ key: "effort", label: "Effort" },
{ key: "prompt_style", label: "Prompt" },
{ key: "language", label: "Language" },
{ key: "human_language", label: "Human Lang" },
+ { key: "strategy", label: "Strategy" },
+ { key: "tests_provided", label: "Tests Provided" },
+ { key: "design_guidance", label: "Design Guidance" },
+ { key: "architecture", label: "Architecture" },
+ { key: "error_checking", label: "Error Checking" },
+ { key: "renderer", label: "Renderer" },
+ { key: "context_noise", label: "Context Noise" },
{ key: "tool_read", label: "Read" },
{ key: "tool_write", label: "Write" },
{ key: "tool_edit", label: "Edit" },
@@ -46,7 +54,6 @@ const AXIS_CONFIG: Array<{ key: string; label: string }> = [
{ key: "linter", label: "Linter" },
{ key: "playwright", label: "Playwright" },
{ key: "context_file", label: "Context" },
- { key: "sub_agents", label: "Sub-agents" },
{ key: "web_search", label: "Web Search" },
{ key: "max_budget", label: "Budget" },
];
@@ -198,6 +205,9 @@ export default function RunDetail({ run, transcriptLines, axisValues, contextCon
</div>
)}
<div style={{ marginTop: "8px", display: "flex", flexWrap: "wrap", gap: "8px", fontSize: "0.65rem" }}>
+ <a href={`/c/${meta.short_cell_id || meta.cell_id}`} style={{ color: "var(--accent)" }}>
+ cell
+ </a>
<a href={`${REPO_URL}/src/branch/main/results/runs/${meta.run_id}`} target="_blank" rel="noopener noreferrer" style={{ color: "var(--accent)" }}>
raw data
</a>