feat(task-toast): display skills and concurrency info in toast

- Add skills field to TrackedTask and LaunchInput types
- Show skills in task list message as [skill1, skill2]
- Add concurrency slot info [running/limit] in Running header
- Pass skills from sisyphus_task to toast manager (sync & background)
- Add unit tests for new toast features
This commit is contained in:
YeonGyu-Kim
2026-01-08 11:26:27 +09:00
parent 0d90bc1360
commit 1fe6c7e508
6 changed files with 168 additions and 9 deletions
+1
View File
@@ -132,6 +132,7 @@ export class BackgroundManager {
description: input.description,
agent: input.agent,
isBackground: true,
skills: input.skills,
})
}