summaryrefslogtreecommitdiff
path: root/spec/test_progress.lua
AgeCommit message (Collapse)Author
4 daysShow full subagents.lua source when expanded; guide toward templated promptsHEADmaint
The expanded progress board capped the executed Lua at 128 lines (and 32KB), so long workflow sources ended in an ellipsis even after Ctrl-O. Expanded now renders the whole source; collapsed still shows the first four lines. Add a "Program, don't transcribe" section to the system guidance so the primary writes shorter sources: one [[template]] with {name} placeholders filled by gsub with a table, loops over data instead of per-child copies, shared system prompts in `agents`, and file references instead of quoted contents. A single templating mechanism is named on purpose to remove choice. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01ETqhv5FVD8Z14BEBsXeHHC
5 daysSort completed subagents above active onest
5 daysShow executed Lua in subagent progress boardst
Render subagents.lua source in both collapsed and expanded progress views so inspection-only calls remain understandable and survive session replay.
12 daysUse Panto terminal width helpers for progress renderingt
2026-08-21Keep subagent boards pinned while background workflows runt
A background subagents.lua workflow outlives the tool call that started it, so settling the outer result unpinned a board whose agents were still working. Track a per-tool-call workflow count and derive the pin from both the tool being active and that count, so the board only returns to transcript order once its last workflow finishes. Also show the reasoning level alongside the model on agent cards.
2026-08-18Fix workflow progress pin lifecyclet
2026-08-18Persist and replay subagent progress across sessionst
Record durable child-turn metadata, restore bounded progress cards during startup replay, and keep settled cards attached to transcript entries. Add workflow-local Lua profiles and expose discovered agents and workflows in the session header.