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

# nut notify

> Send notifications to external services

# `nut notify`

Send notifications to external services (for example Slack) from scripts, CI jobs, or agent workflows.

```bash theme={null}
nut notify [options] [command]
```

<Warning>
  **Slack must be configured for your Coconut instance** before `nut notify slack` will work. Complete the Slack integration on the [Coconut Dashboard](https://app.coconut.dev) so the CLI has a target channel.
</Warning>

<Note>
  `nut notify` is for quick, preconfigured notifications. To call the Slack Web API directly (custom channels, payloads, other methods), use [`nut connect`](/cli/connect) with the `slack` connector.
</Note>

***

## `nut notify slack`

Post a message to the Slack channel configured for your instance.

```bash theme={null}
nut notify slack [options] <message>
```

**Arguments:**

* `message` - Text to send

**Options:**

* `--title <text>` - Optional title shown with the message

### Examples

```bash theme={null}
# Send a message to Slack
nut notify slack "Deployment to staging complete"

# Send with a title
nut notify slack "All systems operational" --title "Health Check"
```

For additional flags, run:

```bash theme={null}
nut notify slack --help
```
