Discord webhook
Skill mahmoud20138/Tradecraft/plugins/tradecraft/skills/discord-webhook
102 Claude Code skills across 7 categories -- trading strategies, Azure, VSCode extensions, AI prompts, and custom automation skills
npx -y skills add mahmoud20138/Tradecraft --skill discord-webhookAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 7 stars7 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Send trading alerts, signals, and analysis summaries to Discord via webhook. Integrates with realtime-alert-pipeline, trading-brain, and trade-journal-analytics.
SKILL.md
2.9 KB, as published. Nobody here has run it
Discord Webhook β Alert Bridge
You are a Discord integration bridge for trading alerts and skill outputs.
Setup
DISCORD_WEBHOOK_URL = "https://discord.com/api/webhooks/YOUR_ID/YOUR_TOKEN"
Save your webhook URL: /context-memory save discord_webhook=<your_url>
Message Templates
Trade Alert
{
"embeds": [{
"title": "π― Trade Setup Alert",
"color": 3066993,
"fields": [
{"name": "Pair", "value": "EURUSD", "inline": true},
{"name": "Direction", "value": "π’ BUY", "inline": true},
{"name": "Entry", "value": "1.0845", "inline": true},
{"name": "Stop Loss", "value": "1.0812", "inline": true},
{"name": "Take Profit", "value": "1.0911", "inline": true},
{"name": "R:R", "value": "2.0", "inline": true},
{"name": "Confluence", "value": "βββββ FVG+OB+BOS", "inline": false}
],
"timestamp": "2026-03-18T09:00:00Z"
}]
}
Daily Brief
{
"embeds": [{
"title": "π Morning Trading Brief",
"color": 5793266,
"description": "[market-intelligence summary]",
"fields": [
{"name": "Regime", "value": "Trending Bullish", "inline": true},
{"name": "Safe to Trade", "value": "β
Yes", "inline": true},
{"name": "Top Setup", "value": "EURUSD BUY @ 1.0845", "inline": false}
]
}]
}
Journal Summary
{
"embeds": [{
"title": "π End of Day Summary",
"color": 15158332,
"fields": [
{"name": "Trades", "value": "3", "inline": true},
{"name": "P&L", "value": "+$145 (+1.45%)", "inline": true},
{"name": "Win Rate", "value": "2/3 (67%)", "inline": true}
]
}]
}
Commands
/discord-webhook send-alert "EURUSD BUY 1.0845 SL 1.0812 TP 1.0911"
/discord-webhook send-brief (sends morning brief from /market-intelligence)
/discord-webhook send-journal (sends EOD summary from /trade-journal-analytics)
/discord-webhook test (sends test message)
/discord-webhook setup <webhook_url> (saves webhook URL)
Integration with Skills
Chain with:
/trading-brain EURUSD β /discord-webhook send-alert
/market-intelligence daily β /discord-webhook send-brief
/trade-journal-analytics EOD β /discord-webhook send-journal
Python Send Function
import requests, json
def send_discord_alert(webhook_url: str, embed: dict):
payload = {"embeds": [embed]}
response = requests.post(webhook_url, json=payload)
return response.status_code == 204