configure-notifications
Sets up alerts for session start, completion, or error events through messaging platforms.
Install
mkdir -p .claude/skills/configure-notifications && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/13614" && unzip -o skill.zip -d .claude/skills/configure-notifications && rm skill.zipInstalls to .claude/skills/configure-notifications
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Set up notifications for session events.Key capabilities
- →Configure notifications for Telegram, Discord, and Slack channels.
- →Receive alerts for session events like start, complete, milestone, error, and warning.
- →Specify recipient tags for Telegram and Discord notifications.
- →Log notifications to a local file path.
How it works
The skill uses `omx config-notify` commands or a `notifications.toml` file to set up notification channels and event triggers. It sends messages to the specified platforms when session events occur.
Inputs & outputs
When to use configure-notifications
- →Setting up session alerts
- →Notifying team on build completion
- →Error reporting via Slack
- →Tracking session progress
About this skill
Configure Notifications Skill
Set up notifications for session events.
Supported Channels
| Channel | Setup Required |
|---|---|
| Telegram | Bot token + Chat ID |
| Discord | Webhook URL |
| Slack | Webhook URL |
| File | Output path |
Telegram Setup
1. Create Bot
- Message @BotFather on Telegram
- Send
/newbot - Follow prompts to get token
2. Get Chat ID
- Message your bot
- Visit:
https://api.telegram.org/bot<TOKEN>/getUpdates - Find
chat.idin response
3. Configure
omx config-notify telegram \
--token "123456:ABC-DEF" \
--chat-id "-1001234567890"
Discord Setup
1. Create Webhook
- Server Settings → Integrations → Webhooks
- Create new webhook
- Copy URL
2. Configure
omx config-notify discord \
--webhook "https://discord.com/api/webhooks/..."
Configuration File
~/.codex/notifications.toml
[telegram]
enabled = true
token = "123456:ABC-DEF"
chat_id = "-1001234567890"
events = ["session_complete", "error", "milestone"]
tag_list = ["@username"]
[discord]
enabled = true
webhook = "https://discord.com/api/webhooks/..."
events = ["session_complete", "error"]
tag_list = ["@here", "123456789"]
[file]
enabled = false
path = "~/.codex/notifications.log"
Event Types
| Event | When |
|---|---|
session_start | Orchestration begins |
session_complete | Orchestration ends |
milestone | Significant progress |
error | Failure occurred |
warning | Potential issue |
Tag Options
Telegram
@username- Mention user
Discord
@here- Notify online members@everyone- Notify all123456789- User IDrole:987654321- Role ID
Usage
configure-notifications: set up Telegram alerts
configure-notifications: add Discord webhook
configure-notifications: enable file logging
Message Format
## 🚀 Session Complete
**Task:** Build auth system
**Duration:** 15m 23s
**Status:** ✅ Success
**Tokens:** 45,234 (~$0.15)
### Summary
- Implemented login/logout
- Added JWT validation
- Created user endpoints
When not to use it
- →When notification is not needed for session events.
- →When channels other than Telegram, Discord, Slack, or a local file are required.
Limitations
- →Only Telegram, Discord, Slack, and local file output are supported as notification channels.
- →Notification events are limited to `session_start`, `session_complete`, `milestone`, `error`, and `warning`.
How it compares
This skill automates sending event-driven notifications to communication platforms, unlike manually checking session status or writing custom integration scripts.
Compared to similar skills
configure-notifications side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| configure-notifications (this skill) | 0 | 6mo | Review | Beginner |
| setup | 12 | 1mo | No flags | Beginner |
| tmux | 20 | 3mo | Review | Intermediate |
| macos-cleaner | 16 | 2mo | Review | Beginner |
Try saying
Example prompts that trigger this skill in your AI assistant.
You might also like
setup
barefootford
Sets up a Mac for ButterCut. Installs all required dependencies (Homebrew, Ruby, Python, FFmpeg, WhisperX). Use when user says "install buttercut", "set up my mac", "get started", "first time setup", "install dependencies" or "check my installation".
tmux
openclaw
Remote-control tmux sessions for interactive CLIs by sending keystrokes and scraping pane output.
macos-cleaner
daymade
Analyze and reclaim macOS disk space through intelligent cleanup recommendations. This skill should be used when users report disk space issues, need to clean up their Mac, or want to understand what's consuming storage. Focus on safe, interactive analysis with user confirmation before any deletions.
ms365-tenant-manager
alirezarezvani
Microsoft 365 tenant administration for Global Administrators. Automate M365 tenant setup, Office 365 admin tasks, Azure AD user management, Exchange Online configuration, Teams administration, and security policies. Generate PowerShell scripts for bulk operations, Conditional Access policies, license management, and compliance reporting. Use for M365 tenant manager, Office 365 admin, Azure AD users, Global Administrator, tenant configuration, or Microsoft 365 automation.
agent-workflow-automation
ruvnet
Agent skill for workflow-automation - invoke with $agent-workflow-automation
tmux-terminal
mikeyobrien
Interactive terminal control via tmux for TUI apps, prompts, and long-running CLI workflows.