claude-code - 💡(How to fix) Fix VS Code: Can't see what subagents are doing or if they're stuck [2 comments, 2 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
anthropics/claude-code#46076Fetched 2026-04-11 06:29:36
View on GitHub
Comments
2
Participants
2
Timeline
7
Reactions
0
Author
Timeline (top)
labeled ×4commented ×2renamed ×1
RAW_BUFFERClick to expand / collapse

When I use agent teams in the VS Code extension, I have absolutely no idea what's going on once they spawn.

I can't see which agents are running, what they're working on, or if any of them got stuck somewhere. The only thing I can do is stare at the token counter going up and hope for the best. If one agent gets stuck in a loop or is waiting on some approval that never shows up, I won't know until I've already burned through a ton of tokens sitting there wondering why nothing is happening.

This is especially painful with bigger teams (5-10 agents). You launch them, and then it's just... silence. Did agent 3 finish? Is agent 7 stuck? Who knows. There's no way to check without killing everything and starting over.

The CLI at least shows agent activity inline in the terminal output, but the VS Code extension gives you nothing. No sidebar, no panel, no status indicator - just a blank wall while agents chew through your context.

What I'd love to see in the VS Code extension

Some kind of panel or status area that shows:

  • A list of running agents with what they're supposed to be doing
  • Some indication of whether they're actually making progress or just sitting there
  • How long each one has been running
  • The ability to look at what an individual agent has done so far
  • A way to cancel a specific agent that's clearly stuck without nuking the whole session

Even something basic like a status bar showing "3 agents running (2 active, 1 idle for 4min)" would be a massive improvement over the current situation of flying completely blind.

Related

  • #41461 - I ran into the worst case of this where background agents burned ~1.4M tokens and couldn't be stopped
  • #43584 - The hook lifecycle gap that makes stuck detection impossible
  • #26394 - Similar observability ask but for cross-project monitoring

extent analysis

TL;DR

Implementing a status panel or sidebar in the VS Code extension to display agent activity and progress can improve visibility and control over agent teams.

Guidance

  • Consider adding a panel or status area to the VS Code extension to display a list of running agents, their current tasks, and progress indicators.
  • Include features to show the duration each agent has been running and allow users to inspect individual agent activity.
  • Implement a mechanism to cancel specific stuck agents without terminating the entire session.
  • Review related issues (#41461, #43584, #26394) to understand the broader context and potential solutions for improving agent team observability.

Example

No specific code example can be provided without more context, but a potential implementation could involve creating a custom VS Code extension panel using the Extension API to display agent information and handle user interactions.

Notes

The exact implementation details will depend on the VS Code extension's architecture and the agent team's underlying technology. The proposed solution focuses on improving visibility and control, but may require additional work to address the root causes of agent stuckness and token burn issues.

Recommendation

Apply a workaround by implementing a basic status indicator, such as a status bar showing the number of running agents and their activity, to provide immediate visibility into agent team activity. This can be a stepping stone towards a more comprehensive solution.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING