Get live activity (sub-agent visibility)
get_live_activityRetrieve real-time activity of coding sub-agents across projects, including dirty files, recent commits, and worktree progress, for stalled-ticket triage or a cross-project rollup.
Instructions
Read-only git/filesystem ground truth about what coding sub-agents are doing RIGHT NOW, for one project or (omit project) a rollup across every project with a codeLocation configured. Sub-agents deliberately never write the board mid-flight (only the orchestrator sets status/logs work/commits), so between a ticket going In Progress and coming back Done, the board itself has nothing new to say — the filesystem is the only truth. Per repo (code + website, when configured): dirty files (capped list + total count) and pending additions/deletions, commits in the last sinceMinutes, and OTHER git worktrees (a live sub-agent edit surface) with their branch + dirty-file count. Also surfaces each repo's (and each worktree's) .fb-progress file — the sanctioned sub-agent progress channel: tell sub-agents in their brief to append one-line timestamped notes there at each major step (created → tests written → suite green, etc.) — plus recently-modified files and the cheap board-side signals (In Progress count, last work-log age). Use this for stalled-ticket triage (get_agent_monitor flags a stall from board events; this answers 'but is anything actually moving?') and for a cross-project 'what's live right now' rollup on Mission Control. In all-projects mode, quiet projects (nothing within sinceMinutes) are returned as plain name strings instead of full objects, appended after the active ones.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project | No | Limit to one project; omit for an all-projects rollup. | |
| maxFiles | No | Cap on dirty-file and recently-modified-file lists per repo. | |
| maxCommits | No | Cap on recent commits returned per repo. | |
| sinceMinutes | No | Activity window in minutes (commits, recently-modified files, freshness checks). Default 30. |