* chore: release 0.4.0 Consume 33 changesets across the linked package group. All public packages bumped to 0.4.0 and published to npm. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * test(agent-codex): bump package-version assertion to 0.4.0 Release gate test was still asserting 0.3.0 after the 0.4.0 bump. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * chore: align CHANGELOG headers with @aoagents npm scope The H1 of every package CHANGELOG.md still read @composio/* from before the npm scope rename. Body entries that historically reference @composio/* are left intact — they document what was true at the time of those releases. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Prateek <karnalprateek@gmail.com> Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com> |
||
|---|---|---|
| .. | ||
| src | ||
| CHANGELOG.md | ||
| README.md | ||
| package.json | ||
| tsconfig.json | ||
README.md
notifier-discord
Discord webhook notifier plugin for AO. Sends rich embed notifications for session events, PR creation, CI status, and escalations.
Setup
- In your Discord server: Server Settings > Integrations > Webhooks > New Webhook
- Copy the webhook URL
- Add to
agent-orchestrator.yaml:
defaults:
notifiers:
- desktop
- discord
notifiers:
discord:
plugin: discord
webhookUrl: https://discord.com/api/webhooks/YOUR_WEBHOOK_ID/YOUR_WEBHOOK_TOKEN
Config options
| Option | Default | Description |
|---|---|---|
webhookUrl |
(required) | Discord webhook URL |
username |
"Agent Orchestrator" | Bot display name |
avatarUrl |
(none) | Bot avatar image URL |
threadId |
(none) | Post to a specific thread |
retries |
2 | Retry attempts on 5xx |
retryDelayMs |
1000 | Base retry delay (exponential backoff) |
Features
- Rich embeds with color-coded priority (red=urgent, blue=action, yellow=warning, green=info)
- PR links, CI status, and action buttons in embed fields
- Thread support for organizing notifications by project
- Retry with exponential backoff on 5xx responses