What it does
Driving Claude Code, Cursor, or Copilot through a complex multi-step workflow usually means hand-writing Markdown files into folders like .claude/agents/ or .cursor/skills/. Sub-agent dispatch, tool composition, and branching all live in prose, which makes the overall flow hard to see at a glance and any small change tends to ripple across multiple files.
CC Workflow Studio lets you lay out the workflow as nodes and connections on a canvas, then exports the design — with one click — into the exact Markdown format each agent already understands.
Features
-
Visual workflow editor
Drag-and-drop canvas for nodes, connections, sub-agents, and MCP tools. Designs are saved to
.vscode/workflows/*.json. -
Edit with AI
An MCP server starts in the background when the extension launches, so you can refine a workflow in natural language — or let an agent edit the workflow file directly.
-
One-click export and run
Export the design as Markdown ready for the target agent, or run it from the editor without leaving VS Code.
-
Multi-agent orchestration
Sub-agents invoked by other agents are first-class on the canvas, so the orchestration shape is visible instead of buried in prose.
Supported agents and export paths
| Agent | Export location |
|---|---|
| Claude Code | .claude/agents/, .claude/commands/ |
| Cursor | .cursor/agents/, .cursor/skills/ |
| GitHub Copilot Chat | .github/prompts/ |
| GitHub Copilot CLI | .github/skills/ |
| OpenAI Codex CLI | .codex/skills/ |
| Roo Code | .roo/skills/ |
| Gemini CLI | .gemini/skills/ |
| Antigravity | .agent/skills/ |
Quick start
- Click the extension icon in the top-right of VS Code, or open the Command Palette and run
CC Workflow Studio: Open Editor. - Add nodes to the canvas and configure their settings.
- The design is saved to
.vscode/workflows/*.json. - Export to
.mdfor the target agent, or run it directly from the editor. - To refine in natural language, use ‘Edit with AI’ (routes through the embedded MCP server).
Notes
- VS Code extension, published to both the VS Code Marketplace and OpenVSX. The GitHub
homepagefield points to the OpenVSX listing. - Installs source: the ⬇ 7.4k figure on this page is the VS Code Marketplace install count (the extension is not listed on claude.com/plugins).
- License: AGPL-3.0-or-later. Modification and internal use are fine, but redistributing a modified version as a network service triggers source-availability obligations.
- Claude Code fit: exports land in
.claude/agents/and.claude/commands/, so Claude Code picks them up directly. - Not an Anthropic product: community project (
breaking-brake/cc-wf-studio).