From ae68eeef521c47e2c9cac99b84548df3aebe5160 Mon Sep 17 00:00:00 2001 From: giles Date: Sun, 11 Jan 2026 07:57:56 +0000 Subject: [PATCH] Add Plan JSON view to run detail page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Shows collapsible JSON of execution plan below steps list. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- app/templates/runs/detail.html | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/app/templates/runs/detail.html b/app/templates/runs/detail.html index 38f608a..fb12c11 100644 --- a/app/templates/runs/detail.html +++ b/app/templates/runs/detail.html @@ -94,6 +94,16 @@ {% endfor %} + + +
+ + Show Plan JSON + +
+
{{ plan | tojson(indent=2) }}
+
+
{% else %}

No plan available for this run.

{% endif %}