summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authort <t@tjp.lol>2026-08-18 14:18:14 -0600
committert <t@tjp.lol>2026-08-18 14:20:28 -0600
commitcc69a2e431779528578211a5cb3385bb23e076bf (patch)
tree8833171e25bb3dfb71fc4a2e0b8fe583782da764 /README.md
parent372ef8ff40991644ec2654c61328f31779f4ad21 (diff)
Persist and replay subagent progress across sessions
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.
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 5 insertions, 3 deletions
diff --git a/README.md b/README.md
index 713ea60..73a3146 100644
--- a/README.md
+++ b/README.md
@@ -99,9 +99,11 @@ outputs.
The Lua workflow API handles dynamic branching and fan-out. It can await one
job or a group, and supports one-turn workers whose validated tool input is
-their structured result. Panto extensions can use this API directly, while
-`subagents.lua` runs model-authored one-off workflows in a restricted Lua
-environment.
+their structured result. `subagents.lua` may also define workflow-local agent
+profiles inline, so a primary can create specialized workers without writing
+profile files or restarting Panto; those profiles disappear when the tool call
+ends. Panto extensions can use this API directly, while `subagents.lua` runs
+model-authored one-off workflows in a restricted Lua environment.
## Development