Update plan: mark before_agent_start as complete

This commit is contained in:
Mario Zechner 2025-12-28 14:50:45 +01:00
parent 57146de202
commit f43969b31a
2 changed files with 7 additions and 5 deletions

View file

@ -10,7 +10,7 @@ export default function (pi: HookAPI) {
// Register a custom message renderer for our "test-info" type
pi.registerMessageRenderer("test-info", (message, options, theme) => {
const box = new Box(0, 0, (t) => theme.bg("success", t));
const box = new Box(0, 0, (t) => theme.bg("customMessageBg", t));
const label = theme.fg("successText", "[TEST INFO]");
box.addChild(new Text(label, 0, 0));