Skip to main content

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 (for example Slack) from scripts, CI jobs, or agent workflows.
nut notify [options] [command]
Slack must be configured for your Coconut instance before nut notify slack will work. Complete the Slack integration on the Coconut Dashboard so the CLI has a target channel.
nut notify is for quick, preconfigured notifications. To call the Slack Web API directly (custom channels, payloads, other methods), use nut connect with the slack connector.

nut notify slack

Post a message to the Slack channel configured for your instance.
nut notify slack [options] <message>
Arguments:
  • message - Text to send
Options:
  • --title <text> - Optional title shown with the message

Examples

# 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:
nut notify slack --help