Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add turmyshevd/openclawgotchi --skill discordgit clone --depth 1 https://github.com/turmyshevd/openclawgotchiWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/turmyshevd/openclawgotchi/discord)<a href="https://agentmods.dev/skills/turmyshevd/openclawgotchi/discord"><img src="https://agentmods.dev/badge/skills/turmyshevd/openclawgotchi/discord/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/turmyshevd/openclawgotchi/discord"><img src="https://agentmods.dev/badge/skills/turmyshevd/openclawgotchi/discord.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00012 | $0.01349 |
| Opus 5 | $0.00006 | $0.00674 |
| Sonnet 5 | $0.00002 | $0.00270 |
| Haiku 4.5 | $0.00001 | $0.00135 |
Grade A, and why
Discord Integration scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
"requires": { "bins": ["curl"] }, How it starts
The opening of the file, as written. The whole thing — 220 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Discord Integration
Send messages from your Gotchi to Discord. Two options:
Option 1: Webhook (Easy, Recommended)
No bot token needed! Just create a webhook in Discord.
Setup
- Discord Server → Channel Settings → Integrations → Webhooks
- Create Webhook, copy URL
- Add to
.env:DISCORD_WEBHOOK=https://discord.com/api/webhooks/xxx/yyy
Send Message
curl -H "Content-Type: application/json" \
-d '{"content":"Hello from Gotchi!"}' \
"$DISCORD_WEBHOOK"
Send with Username & Avatar
curl -H "Content-Type: application/json" \
-d '{
"username": "Gotchi",
"avatar_url": "https://example.com/gotchi.png",
"content": "Status update!"
}' \
"$DISCORD_WEBHOOK"
Send Embed (Rich Message)
curl -H "Content-Type: application/json" \
-d '{
"username": "Gotchi",
"embeds": [{
"title": "🤖 System Status",
"color": 5814783,
"fields": [
{"name": "Temperature", "value": "42°C", "inline": true},
{"name": "Memory", "value": "120MB free", "inline": true},
{"name": "Uptime", "value": "3 days", "inline": true}
],
"footer": {"text": "Raspberry Pi Zero 2W"}
}]
}' \
"$DISCORD_WEBHOOK"
Python Helper
import os
import requests
WEBHOOK = os.environ.get("DISCORD_WEBHOOK")
def send_discord(message: str, username: str = "Gotchi"):
if not WEBHOOK:
return False
requests.post(WEBHOOK, json={
"username": username,
"content": message
})
return True
# Usage
send_discord("Hello from Pi! 🤖")
Option 2: Inbound Bot (Interactive)
OpenClawGotchi can run a Discord inbound adapter alongside Telegram.
Setup
- Create app at https://discord.com/developers/applications
- Create Bot, copy token
- Enable "Message Content Intent" in Bot settings
- Invite bot to server with permissions to read/send messages
- Add to
.env:DISCORD_BOT_TOKEN=your_bot_token DISCORD_ALLOWED_CHANNELS=123456789 DISCORD_ALLOWED_USERS= DISCORD_RESPOND_TO_ALL=0 DISCORD_MAX_ATTACHMENT_MB=15
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 220 lines · 12 tokens per session scan A feeb1cad15b3
Discord Integration is a skill published in the GitHub repository turmyshevd/openclawgotchi (48 stars, last pushed 2mo ago), licensed MIT. It adds 12 tokens to every session and 1,349 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
gmail
A Gmail connector that lets an agent read recent messages through Google's secure sign-in system. It can retrieve message content and mark messages as read.
openai-whisper-api
Transcribe audio via OpenAI Audio Transcriptions API (Whisper).
github
GitHub operations via gh CLI: issues, PRs, CI runs, code review, API queries. Use when: (1) checking PR status or CI, (2) creating/commenting on issues, (3) listing/filtering PRs or issues, (4) viewing run logs. NOT for: complex web UI interactions requiring manual browser flows (use browser tooling when available)…
notion
Notion API for creating and managing pages, databases, and blocks.
trello
Manage Trello boards, lists, and cards via the Trello REST API.
openai-image-gen
Batch-generate images via OpenAI Images API. Random prompt sampler + index.html gallery.