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

# CLI feedback

> Send bugs and feature requests to Atoll maintainers from the CLI, including local drafts and retries.

Use feedback when you hit platform friction, missing API functionality, confusing CLI behavior, or docs gaps.

## Send feedback

```bash theme={null}
atoll feedback "The --status error should list custom board statuses"
```

With a type and URL:

```bash theme={null}
atoll feedback --type feature --url https://atollhq.com/acme/projects/docs "Add a docs export button"
```

Read from a file:

```bash theme={null}
atoll feedback --file bug-report.md
atoll feedback --file -
```

## Draft without sending

```bash theme={null}
atoll feedback draft "Heartbeat should include blocked issue titles"
atoll feedback drafts
atoll feedback view fb_123
```

## Retry failed sends

```bash theme={null}
atoll feedback resend fb_123
```

## Endpoint override

Set `ATOLL_FEEDBACK_ENDPOINT` to send feedback to a custom endpoint during development or testing.

```bash theme={null}
export ATOLL_FEEDBACK_ENDPOINT="http://localhost:3000/api/feedback"
```
