---
title: Review comments
description: Read feedback, update the artifact, reply, and resolve finished discussions.
slug: /docs/comments
group: using-display
updatedAt: 2026-09-11
---

Work through reviewer comments from your connected AI tool or directly on the artifact. Each discussion records the passage and artifact version where it started.

## Ask your AI tool

Ask the agent to inspect open discussions, make clear changes, and leave anything that needs your judgment unresolved.

> `Find the Display.dev artifact named Quarterly plan. Review its open discussions, make the requested changes when they are clear, reply with what changed, and resolve only the discussions you addressed. Return the updated link and list anything that still needs my decision.`

The agent can read open comments, update an exact passage, reply, and resolve the discussion in the same task.

## Review comments on the artifact

1. Open the artifact link.
2. On a wide screen, select the speech-bubble icon (**Open discussions**) in the bar at the top. On a narrow screen, open **More** and select **Discussions**.
3. Use **Open** and **Resolved** to switch between active and completed discussions.
4. Select **Reply** to respond. Select **Resolve** after the feedback has been addressed.

To start a new discussion, select text in the artifact, select **Comment**, write your note, and select **Post**.

When signed in, select the eye icon (**Watch this artifact**) in the Discussions panel header to receive comment notifications. If a comment's passage is not present in the current version, select **Open that version** to see its original context.

## Use the command line

List open discussions:

```bash
dsp comment list --artifact <shortId>
```

Reply to a discussion, then resolve it:

```bash
dsp comment add \
  --artifact <shortId> \
  --parent <rootCommentId> \
  --body "Updated in the current version."

dsp thread resolve <rootCommentId>
```

Use the root comment ID returned by `dsp comment list`. Run `dsp comment --help` and `dsp thread --help` for all CLI options, or see [MCP tools](/docs/mcp-server#collaboration-and-administration-tools).
