/workflows slash command not recognized in VS Code extension

Status Open
Reported on v2.1.179
Maintainer reply None cached
Activity 3 comments · opened Jul 5, 2026

Description

The /workflows slash command (used to monitor live workflow progress) is not recognized in the Claude Code VS Code extension. Typing /workflows in the chat input treats it as plain text rather than executing it as a command — no workflow monitor, no progress tree, no response.

The Workflow tool documentation explicitly says "Use /workflows to watch live progress," implying it should be supported wherever Claude Code runs, including the VS Code extension. Without it, there is no way to observe running workflows from inside VS Code — users must switch to a separate terminal session to monitor them.

Steps to Reproduce

  1. Install the Claude Code VS Code extension (anthropic.claude-code).
  2. Start a workflow — e.g. via the Workflow tool in a multi-agent task, or any skill that internally launches one.
  3. In the VS Code chat input, type /workflows and submit.

Expected Behavior

The live workflow progress panel/tree appears — showing phases, active agent slots, and narrator lines — equivalent to what the terminal CLI renders.

Actual Behavior

The /workflows command is not recognized. It is treated as plain text input; no monitoring UI or output appears.

Environment

| | |
|---|---|
| Claude Code CLI | 2.1.179 |
| VS Code extension | anthropic.claude-code 2.1.195 |
| VS Code | 1.124.2 (x64) |
| OS | Ubuntu 24.04 (Linux x64) |

Workaround

None within VS Code. A separate terminal session running the Claude Code CLI would be required to monitor workflows — but this creates significant friction for VS Code-native users who run the extension as their primary interface.

Impact

Multi-agent workflow orchestration is a core Claude Code capability. Without /workflows support in the extension, VS Code users cannot observe workflow execution in real time, making it difficult to detect stalls, review phase progress, or intervene when something goes wrong.

Re-filing note

This was originally filed as #72292, but was auto-closed by the duplicate-detection bot against #71738 (/design-sync command) and #67495 / #54602 (/btw command) — none of which are actually about /workflows. A comment was left on #72292 pointing this out, and a manual reopen attempt (by the original author, who has viewerCanUpdate: true on the issue) was rejected by GitHub with a generic, non-specific error, so re-filing here instead.

@michaelandrewgamble also left a relevant comment on the original thread noting that the observational half of /workflows (the monitor view) is reconstructable entirely from on-disk run artifacts, suggesting extension parity may be a smaller lift than it looks — see https://github.com/anthropics/claude-code/issues/72292#issuecomment-4884812594. The control half (pause/resume/stop) is a separate, harder problem they've filed independently.

Related: #72292

View original on GitHub ↗

3 Comments

wshallwshall · 1 month ago

Still reproduces on the current extension build, on a different OS than the original report:

| | |
|---|---|
| VS Code extension | anthropic.claude-code 2.1.207 |
| VS Code | 1.128.0 (x64) |
| OS | Windows 11 (10.0.26200) |

Typing /workflows in the extension chat input is not recognized — it's treated as plain text. No monitor, no progress tree.

It's worth separating two defects here, because they have very different fix costs:

  1. The missing monitor (this issue) — porting the live workflow progress view to the extension.
  2. The misleading advice string — independent of (1), the agent actively and repeatedly tells the user to run a command that does not exist in the surface they're using. The Workflow tool description ends with "Use /workflows to watch live progress," and in practice the extension surfaces that pointer on essentially every workflow launch. In VS Code that is an instruction to do something impossible, shown on every single run.

Even if the monitor is a long way off, (2) is surface-conditional text that could be fixed today — drop the pointer in the extension, or point at whatever is available there. As it stands, the product confidently instructs VS Code users to use a command it doesn't ship to them.

Also reported at #75146.

LevyBytes · 1 month ago

Are humans actually coding anymore at Anthropic? because there's so many things like this that are no brainers that aren't implemented in the VS code extension.

michaelandrewgamble · 1 month ago
Are humans actually coding anymore at Anthropic? because there's so many things like this that are no brainers that aren't implemented in the VS code extension.

Hey @LevyBytes check out my solution here, I'd be curious what you think of it or any feedback you may have:

https://github.com/michaelandrewgamble/workflows-conductor