You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Inter-agent messages displayed as a group chat with date separators, sender grouping, and kind tags (`info`, `question`, `blocker`, `decision`, `answer`).
30
+
31
+
### [4] Chat
32
+
33
+
Agent stdout/stderr rendered as a conversation. Each agent gets a distinct color.
34
+
35
+
-`f` — cycle filter by agent (or show all)
36
+
-`j/k` — scroll up/down
37
+
-`g/G` — jump to top/bottom
38
+
39
+
## Header
40
+
41
+
- Live elapsed timer since team creation
42
+
- Progress bar `[done/total tasks X%]`
43
+
-`*` indicator on tabs with new activity
44
+
45
+
## Keyboard
46
+
47
+
| Key | Action |
48
+
|-----|--------|
49
+
|`1-4`| Switch tab |
50
+
|`Tab` / `Arrow`| Navigate tabs |
51
+
|`r`| Manual refresh |
52
+
|`q` / `Ctrl+C`| Quit |
53
+
54
+
## Development
55
+
56
+
```bash
57
+
pnpm install
58
+
pnpm dev # tsx watch mode
59
+
pnpm build # tsc
60
+
```
61
+
62
+
## How it works
63
+
64
+
Reads JSON files from `.agent-teams/` (same files used by `agent-teams-lead` and `agent-teams-teammate`):
65
+
66
+
-`team.json` — team config and teammates
67
+
-`tasks.json` — task list with status
68
+
-`messages.json` — inter-agent messages
69
+
-`artifacts.json` — published artifacts
70
+
-`team.log` — stdout/stderr from teammate processes
0 commit comments