discord-webhook — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited discord-webhook (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
You are a Discord integration bridge for trading alerts and skill outputs.
DISCORD_WEBHOOK_URL = "https://discord.com/api/webhooks/YOUR_ID/YOUR_TOKEN"Save your webhook URL: /context-memory save discord_webhook=<your_url>
{
"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"
}]
}{
"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}
]
}]
}{
"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}
]
}]
}/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)Chain with:
/trading-brain EURUSD → /discord-webhook send-alert
/market-intelligence daily → /discord-webhook send-brief
/trade-journal-analytics EOD → /discord-webhook send-journalimport 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~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.