# Share Roo Code's Output — Give Architect Mode Somewhere to Publish

Canonical: https://commareports.com/agents/share-roo-code-output
Published: 2026-09-05

> Roo Code's modes produce plans and reviews that stay in a VS Code panel. Add Comma's MCP server, put the rule in your mode instructions, and each mode ends with a shareable URL.

# Share what Roo Code produced

Roo Code's modes are the good idea here: architect plans, ask explains, code
edits. Two of those three produce documents, and documents are the thing the
tool has no answer for once they exist.

Architect mode writes you a genuinely useful migration plan and then leaves it
in a chat panel, where it competes with the plan it wrote last Tuesday and
loses to whichever one you scrolled to last.

## Wire publishing into the mode

Add Comma as an MCP server — a URL and a Bearer token from
[API tokens](/docs/api-tokens), same shape as [VS Code setup](/mcp/vscode).
Then put the rule in the mode's own instructions under `.roo`, so it fires for
architect and ask and not for code:

```md
Architect mode: when the plan is finished, publish it to Comma as an HTML
report and reply with the URL. Keep the report id with the plan so revisions
update the same page instead of creating a second one.
```

Per-mode rules are the reason this stays clean — the mode whose output is a
diff keeps making diffs, and the mode whose output is a document starts making
pages.

## What that changes

- **Plans get reviewed.** A URL in the ticket gets opened; a chat panel does
  not. Reviewers leave objections on the step they object to — see
  [commenting on HTML](/comment-on-html).
- **Plans get revised in place.** The next architect run updates the same
  report; the link in the ticket keeps working and the earlier version stays in
  history.
- **Non-engineers can read them.** No VS Code, no extension, no repo.

## Worth knowing

- **Narrow the token** to `reports:write` — see
  [scoped tokens](/agents/scoped-tokens-for-ai-agents).
- **5 MB of HTML** per report.
- **Nothing re-executes** when someone opens the page.

## Try it

Free — unlimited reports, commenters and revisions.

**[Set up the MCP server →](/mcp/vscode)**

### Related

- [Where should my agent post?](/agents/where-should-my-agent-post)
- [Share Cline output](/agents/share-cline-output) ·
  [Share Copilot output](/agents/share-copilot-output) ·
  [Share Continue output](/agents/share-continue-output)
- [Let an agent respond to comments](/agents/let-an-agent-respond-to-comments) ·
  [The API](/docs/api)
