configure-discord
Originally fromyeachan-heo/oh-my-claudecode
Installation
SKILL.md
Configure Discord Notifications
Set up Discord notifications so OMX can ping you when sessions end, need input, or complete background tasks.
How This Skill Works
This is an interactive, natural-language configuration skill. Walk the user through setup by asking questions with AskUserQuestion. Write the result to ~/.codex/.omx-config.json.
Step 1: Detect Existing Configuration
CONFIG_FILE="$HOME/.codex/.omx-config.json"
if [ -f "$CONFIG_FILE" ]; then
# Check for existing discord config
HAS_DISCORD=$(jq -r '.notifications.discord.enabled // false' "$CONFIG_FILE" 2>/dev/null)
HAS_DISCORD_BOT=$(jq -r '.notifications["discord-bot"].enabled // false' "$CONFIG_FILE" 2>/dev/null)
WEBHOOK_URL=$(jq -r '.notifications.discord.webhookUrl // empty' "$CONFIG_FILE" 2>/dev/null)
MENTION=$(jq -r '.notifications.discord.mention // empty' "$CONFIG_FILE" 2>/dev/null)
Related skills
More from yeachan-heo/oh-my-codex
ralph
Self-referential loop until task completion with architect verification
87review
Deprecated standalone review skill
84worker
Team worker protocol (ACK, mailbox, task lifecycle) for tmux-based OMX teams
81team
N coordinated agents on shared task list using tmux-based orchestration
81swarm
Swarm deprecated shim
80autopilot
[OMX] Strict autonomous loop: $ralplan -> $ralph -> $code-review
80