> ## Documentation Index
> Fetch the complete documentation index at: https://docs.appsignal.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Feedback

> Send feedback about the AppSignal CLI, a missing command, a feature you need, or something that's broken — straight from the terminal.

The CLI can send feedback to AppSignal without leaving the terminal. Use it to report a missing endpoint, a feature you'd like, or behavior that looks broken. It's built for developers and for AI agents driving the CLI, so gaps can be flagged in the same session.

<h2 id="send-feedback">
  Send feedback
</h2>

Pass your message as an argument:

```sh Shell theme={null}
appsignal-cli feedback "The logs command should support filtering by request ID."
```

You can also pass the message with `--message` (`-m`). Or leave it out, and the message is read from standard input. This is useful for sending longer notes:

```sh Shell theme={null}
appsignal-cli feedback -m "Anomaly triggers need a --dry-run flag."

cat notes.txt | appsignal-cli feedback
```

<h2 id="include-a-contact-email">
  Include a contact email
</h2>

Add `--email` if you'd like us to be able to follow up. The address is saved to your active config, so later `feedback` commands reuse it without asking:

```sh Shell theme={null}
appsignal-cli feedback "Happy to test a fix for this." --email you@example.com
```

Use `--no-email` to send one message without your email, even if you've saved one before:

```sh Shell theme={null}
appsignal-cli feedback "Quick note, no reply needed." --no-email
```

<h2 id="json-output">
  JSON output
</h2>

Like every command, `feedback` accepts the global `--output json` (or `--format json`) flag, so an agent can confirm the submission programmatically:

```sh Shell theme={null}
appsignal-cli --output json feedback "Reporting from an automated workflow."
```

<h2 id="next-steps">
  Next steps
</h2>

Feedback helps shape what the CLI does next. To let an AI agent drive the CLI — and send feedback — on your behalf, install the [agent skill](/cli/skill).
