DiscordResource in two runtimes:
@struktoai/mirage-node, talks tohttps://discord.com/api/v10/*directly using a bot token.@struktoai/mirage-browser, stays secret-free: a small proxy server on your backend holds the token and forwards/api/discord/*tohttps://discord.com/api/v10/*. The browser only ever sees the proxy URL.
/discord/<guild>/channels/<channel>/<date>/{chat.jsonl,files/}, /discord/<guild>/members/) and the same shell commands, and both pair with the discord CLI for acting on the server.
Get a bot token
- Visit the Discord Developer Portal and create a new application.
- Under Bot, add a bot user and copy the Bot Token.
- Under Bot → Privileged Gateway Intents, enable:
- Server Members Intent, required for
/discord/<guild>/members/listings. - Message Content Intent, required to read message text in
.jsonlhistory files.
- Server Members Intent, required for
- Under OAuth2 → URL Generator, select the
botscope and the following bot permissions:Read Messages/View ChannelsRead Message HistorySend Messages(only if you’ll usediscord send)Add Reactions(only if you’ll usediscord react)
- Open the generated URL in a browser and invite the bot to your guild.
Node (server-side)
Browser
https://discord.com/api/v10/*, attaching the Authorization: Bot … header server-side.
1. Server: minimal proxy
2. Browser: wire it up
Filesystem layout
channels/ directory with text channels (types 0, 5, 15) and a members/ directory with one .json file per member. Each channel directory contains day-partitioned directories for the 30 days leading up to the channel’s last message, inactive channels show dates around their last activity, not today. Each day directory holds chat.jsonl (one JSON object per message) and a files/ directory with that day’s attachments, cat’ing a blob downloads it from the Discord CDN. Soft errors (403 missing permissions, 404 unknown channel, 429 rate limit) on a single day are swallowed so listings, find, and grep keep working across the rest of the tree.
Display names keep their original spelling from Discord (spaces, apostrophes, emoji are all preserved). Only / is replaced with ∕ (U+2215) so it cannot collide with a directory boundary. The Discord snowflake ID is appended after __ (double underscore) on guild, channel, member, and attachment names so resource-specific commands can extract it without an extra lookup, and so two same named entities never collide. Quote names containing spaces in shell commands.
Shell commands
Every standard MIRAGE shell command works on the mounted Discord tree:
Acting on Discord (sending, editing, reactions, threads, polls,
member and guild info, search) goes through the
discord CLI when installed; the mounted
tree stays read-oriented.
Troubleshooting
Empty `/discord/<guild>/members/` listing
Empty `/discord/<guild>/members/` listing
Listing members requires the Server Members Intent. Enable it in the Discord Developer Portal under Bot → Privileged Gateway Intents. Without it,
members/ returns an empty directory and discord members fails.Empty `content` field in JSONL messages
Empty `content` field in JSONL messages
Reading message text requires the Message Content Intent. Enable it in the Discord Developer Portal under Bot → Privileged Gateway Intents. Without it, the
content field on every message is empty.CORS error in browser
CORS error in browser
The browser cannot call
https://discord.com/api/v10/* directly, Discord does not set permissive CORS headers. You must run the proxy server shown above (or your own equivalent) and point proxyUrl at it.`rate_limited` from Discord
`rate_limited` from Discord
DiscordResource uses an IndexCacheStore (default TTL 600s) to deduplicate guild / channel / member listings, but high-volume reads of .jsonl files can still hit Discord’s per-route rate limits. The HTTP transport retries 429 responses honoring retry_after up to 3 times, repeated failures usually mean you should slow down or scope reads to specific channels.Examples
examples/typescript/discord/discord.ts, shell commands against/discord/(ls,cat,grep,jq,tree,find,cd, glob).examples/typescript/discord/discord_vfs.ts,patchNodeFs(ws)so nativenode:fscalls route through the workspace.examples/typescript/discord/discord_fuse.ts, FUSE-mount the workspace so external processes can browse/discord/as a real filesystem.examples/typescript/discord/discord_browser/, proxy server +@struktoai/mirage-browserDiscordResource demo.