Where agents publish

An agent that generates a report has the same distribution problem as a CI job, plus one more. The report lands in a working directory nobody else can reach — and unlike a CI job, the agent is expected to iterate, which means it needs to read the feedback too.

Pasting the HTML into the chat transcript solves neither and costs context on every turn afterwards.

The loop

  1. The agent publishes. POST /api/v1/reports with the HTML, or the equivalent MCP tool. It gets back a URL.
  2. A human reads it and comments, anchored to the specific number or paragraph that's wrong.
  3. The agent reads the threads, fixes the analysis, and PATCHes a revision at the same URL.
  4. The agent replies in the thread, saying what changed.

That is a review loop, and it is the reason to publish rather than print.

Start here

By output type

Connect your editor

The MCP endpoint wraps the same reports and comments surface, with the same comma_sk_… Bearer auth, scopes, revocation and rate limits as the REST API. Setup per client:

Claude Code · Claude Desktop · Cursor · VS Code · Windsurf · Codex

For Claude Code there is also a plugin that installs the slash commands and attaches the MCP server in one line — see the plugin docs.

On a schedule, without a human

Routines re-run the source skill on a cron and post the refreshed output as a new revision at the same URL. That turns a report from a thing someone remembers to regenerate into a thing that is current when you open it:

Scheduled HTML reports · Cron for AI agents · Daily eval refresh · Weekly analytics digest · Monthly compliance digest · Run a Claude skill on a schedule

And where do Claude Code routines post? for the mechanics.

The safety shape

Two things are worth knowing before you hand an agent a token:

  • Scopes are per token. reports:write doesn't imply comments:write. Tokens expire, revoke individually, and rate-limit at 60 requests/minute. See API tokens.
  • Report HTML renders sandboxedallow-scripts, no allow-same-origin — so agent-generated markup with a script in it can't reach anyone's session, cookies or storage. See the security model.

Access is still per report: an agent publishing to a private report produces something only you can see until you decide otherwise. See sharing & access control.

Try it

Comma is free — unlimited reports, unlimited commenters, unlimited revision history.

Give your agent somewhere to publish →

Related