[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-letta-discord":3,"mdc-rltx5z-key":34,"related-repo-letta-discord":2552,"related-org-letta-discord":2662},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":29,"sourceUrl":32,"mdContent":33},"discord","automate Discord server and channel tasks","Discord automation CLI — send\u002Fread\u002Fsearch messages, manage channels and servers, react, create threads, pin messages, and look up users.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"letta","Letta","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fletta.png","letta-ai",[13,17,20],{"name":14,"slug":15,"type":16},"Automation","automation","tag",{"name":18,"slug":19,"type":16},"CLI","cli",{"name":21,"slug":22,"type":16},"Messaging","messaging",127,"https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fskills","2026-07-13T06:24:26.62387",null,20,[],{"repoUrl":24,"stars":23,"forks":27,"topics":30,"description":31},[],"A shared repository for skills. Intended to be used with Letta Code, Claude Code, Codex CLI, and other agents that support skills.","https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fskills\u002Ftree\u002FHEAD\u002Ftools\u002Fdiscord","---\nname: discord\ndescription: Discord automation CLI — send\u002Fread\u002Fsearch messages, manage channels and servers, react, create threads, pin messages, and look up users.\n---\n\n# Discord automation with `discord_cli.py`\n\nA bundled Python script that wraps the Discord REST API v10. Zero external dependencies — uses only Python stdlib (`urllib`, `json`, `argparse`).\n\nInvoke as: `python3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py \u003Ccommand> \u003Csubcommand> [args]`\n\n## Setup\n\n### 1. Create a Discord bot\n\n1. Go to [Discord Developer Portal](https:\u002F\u002Fdiscord.com\u002Fdevelopers\u002Fapplications) → **New Application**\n2. Click **Bot** on the sidebar → click **Reset Token** → copy the token\n3. **Critical**: Scroll down to **Privileged Gateway Intents** and enable **Message Content Intent** — without this, message content will be empty in API responses\n4. Optionally enable **Server Members Intent** (needed for `user list`)\n\n### 2. Add the bot to your server\n\n1. Click **OAuth2** on the sidebar → scroll to **OAuth2 URL Generator**\n2. Check scopes: `bot` + `applications.commands`\n3. Under **Bot Permissions**, check: View Channels, Send Messages, Read Message History, Add Reactions, Attach Files\n4. Copy the generated URL → open in browser → select your server → **Authorize**\n\nShortcut if you know the client ID:\n```\nhttps:\u002F\u002Fdiscord.com\u002Foauth2\u002Fauthorize?client_id=YOUR_CLIENT_ID&scope=bot+applications.commands&permissions=274877975552\n```\n\n### 3. Set your bot token\n\n```bash\nexport DISCORD_BOT_TOKEN=\"your_token_here\"\n```\n\n### 4. Verify\n\n```bash\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py auth test\n```\n\nExpected output:\n```json\n{\"ok\": true, \"user\": \"your-bot-name\", \"id\": \"...\", \"discriminator\": \"...\"}\n```\n\n## Commands\n\n### Auth\n\n```bash\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py auth test\n```\n\n### Servers\n\n```bash\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py server list\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py server info \u003Cserver-id>\n```\n\n### Channels\n\n```bash\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py channel list \u003Cserver-id>\n```\n\nReturns text, announcement, and forum channels sorted by category and position. Each channel has `id`, `name`, `type`, `category`, and `topic`.\n\n### Messages\n\n```bash\n# List recent messages (default 25, chronological order)\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py message list \u003Cchannel-id>\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py message list \u003Cchannel-id> --limit 50\n\n# Get a single message\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py message get \u003Cchannel-id> \u003Cmessage-id>\n\n# Send a message\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py message send \u003Cchannel-id> \"Hello from the agent!\"\n\n# Edit a message (bot can only edit its own messages)\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py message edit \u003Cchannel-id> \u003Cmessage-id> \"Updated text\"\n\n# Delete a message\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py message delete \u003Cchannel-id> \u003Cmessage-id>\n\n# Search messages in a server\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py message search \u003Cserver-id> \"query\"\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py message search \u003Cserver-id> \"query\" --channel-id \u003Cid> --author-id \u003Cid> --limit 10\n```\n\n### Reactions\n\n```bash\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py reaction add \u003Cchannel-id> \u003Cmessage-id> 👍\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py reaction remove \u003Cchannel-id> \u003Cmessage-id> 👍\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py reaction list \u003Cchannel-id> \u003Cmessage-id>\n```\n\n### Threads\n\n```bash\n# Create a new thread in a channel\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py thread create \u003Cchannel-id> \"Discussion Topic\"\n\n# Create a thread from a specific message\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py thread create \u003Cchannel-id> \"Bug Triage\" --message-id \u003Cid>\n```\n\n### Pins\n\n```bash\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py pin list \u003Cchannel-id>\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py pin add \u003Cchannel-id> \u003Cmessage-id>\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py pin remove \u003Cchannel-id> \u003Cmessage-id>\n```\n\n### Users\n\n```bash\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py user list \u003Cserver-id>\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py user list \u003Cserver-id> --limit 200\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py user info \u003Cuser-id>\n```\n\nMention users in messages as `\u003C@USER_ID>`.\n\n## Output format\n\nAll commands output JSON to stdout. Errors go to stderr with an `error` field and HTTP `status` code.\n\nMessage objects include: `id`, `author`, `author_id`, `content`, `timestamp`, plus optional `thread_id`, `attachments` (with `filename` and `url`), and `reactions` (with `emoji` and `count`). Null and empty fields are pruned.\n\n## Troubleshooting\n\n### Message content is empty\n\n**Message Content Intent** is not enabled. Go to Developer Portal → Bot → Privileged Gateway Intents → toggle on Message Content Intent.\n\n### `user list` returns empty or partial results\n\n**Server Members Intent** is not enabled. Toggle it on in the same intents section.\n\n### 403 \u002F missing access errors\n\nThe bot doesn't have permission for that channel. Check bot role permissions in Discord server settings, or re-authorize with the correct permissions.\n\n### Token errors\n\nIf the bot token was rotated, update `DISCORD_BOT_TOKEN` with the new value.\n\n## Notes\n\n- Discord uses **Snowflake IDs** (large numbers like `1161736244074659893`) for all identifiers. You cannot use channel names directly — use `channel list \u003Cserver-id>` to find IDs first.\n- The bot can only access servers it has been invited to and channels it has permissions for.\n- Bot token auth uses the official Discord API — no user token extraction, no ToS risk.\n- Messages are returned in chronological order (oldest first).\n",{"data":35,"body":36},{"name":4,"description":6},{"type":37,"children":38},"root",[39,55,84,95,102,109,199,205,265,270,282,288,337,343,394,399,542,548,554,595,601,701,707,767,808,814,1502,1508,1728,1734,1915,1921,2114,2120,2291,2303,2309,2330,2422,2428,2434,2443,2454,2463,2469,2474,2480,2493,2499,2546],{"type":40,"tag":41,"props":42,"children":44},"element","h1",{"id":43},"discord-automation-with-discord_clipy",[45,48],{"type":46,"value":47},"text","Discord automation with ",{"type":40,"tag":49,"props":50,"children":52},"code",{"className":51},[],[53],{"type":46,"value":54},"discord_cli.py",{"type":40,"tag":56,"props":57,"children":58},"p",{},[59,61,67,69,75,76,82],{"type":46,"value":60},"A bundled Python script that wraps the Discord REST API v10. Zero external dependencies — uses only Python stdlib (",{"type":40,"tag":49,"props":62,"children":64},{"className":63},[],[65],{"type":46,"value":66},"urllib",{"type":46,"value":68},", ",{"type":40,"tag":49,"props":70,"children":72},{"className":71},[],[73],{"type":46,"value":74},"json",{"type":46,"value":68},{"type":40,"tag":49,"props":77,"children":79},{"className":78},[],[80],{"type":46,"value":81},"argparse",{"type":46,"value":83},").",{"type":40,"tag":56,"props":85,"children":86},{},[87,89],{"type":46,"value":88},"Invoke as: ",{"type":40,"tag":49,"props":90,"children":92},{"className":91},[],[93],{"type":46,"value":94},"python3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py \u003Ccommand> \u003Csubcommand> [args]",{"type":40,"tag":96,"props":97,"children":99},"h2",{"id":98},"setup",[100],{"type":46,"value":101},"Setup",{"type":40,"tag":103,"props":104,"children":106},"h3",{"id":105},"_1-create-a-discord-bot",[107],{"type":46,"value":108},"1. Create a Discord bot",{"type":40,"tag":110,"props":111,"children":112},"ol",{},[113,136,155,179],{"type":40,"tag":114,"props":115,"children":116},"li",{},[117,119,128,130],{"type":46,"value":118},"Go to ",{"type":40,"tag":120,"props":121,"children":125},"a",{"href":122,"rel":123},"https:\u002F\u002Fdiscord.com\u002Fdevelopers\u002Fapplications",[124],"nofollow",[126],{"type":46,"value":127},"Discord Developer Portal",{"type":46,"value":129}," → ",{"type":40,"tag":131,"props":132,"children":133},"strong",{},[134],{"type":46,"value":135},"New Application",{"type":40,"tag":114,"props":137,"children":138},{},[139,141,146,148,153],{"type":46,"value":140},"Click ",{"type":40,"tag":131,"props":142,"children":143},{},[144],{"type":46,"value":145},"Bot",{"type":46,"value":147}," on the sidebar → click ",{"type":40,"tag":131,"props":149,"children":150},{},[151],{"type":46,"value":152},"Reset Token",{"type":46,"value":154}," → copy the token",{"type":40,"tag":114,"props":156,"children":157},{},[158,163,165,170,172,177],{"type":40,"tag":131,"props":159,"children":160},{},[161],{"type":46,"value":162},"Critical",{"type":46,"value":164},": Scroll down to ",{"type":40,"tag":131,"props":166,"children":167},{},[168],{"type":46,"value":169},"Privileged Gateway Intents",{"type":46,"value":171}," and enable ",{"type":40,"tag":131,"props":173,"children":174},{},[175],{"type":46,"value":176},"Message Content Intent",{"type":46,"value":178}," — without this, message content will be empty in API responses",{"type":40,"tag":114,"props":180,"children":181},{},[182,184,189,191,197],{"type":46,"value":183},"Optionally enable ",{"type":40,"tag":131,"props":185,"children":186},{},[187],{"type":46,"value":188},"Server Members Intent",{"type":46,"value":190}," (needed for ",{"type":40,"tag":49,"props":192,"children":194},{"className":193},[],[195],{"type":46,"value":196},"user list",{"type":46,"value":198},")",{"type":40,"tag":103,"props":200,"children":202},{"id":201},"_2-add-the-bot-to-your-server",[203],{"type":46,"value":204},"2. Add the bot to your server",{"type":40,"tag":110,"props":206,"children":207},{},[208,224,243,255],{"type":40,"tag":114,"props":209,"children":210},{},[211,212,217,219],{"type":46,"value":140},{"type":40,"tag":131,"props":213,"children":214},{},[215],{"type":46,"value":216},"OAuth2",{"type":46,"value":218}," on the sidebar → scroll to ",{"type":40,"tag":131,"props":220,"children":221},{},[222],{"type":46,"value":223},"OAuth2 URL Generator",{"type":40,"tag":114,"props":225,"children":226},{},[227,229,235,237],{"type":46,"value":228},"Check scopes: ",{"type":40,"tag":49,"props":230,"children":232},{"className":231},[],[233],{"type":46,"value":234},"bot",{"type":46,"value":236}," + ",{"type":40,"tag":49,"props":238,"children":240},{"className":239},[],[241],{"type":46,"value":242},"applications.commands",{"type":40,"tag":114,"props":244,"children":245},{},[246,248,253],{"type":46,"value":247},"Under ",{"type":40,"tag":131,"props":249,"children":250},{},[251],{"type":46,"value":252},"Bot Permissions",{"type":46,"value":254},", check: View Channels, Send Messages, Read Message History, Add Reactions, Attach Files",{"type":40,"tag":114,"props":256,"children":257},{},[258,260],{"type":46,"value":259},"Copy the generated URL → open in browser → select your server → ",{"type":40,"tag":131,"props":261,"children":262},{},[263],{"type":46,"value":264},"Authorize",{"type":40,"tag":56,"props":266,"children":267},{},[268],{"type":46,"value":269},"Shortcut if you know the client ID:",{"type":40,"tag":271,"props":272,"children":276},"pre",{"className":273,"code":275,"language":46},[274],"language-text","https:\u002F\u002Fdiscord.com\u002Foauth2\u002Fauthorize?client_id=YOUR_CLIENT_ID&scope=bot+applications.commands&permissions=274877975552\n",[277],{"type":40,"tag":49,"props":278,"children":280},{"__ignoreMap":279},"",[281],{"type":46,"value":275},{"type":40,"tag":103,"props":283,"children":285},{"id":284},"_3-set-your-bot-token",[286],{"type":46,"value":287},"3. Set your bot token",{"type":40,"tag":271,"props":289,"children":293},{"className":290,"code":291,"language":292,"meta":279,"style":279},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","export DISCORD_BOT_TOKEN=\"your_token_here\"\n","bash",[294],{"type":40,"tag":49,"props":295,"children":296},{"__ignoreMap":279},[297],{"type":40,"tag":298,"props":299,"children":302},"span",{"class":300,"line":301},"line",1,[303,309,315,321,326,332],{"type":40,"tag":298,"props":304,"children":306},{"style":305},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[307],{"type":46,"value":308},"export",{"type":40,"tag":298,"props":310,"children":312},{"style":311},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[313],{"type":46,"value":314}," DISCORD_BOT_TOKEN",{"type":40,"tag":298,"props":316,"children":318},{"style":317},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[319],{"type":46,"value":320},"=",{"type":40,"tag":298,"props":322,"children":323},{"style":317},[324],{"type":46,"value":325},"\"",{"type":40,"tag":298,"props":327,"children":329},{"style":328},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[330],{"type":46,"value":331},"your_token_here",{"type":40,"tag":298,"props":333,"children":334},{"style":317},[335],{"type":46,"value":336},"\"\n",{"type":40,"tag":103,"props":338,"children":340},{"id":339},"_4-verify",[341],{"type":46,"value":342},"4. Verify",{"type":40,"tag":271,"props":344,"children":346},{"className":290,"code":345,"language":292,"meta":279,"style":279},"python3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py auth test\n",[347],{"type":40,"tag":49,"props":348,"children":349},{"__ignoreMap":279},[350],{"type":40,"tag":298,"props":351,"children":352},{"class":300,"line":301},[353,359,364,369,374,379,384,389],{"type":40,"tag":298,"props":354,"children":356},{"style":355},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[357],{"type":46,"value":358},"python3",{"type":40,"tag":298,"props":360,"children":361},{"style":317},[362],{"type":46,"value":363}," \u003C",{"type":40,"tag":298,"props":365,"children":366},{"style":328},[367],{"type":46,"value":368},"path-to-skil",{"type":40,"tag":298,"props":370,"children":371},{"style":311},[372],{"type":46,"value":373},"l",{"type":40,"tag":298,"props":375,"children":376},{"style":317},[377],{"type":46,"value":378},">",{"type":40,"tag":298,"props":380,"children":381},{"style":328},[382],{"type":46,"value":383},"\u002Fscripts\u002Fdiscord_cli.py",{"type":40,"tag":298,"props":385,"children":386},{"style":328},[387],{"type":46,"value":388}," auth",{"type":40,"tag":298,"props":390,"children":391},{"style":328},[392],{"type":46,"value":393}," test\n",{"type":40,"tag":56,"props":395,"children":396},{},[397],{"type":46,"value":398},"Expected output:",{"type":40,"tag":271,"props":400,"children":403},{"className":401,"code":402,"language":74,"meta":279,"style":279},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\"ok\": true, \"user\": \"your-bot-name\", \"id\": \"...\", \"discriminator\": \"...\"}\n",[404],{"type":40,"tag":49,"props":405,"children":406},{"__ignoreMap":279},[407],{"type":40,"tag":298,"props":408,"children":409},{"class":300,"line":301},[410,415,419,424,428,433,438,443,448,452,456,460,465,469,474,478,483,487,491,495,500,504,508,512,517,521,525,529,533,537],{"type":40,"tag":298,"props":411,"children":412},{"style":317},[413],{"type":46,"value":414},"{",{"type":40,"tag":298,"props":416,"children":417},{"style":317},[418],{"type":46,"value":325},{"type":40,"tag":298,"props":420,"children":421},{"style":305},[422],{"type":46,"value":423},"ok",{"type":40,"tag":298,"props":425,"children":426},{"style":317},[427],{"type":46,"value":325},{"type":40,"tag":298,"props":429,"children":430},{"style":317},[431],{"type":46,"value":432},":",{"type":40,"tag":298,"props":434,"children":435},{"style":317},[436],{"type":46,"value":437}," true,",{"type":40,"tag":298,"props":439,"children":440},{"style":317},[441],{"type":46,"value":442}," \"",{"type":40,"tag":298,"props":444,"children":445},{"style":305},[446],{"type":46,"value":447},"user",{"type":40,"tag":298,"props":449,"children":450},{"style":317},[451],{"type":46,"value":325},{"type":40,"tag":298,"props":453,"children":454},{"style":317},[455],{"type":46,"value":432},{"type":40,"tag":298,"props":457,"children":458},{"style":317},[459],{"type":46,"value":442},{"type":40,"tag":298,"props":461,"children":462},{"style":328},[463],{"type":46,"value":464},"your-bot-name",{"type":40,"tag":298,"props":466,"children":467},{"style":317},[468],{"type":46,"value":325},{"type":40,"tag":298,"props":470,"children":471},{"style":317},[472],{"type":46,"value":473},",",{"type":40,"tag":298,"props":475,"children":476},{"style":317},[477],{"type":46,"value":442},{"type":40,"tag":298,"props":479,"children":480},{"style":305},[481],{"type":46,"value":482},"id",{"type":40,"tag":298,"props":484,"children":485},{"style":317},[486],{"type":46,"value":325},{"type":40,"tag":298,"props":488,"children":489},{"style":317},[490],{"type":46,"value":432},{"type":40,"tag":298,"props":492,"children":493},{"style":317},[494],{"type":46,"value":442},{"type":40,"tag":298,"props":496,"children":497},{"style":328},[498],{"type":46,"value":499},"...",{"type":40,"tag":298,"props":501,"children":502},{"style":317},[503],{"type":46,"value":325},{"type":40,"tag":298,"props":505,"children":506},{"style":317},[507],{"type":46,"value":473},{"type":40,"tag":298,"props":509,"children":510},{"style":317},[511],{"type":46,"value":442},{"type":40,"tag":298,"props":513,"children":514},{"style":305},[515],{"type":46,"value":516},"discriminator",{"type":40,"tag":298,"props":518,"children":519},{"style":317},[520],{"type":46,"value":325},{"type":40,"tag":298,"props":522,"children":523},{"style":317},[524],{"type":46,"value":432},{"type":40,"tag":298,"props":526,"children":527},{"style":317},[528],{"type":46,"value":442},{"type":40,"tag":298,"props":530,"children":531},{"style":328},[532],{"type":46,"value":499},{"type":40,"tag":298,"props":534,"children":535},{"style":317},[536],{"type":46,"value":325},{"type":40,"tag":298,"props":538,"children":539},{"style":317},[540],{"type":46,"value":541},"}\n",{"type":40,"tag":96,"props":543,"children":545},{"id":544},"commands",[546],{"type":46,"value":547},"Commands",{"type":40,"tag":103,"props":549,"children":551},{"id":550},"auth",[552],{"type":46,"value":553},"Auth",{"type":40,"tag":271,"props":555,"children":556},{"className":290,"code":345,"language":292,"meta":279,"style":279},[557],{"type":40,"tag":49,"props":558,"children":559},{"__ignoreMap":279},[560],{"type":40,"tag":298,"props":561,"children":562},{"class":300,"line":301},[563,567,571,575,579,583,587,591],{"type":40,"tag":298,"props":564,"children":565},{"style":355},[566],{"type":46,"value":358},{"type":40,"tag":298,"props":568,"children":569},{"style":317},[570],{"type":46,"value":363},{"type":40,"tag":298,"props":572,"children":573},{"style":328},[574],{"type":46,"value":368},{"type":40,"tag":298,"props":576,"children":577},{"style":311},[578],{"type":46,"value":373},{"type":40,"tag":298,"props":580,"children":581},{"style":317},[582],{"type":46,"value":378},{"type":40,"tag":298,"props":584,"children":585},{"style":328},[586],{"type":46,"value":383},{"type":40,"tag":298,"props":588,"children":589},{"style":328},[590],{"type":46,"value":388},{"type":40,"tag":298,"props":592,"children":593},{"style":328},[594],{"type":46,"value":393},{"type":40,"tag":103,"props":596,"children":598},{"id":597},"servers",[599],{"type":46,"value":600},"Servers",{"type":40,"tag":271,"props":602,"children":604},{"className":290,"code":603,"language":292,"meta":279,"style":279},"python3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py server list\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py server info \u003Cserver-id>\n",[605],{"type":40,"tag":49,"props":606,"children":607},{"__ignoreMap":279},[608,645],{"type":40,"tag":298,"props":609,"children":610},{"class":300,"line":301},[611,615,619,623,627,631,635,640],{"type":40,"tag":298,"props":612,"children":613},{"style":355},[614],{"type":46,"value":358},{"type":40,"tag":298,"props":616,"children":617},{"style":317},[618],{"type":46,"value":363},{"type":40,"tag":298,"props":620,"children":621},{"style":328},[622],{"type":46,"value":368},{"type":40,"tag":298,"props":624,"children":625},{"style":311},[626],{"type":46,"value":373},{"type":40,"tag":298,"props":628,"children":629},{"style":317},[630],{"type":46,"value":378},{"type":40,"tag":298,"props":632,"children":633},{"style":328},[634],{"type":46,"value":383},{"type":40,"tag":298,"props":636,"children":637},{"style":328},[638],{"type":46,"value":639}," server",{"type":40,"tag":298,"props":641,"children":642},{"style":328},[643],{"type":46,"value":644}," list\n",{"type":40,"tag":298,"props":646,"children":648},{"class":300,"line":647},2,[649,653,657,661,665,669,673,677,682,686,691,696],{"type":40,"tag":298,"props":650,"children":651},{"style":355},[652],{"type":46,"value":358},{"type":40,"tag":298,"props":654,"children":655},{"style":317},[656],{"type":46,"value":363},{"type":40,"tag":298,"props":658,"children":659},{"style":328},[660],{"type":46,"value":368},{"type":40,"tag":298,"props":662,"children":663},{"style":311},[664],{"type":46,"value":373},{"type":40,"tag":298,"props":666,"children":667},{"style":317},[668],{"type":46,"value":378},{"type":40,"tag":298,"props":670,"children":671},{"style":328},[672],{"type":46,"value":383},{"type":40,"tag":298,"props":674,"children":675},{"style":328},[676],{"type":46,"value":639},{"type":40,"tag":298,"props":678,"children":679},{"style":328},[680],{"type":46,"value":681}," info",{"type":40,"tag":298,"props":683,"children":684},{"style":317},[685],{"type":46,"value":363},{"type":40,"tag":298,"props":687,"children":688},{"style":328},[689],{"type":46,"value":690},"server-i",{"type":40,"tag":298,"props":692,"children":693},{"style":311},[694],{"type":46,"value":695},"d",{"type":40,"tag":298,"props":697,"children":698},{"style":317},[699],{"type":46,"value":700},">\n",{"type":40,"tag":103,"props":702,"children":704},{"id":703},"channels",[705],{"type":46,"value":706},"Channels",{"type":40,"tag":271,"props":708,"children":710},{"className":290,"code":709,"language":292,"meta":279,"style":279},"python3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py channel list \u003Cserver-id>\n",[711],{"type":40,"tag":49,"props":712,"children":713},{"__ignoreMap":279},[714],{"type":40,"tag":298,"props":715,"children":716},{"class":300,"line":301},[717,721,725,729,733,737,741,746,751,755,759,763],{"type":40,"tag":298,"props":718,"children":719},{"style":355},[720],{"type":46,"value":358},{"type":40,"tag":298,"props":722,"children":723},{"style":317},[724],{"type":46,"value":363},{"type":40,"tag":298,"props":726,"children":727},{"style":328},[728],{"type":46,"value":368},{"type":40,"tag":298,"props":730,"children":731},{"style":311},[732],{"type":46,"value":373},{"type":40,"tag":298,"props":734,"children":735},{"style":317},[736],{"type":46,"value":378},{"type":40,"tag":298,"props":738,"children":739},{"style":328},[740],{"type":46,"value":383},{"type":40,"tag":298,"props":742,"children":743},{"style":328},[744],{"type":46,"value":745}," channel",{"type":40,"tag":298,"props":747,"children":748},{"style":328},[749],{"type":46,"value":750}," list",{"type":40,"tag":298,"props":752,"children":753},{"style":317},[754],{"type":46,"value":363},{"type":40,"tag":298,"props":756,"children":757},{"style":328},[758],{"type":46,"value":690},{"type":40,"tag":298,"props":760,"children":761},{"style":311},[762],{"type":46,"value":695},{"type":40,"tag":298,"props":764,"children":765},{"style":317},[766],{"type":46,"value":700},{"type":40,"tag":56,"props":768,"children":769},{},[770,772,777,778,784,785,791,792,798,800,806],{"type":46,"value":771},"Returns text, announcement, and forum channels sorted by category and position. Each channel has ",{"type":40,"tag":49,"props":773,"children":775},{"className":774},[],[776],{"type":46,"value":482},{"type":46,"value":68},{"type":40,"tag":49,"props":779,"children":781},{"className":780},[],[782],{"type":46,"value":783},"name",{"type":46,"value":68},{"type":40,"tag":49,"props":786,"children":788},{"className":787},[],[789],{"type":46,"value":790},"type",{"type":46,"value":68},{"type":40,"tag":49,"props":793,"children":795},{"className":794},[],[796],{"type":46,"value":797},"category",{"type":46,"value":799},", and ",{"type":40,"tag":49,"props":801,"children":803},{"className":802},[],[804],{"type":46,"value":805},"topic",{"type":46,"value":807},".",{"type":40,"tag":103,"props":809,"children":811},{"id":810},"messages",[812],{"type":46,"value":813},"Messages",{"type":40,"tag":271,"props":815,"children":817},{"className":290,"code":816,"language":292,"meta":279,"style":279},"# List recent messages (default 25, chronological order)\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py message list \u003Cchannel-id>\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py message list \u003Cchannel-id> --limit 50\n\n# Get a single message\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py message get \u003Cchannel-id> \u003Cmessage-id>\n\n# Send a message\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py message send \u003Cchannel-id> \"Hello from the agent!\"\n\n# Edit a message (bot can only edit its own messages)\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py message edit \u003Cchannel-id> \u003Cmessage-id> \"Updated text\"\n\n# Delete a message\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py message delete \u003Cchannel-id> \u003Cmessage-id>\n\n# Search messages in a server\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py message search \u003Cserver-id> \"query\"\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py message search \u003Cserver-id> \"query\" --channel-id \u003Cid> --author-id \u003Cid> --limit 10\n",[818],{"type":40,"tag":49,"props":819,"children":820},{"__ignoreMap":279},[821,830,883,946,956,965,1035,1043,1052,1118,1126,1135,1217,1225,1234,1303,1311,1320,1386],{"type":40,"tag":298,"props":822,"children":823},{"class":300,"line":301},[824],{"type":40,"tag":298,"props":825,"children":827},{"style":826},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[828],{"type":46,"value":829},"# List recent messages (default 25, chronological order)\n",{"type":40,"tag":298,"props":831,"children":832},{"class":300,"line":647},[833,837,841,845,849,853,857,862,866,870,875,879],{"type":40,"tag":298,"props":834,"children":835},{"style":355},[836],{"type":46,"value":358},{"type":40,"tag":298,"props":838,"children":839},{"style":317},[840],{"type":46,"value":363},{"type":40,"tag":298,"props":842,"children":843},{"style":328},[844],{"type":46,"value":368},{"type":40,"tag":298,"props":846,"children":847},{"style":311},[848],{"type":46,"value":373},{"type":40,"tag":298,"props":850,"children":851},{"style":317},[852],{"type":46,"value":378},{"type":40,"tag":298,"props":854,"children":855},{"style":328},[856],{"type":46,"value":383},{"type":40,"tag":298,"props":858,"children":859},{"style":328},[860],{"type":46,"value":861}," message",{"type":40,"tag":298,"props":863,"children":864},{"style":328},[865],{"type":46,"value":750},{"type":40,"tag":298,"props":867,"children":868},{"style":317},[869],{"type":46,"value":363},{"type":40,"tag":298,"props":871,"children":872},{"style":328},[873],{"type":46,"value":874},"channel-i",{"type":40,"tag":298,"props":876,"children":877},{"style":311},[878],{"type":46,"value":695},{"type":40,"tag":298,"props":880,"children":881},{"style":317},[882],{"type":46,"value":700},{"type":40,"tag":298,"props":884,"children":886},{"class":300,"line":885},3,[887,891,895,899,903,907,911,915,919,923,927,931,935,940],{"type":40,"tag":298,"props":888,"children":889},{"style":355},[890],{"type":46,"value":358},{"type":40,"tag":298,"props":892,"children":893},{"style":317},[894],{"type":46,"value":363},{"type":40,"tag":298,"props":896,"children":897},{"style":328},[898],{"type":46,"value":368},{"type":40,"tag":298,"props":900,"children":901},{"style":311},[902],{"type":46,"value":373},{"type":40,"tag":298,"props":904,"children":905},{"style":317},[906],{"type":46,"value":378},{"type":40,"tag":298,"props":908,"children":909},{"style":328},[910],{"type":46,"value":383},{"type":40,"tag":298,"props":912,"children":913},{"style":328},[914],{"type":46,"value":861},{"type":40,"tag":298,"props":916,"children":917},{"style":328},[918],{"type":46,"value":750},{"type":40,"tag":298,"props":920,"children":921},{"style":317},[922],{"type":46,"value":363},{"type":40,"tag":298,"props":924,"children":925},{"style":328},[926],{"type":46,"value":874},{"type":40,"tag":298,"props":928,"children":929},{"style":311},[930],{"type":46,"value":695},{"type":40,"tag":298,"props":932,"children":933},{"style":317},[934],{"type":46,"value":378},{"type":40,"tag":298,"props":936,"children":937},{"style":328},[938],{"type":46,"value":939}," --limit",{"type":40,"tag":298,"props":941,"children":943},{"style":942},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[944],{"type":46,"value":945}," 50\n",{"type":40,"tag":298,"props":947,"children":949},{"class":300,"line":948},4,[950],{"type":40,"tag":298,"props":951,"children":953},{"emptyLinePlaceholder":952},true,[954],{"type":46,"value":955},"\n",{"type":40,"tag":298,"props":957,"children":959},{"class":300,"line":958},5,[960],{"type":40,"tag":298,"props":961,"children":962},{"style":826},[963],{"type":46,"value":964},"# Get a single message\n",{"type":40,"tag":298,"props":966,"children":968},{"class":300,"line":967},6,[969,973,977,981,985,989,993,997,1002,1006,1010,1014,1018,1022,1027,1031],{"type":40,"tag":298,"props":970,"children":971},{"style":355},[972],{"type":46,"value":358},{"type":40,"tag":298,"props":974,"children":975},{"style":317},[976],{"type":46,"value":363},{"type":40,"tag":298,"props":978,"children":979},{"style":328},[980],{"type":46,"value":368},{"type":40,"tag":298,"props":982,"children":983},{"style":311},[984],{"type":46,"value":373},{"type":40,"tag":298,"props":986,"children":987},{"style":317},[988],{"type":46,"value":378},{"type":40,"tag":298,"props":990,"children":991},{"style":328},[992],{"type":46,"value":383},{"type":40,"tag":298,"props":994,"children":995},{"style":328},[996],{"type":46,"value":861},{"type":40,"tag":298,"props":998,"children":999},{"style":328},[1000],{"type":46,"value":1001}," get",{"type":40,"tag":298,"props":1003,"children":1004},{"style":317},[1005],{"type":46,"value":363},{"type":40,"tag":298,"props":1007,"children":1008},{"style":328},[1009],{"type":46,"value":874},{"type":40,"tag":298,"props":1011,"children":1012},{"style":311},[1013],{"type":46,"value":695},{"type":40,"tag":298,"props":1015,"children":1016},{"style":317},[1017],{"type":46,"value":378},{"type":40,"tag":298,"props":1019,"children":1020},{"style":317},[1021],{"type":46,"value":363},{"type":40,"tag":298,"props":1023,"children":1024},{"style":328},[1025],{"type":46,"value":1026},"message-i",{"type":40,"tag":298,"props":1028,"children":1029},{"style":311},[1030],{"type":46,"value":695},{"type":40,"tag":298,"props":1032,"children":1033},{"style":317},[1034],{"type":46,"value":700},{"type":40,"tag":298,"props":1036,"children":1038},{"class":300,"line":1037},7,[1039],{"type":40,"tag":298,"props":1040,"children":1041},{"emptyLinePlaceholder":952},[1042],{"type":46,"value":955},{"type":40,"tag":298,"props":1044,"children":1046},{"class":300,"line":1045},8,[1047],{"type":40,"tag":298,"props":1048,"children":1049},{"style":826},[1050],{"type":46,"value":1051},"# Send a message\n",{"type":40,"tag":298,"props":1053,"children":1055},{"class":300,"line":1054},9,[1056,1060,1064,1068,1072,1076,1080,1084,1089,1093,1097,1101,1105,1109,1114],{"type":40,"tag":298,"props":1057,"children":1058},{"style":355},[1059],{"type":46,"value":358},{"type":40,"tag":298,"props":1061,"children":1062},{"style":317},[1063],{"type":46,"value":363},{"type":40,"tag":298,"props":1065,"children":1066},{"style":328},[1067],{"type":46,"value":368},{"type":40,"tag":298,"props":1069,"children":1070},{"style":311},[1071],{"type":46,"value":373},{"type":40,"tag":298,"props":1073,"children":1074},{"style":317},[1075],{"type":46,"value":378},{"type":40,"tag":298,"props":1077,"children":1078},{"style":328},[1079],{"type":46,"value":383},{"type":40,"tag":298,"props":1081,"children":1082},{"style":328},[1083],{"type":46,"value":861},{"type":40,"tag":298,"props":1085,"children":1086},{"style":328},[1087],{"type":46,"value":1088}," send",{"type":40,"tag":298,"props":1090,"children":1091},{"style":317},[1092],{"type":46,"value":363},{"type":40,"tag":298,"props":1094,"children":1095},{"style":328},[1096],{"type":46,"value":874},{"type":40,"tag":298,"props":1098,"children":1099},{"style":311},[1100],{"type":46,"value":695},{"type":40,"tag":298,"props":1102,"children":1103},{"style":317},[1104],{"type":46,"value":378},{"type":40,"tag":298,"props":1106,"children":1107},{"style":317},[1108],{"type":46,"value":442},{"type":40,"tag":298,"props":1110,"children":1111},{"style":328},[1112],{"type":46,"value":1113},"Hello from the agent!",{"type":40,"tag":298,"props":1115,"children":1116},{"style":317},[1117],{"type":46,"value":336},{"type":40,"tag":298,"props":1119,"children":1121},{"class":300,"line":1120},10,[1122],{"type":40,"tag":298,"props":1123,"children":1124},{"emptyLinePlaceholder":952},[1125],{"type":46,"value":955},{"type":40,"tag":298,"props":1127,"children":1129},{"class":300,"line":1128},11,[1130],{"type":40,"tag":298,"props":1131,"children":1132},{"style":826},[1133],{"type":46,"value":1134},"# Edit a message (bot can only edit its own messages)\n",{"type":40,"tag":298,"props":1136,"children":1138},{"class":300,"line":1137},12,[1139,1143,1147,1151,1155,1159,1163,1167,1172,1176,1180,1184,1188,1192,1196,1200,1204,1208,1213],{"type":40,"tag":298,"props":1140,"children":1141},{"style":355},[1142],{"type":46,"value":358},{"type":40,"tag":298,"props":1144,"children":1145},{"style":317},[1146],{"type":46,"value":363},{"type":40,"tag":298,"props":1148,"children":1149},{"style":328},[1150],{"type":46,"value":368},{"type":40,"tag":298,"props":1152,"children":1153},{"style":311},[1154],{"type":46,"value":373},{"type":40,"tag":298,"props":1156,"children":1157},{"style":317},[1158],{"type":46,"value":378},{"type":40,"tag":298,"props":1160,"children":1161},{"style":328},[1162],{"type":46,"value":383},{"type":40,"tag":298,"props":1164,"children":1165},{"style":328},[1166],{"type":46,"value":861},{"type":40,"tag":298,"props":1168,"children":1169},{"style":328},[1170],{"type":46,"value":1171}," edit",{"type":40,"tag":298,"props":1173,"children":1174},{"style":317},[1175],{"type":46,"value":363},{"type":40,"tag":298,"props":1177,"children":1178},{"style":328},[1179],{"type":46,"value":874},{"type":40,"tag":298,"props":1181,"children":1182},{"style":311},[1183],{"type":46,"value":695},{"type":40,"tag":298,"props":1185,"children":1186},{"style":317},[1187],{"type":46,"value":378},{"type":40,"tag":298,"props":1189,"children":1190},{"style":317},[1191],{"type":46,"value":363},{"type":40,"tag":298,"props":1193,"children":1194},{"style":328},[1195],{"type":46,"value":1026},{"type":40,"tag":298,"props":1197,"children":1198},{"style":311},[1199],{"type":46,"value":695},{"type":40,"tag":298,"props":1201,"children":1202},{"style":317},[1203],{"type":46,"value":378},{"type":40,"tag":298,"props":1205,"children":1206},{"style":317},[1207],{"type":46,"value":442},{"type":40,"tag":298,"props":1209,"children":1210},{"style":328},[1211],{"type":46,"value":1212},"Updated text",{"type":40,"tag":298,"props":1214,"children":1215},{"style":317},[1216],{"type":46,"value":336},{"type":40,"tag":298,"props":1218,"children":1220},{"class":300,"line":1219},13,[1221],{"type":40,"tag":298,"props":1222,"children":1223},{"emptyLinePlaceholder":952},[1224],{"type":46,"value":955},{"type":40,"tag":298,"props":1226,"children":1228},{"class":300,"line":1227},14,[1229],{"type":40,"tag":298,"props":1230,"children":1231},{"style":826},[1232],{"type":46,"value":1233},"# Delete a message\n",{"type":40,"tag":298,"props":1235,"children":1237},{"class":300,"line":1236},15,[1238,1242,1246,1250,1254,1258,1262,1266,1271,1275,1279,1283,1287,1291,1295,1299],{"type":40,"tag":298,"props":1239,"children":1240},{"style":355},[1241],{"type":46,"value":358},{"type":40,"tag":298,"props":1243,"children":1244},{"style":317},[1245],{"type":46,"value":363},{"type":40,"tag":298,"props":1247,"children":1248},{"style":328},[1249],{"type":46,"value":368},{"type":40,"tag":298,"props":1251,"children":1252},{"style":311},[1253],{"type":46,"value":373},{"type":40,"tag":298,"props":1255,"children":1256},{"style":317},[1257],{"type":46,"value":378},{"type":40,"tag":298,"props":1259,"children":1260},{"style":328},[1261],{"type":46,"value":383},{"type":40,"tag":298,"props":1263,"children":1264},{"style":328},[1265],{"type":46,"value":861},{"type":40,"tag":298,"props":1267,"children":1268},{"style":328},[1269],{"type":46,"value":1270}," delete",{"type":40,"tag":298,"props":1272,"children":1273},{"style":317},[1274],{"type":46,"value":363},{"type":40,"tag":298,"props":1276,"children":1277},{"style":328},[1278],{"type":46,"value":874},{"type":40,"tag":298,"props":1280,"children":1281},{"style":311},[1282],{"type":46,"value":695},{"type":40,"tag":298,"props":1284,"children":1285},{"style":317},[1286],{"type":46,"value":378},{"type":40,"tag":298,"props":1288,"children":1289},{"style":317},[1290],{"type":46,"value":363},{"type":40,"tag":298,"props":1292,"children":1293},{"style":328},[1294],{"type":46,"value":1026},{"type":40,"tag":298,"props":1296,"children":1297},{"style":311},[1298],{"type":46,"value":695},{"type":40,"tag":298,"props":1300,"children":1301},{"style":317},[1302],{"type":46,"value":700},{"type":40,"tag":298,"props":1304,"children":1306},{"class":300,"line":1305},16,[1307],{"type":40,"tag":298,"props":1308,"children":1309},{"emptyLinePlaceholder":952},[1310],{"type":46,"value":955},{"type":40,"tag":298,"props":1312,"children":1314},{"class":300,"line":1313},17,[1315],{"type":40,"tag":298,"props":1316,"children":1317},{"style":826},[1318],{"type":46,"value":1319},"# Search messages in a server\n",{"type":40,"tag":298,"props":1321,"children":1323},{"class":300,"line":1322},18,[1324,1328,1332,1336,1340,1344,1348,1352,1357,1361,1365,1369,1373,1377,1382],{"type":40,"tag":298,"props":1325,"children":1326},{"style":355},[1327],{"type":46,"value":358},{"type":40,"tag":298,"props":1329,"children":1330},{"style":317},[1331],{"type":46,"value":363},{"type":40,"tag":298,"props":1333,"children":1334},{"style":328},[1335],{"type":46,"value":368},{"type":40,"tag":298,"props":1337,"children":1338},{"style":311},[1339],{"type":46,"value":373},{"type":40,"tag":298,"props":1341,"children":1342},{"style":317},[1343],{"type":46,"value":378},{"type":40,"tag":298,"props":1345,"children":1346},{"style":328},[1347],{"type":46,"value":383},{"type":40,"tag":298,"props":1349,"children":1350},{"style":328},[1351],{"type":46,"value":861},{"type":40,"tag":298,"props":1353,"children":1354},{"style":328},[1355],{"type":46,"value":1356}," search",{"type":40,"tag":298,"props":1358,"children":1359},{"style":317},[1360],{"type":46,"value":363},{"type":40,"tag":298,"props":1362,"children":1363},{"style":328},[1364],{"type":46,"value":690},{"type":40,"tag":298,"props":1366,"children":1367},{"style":311},[1368],{"type":46,"value":695},{"type":40,"tag":298,"props":1370,"children":1371},{"style":317},[1372],{"type":46,"value":378},{"type":40,"tag":298,"props":1374,"children":1375},{"style":317},[1376],{"type":46,"value":442},{"type":40,"tag":298,"props":1378,"children":1379},{"style":328},[1380],{"type":46,"value":1381},"query",{"type":40,"tag":298,"props":1383,"children":1384},{"style":317},[1385],{"type":46,"value":336},{"type":40,"tag":298,"props":1387,"children":1389},{"class":300,"line":1388},19,[1390,1394,1398,1402,1406,1410,1414,1418,1422,1426,1430,1434,1438,1442,1446,1450,1455,1459,1464,1468,1472,1477,1481,1485,1489,1493,1497],{"type":40,"tag":298,"props":1391,"children":1392},{"style":355},[1393],{"type":46,"value":358},{"type":40,"tag":298,"props":1395,"children":1396},{"style":317},[1397],{"type":46,"value":363},{"type":40,"tag":298,"props":1399,"children":1400},{"style":328},[1401],{"type":46,"value":368},{"type":40,"tag":298,"props":1403,"children":1404},{"style":311},[1405],{"type":46,"value":373},{"type":40,"tag":298,"props":1407,"children":1408},{"style":317},[1409],{"type":46,"value":378},{"type":40,"tag":298,"props":1411,"children":1412},{"style":328},[1413],{"type":46,"value":383},{"type":40,"tag":298,"props":1415,"children":1416},{"style":328},[1417],{"type":46,"value":861},{"type":40,"tag":298,"props":1419,"children":1420},{"style":328},[1421],{"type":46,"value":1356},{"type":40,"tag":298,"props":1423,"children":1424},{"style":317},[1425],{"type":46,"value":363},{"type":40,"tag":298,"props":1427,"children":1428},{"style":328},[1429],{"type":46,"value":690},{"type":40,"tag":298,"props":1431,"children":1432},{"style":311},[1433],{"type":46,"value":695},{"type":40,"tag":298,"props":1435,"children":1436},{"style":317},[1437],{"type":46,"value":378},{"type":40,"tag":298,"props":1439,"children":1440},{"style":317},[1441],{"type":46,"value":442},{"type":40,"tag":298,"props":1443,"children":1444},{"style":328},[1445],{"type":46,"value":1381},{"type":40,"tag":298,"props":1447,"children":1448},{"style":317},[1449],{"type":46,"value":325},{"type":40,"tag":298,"props":1451,"children":1452},{"style":328},[1453],{"type":46,"value":1454}," --channel-id",{"type":40,"tag":298,"props":1456,"children":1457},{"style":317},[1458],{"type":46,"value":363},{"type":40,"tag":298,"props":1460,"children":1461},{"style":328},[1462],{"type":46,"value":1463},"i",{"type":40,"tag":298,"props":1465,"children":1466},{"style":311},[1467],{"type":46,"value":695},{"type":40,"tag":298,"props":1469,"children":1470},{"style":317},[1471],{"type":46,"value":378},{"type":40,"tag":298,"props":1473,"children":1474},{"style":328},[1475],{"type":46,"value":1476}," --author-id",{"type":40,"tag":298,"props":1478,"children":1479},{"style":317},[1480],{"type":46,"value":363},{"type":40,"tag":298,"props":1482,"children":1483},{"style":328},[1484],{"type":46,"value":1463},{"type":40,"tag":298,"props":1486,"children":1487},{"style":311},[1488],{"type":46,"value":695},{"type":40,"tag":298,"props":1490,"children":1491},{"style":317},[1492],{"type":46,"value":378},{"type":40,"tag":298,"props":1494,"children":1495},{"style":328},[1496],{"type":46,"value":939},{"type":40,"tag":298,"props":1498,"children":1499},{"style":942},[1500],{"type":46,"value":1501}," 10\n",{"type":40,"tag":103,"props":1503,"children":1505},{"id":1504},"reactions",[1506],{"type":46,"value":1507},"Reactions",{"type":40,"tag":271,"props":1509,"children":1511},{"className":290,"code":1510,"language":292,"meta":279,"style":279},"python3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py reaction add \u003Cchannel-id> \u003Cmessage-id> 👍\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py reaction remove \u003Cchannel-id> \u003Cmessage-id> 👍\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py reaction list \u003Cchannel-id> \u003Cmessage-id>\n",[1512],{"type":40,"tag":49,"props":1513,"children":1514},{"__ignoreMap":279},[1515,1589,1661],{"type":40,"tag":298,"props":1516,"children":1517},{"class":300,"line":301},[1518,1522,1526,1530,1534,1538,1542,1547,1552,1556,1560,1564,1568,1572,1576,1580,1584],{"type":40,"tag":298,"props":1519,"children":1520},{"style":355},[1521],{"type":46,"value":358},{"type":40,"tag":298,"props":1523,"children":1524},{"style":317},[1525],{"type":46,"value":363},{"type":40,"tag":298,"props":1527,"children":1528},{"style":328},[1529],{"type":46,"value":368},{"type":40,"tag":298,"props":1531,"children":1532},{"style":311},[1533],{"type":46,"value":373},{"type":40,"tag":298,"props":1535,"children":1536},{"style":317},[1537],{"type":46,"value":378},{"type":40,"tag":298,"props":1539,"children":1540},{"style":328},[1541],{"type":46,"value":383},{"type":40,"tag":298,"props":1543,"children":1544},{"style":328},[1545],{"type":46,"value":1546}," reaction",{"type":40,"tag":298,"props":1548,"children":1549},{"style":328},[1550],{"type":46,"value":1551}," add",{"type":40,"tag":298,"props":1553,"children":1554},{"style":317},[1555],{"type":46,"value":363},{"type":40,"tag":298,"props":1557,"children":1558},{"style":328},[1559],{"type":46,"value":874},{"type":40,"tag":298,"props":1561,"children":1562},{"style":311},[1563],{"type":46,"value":695},{"type":40,"tag":298,"props":1565,"children":1566},{"style":317},[1567],{"type":46,"value":378},{"type":40,"tag":298,"props":1569,"children":1570},{"style":317},[1571],{"type":46,"value":363},{"type":40,"tag":298,"props":1573,"children":1574},{"style":328},[1575],{"type":46,"value":1026},{"type":40,"tag":298,"props":1577,"children":1578},{"style":311},[1579],{"type":46,"value":695},{"type":40,"tag":298,"props":1581,"children":1582},{"style":317},[1583],{"type":46,"value":378},{"type":40,"tag":298,"props":1585,"children":1586},{"style":328},[1587],{"type":46,"value":1588}," 👍\n",{"type":40,"tag":298,"props":1590,"children":1591},{"class":300,"line":647},[1592,1596,1600,1604,1608,1612,1616,1620,1625,1629,1633,1637,1641,1645,1649,1653,1657],{"type":40,"tag":298,"props":1593,"children":1594},{"style":355},[1595],{"type":46,"value":358},{"type":40,"tag":298,"props":1597,"children":1598},{"style":317},[1599],{"type":46,"value":363},{"type":40,"tag":298,"props":1601,"children":1602},{"style":328},[1603],{"type":46,"value":368},{"type":40,"tag":298,"props":1605,"children":1606},{"style":311},[1607],{"type":46,"value":373},{"type":40,"tag":298,"props":1609,"children":1610},{"style":317},[1611],{"type":46,"value":378},{"type":40,"tag":298,"props":1613,"children":1614},{"style":328},[1615],{"type":46,"value":383},{"type":40,"tag":298,"props":1617,"children":1618},{"style":328},[1619],{"type":46,"value":1546},{"type":40,"tag":298,"props":1621,"children":1622},{"style":328},[1623],{"type":46,"value":1624}," remove",{"type":40,"tag":298,"props":1626,"children":1627},{"style":317},[1628],{"type":46,"value":363},{"type":40,"tag":298,"props":1630,"children":1631},{"style":328},[1632],{"type":46,"value":874},{"type":40,"tag":298,"props":1634,"children":1635},{"style":311},[1636],{"type":46,"value":695},{"type":40,"tag":298,"props":1638,"children":1639},{"style":317},[1640],{"type":46,"value":378},{"type":40,"tag":298,"props":1642,"children":1643},{"style":317},[1644],{"type":46,"value":363},{"type":40,"tag":298,"props":1646,"children":1647},{"style":328},[1648],{"type":46,"value":1026},{"type":40,"tag":298,"props":1650,"children":1651},{"style":311},[1652],{"type":46,"value":695},{"type":40,"tag":298,"props":1654,"children":1655},{"style":317},[1656],{"type":46,"value":378},{"type":40,"tag":298,"props":1658,"children":1659},{"style":328},[1660],{"type":46,"value":1588},{"type":40,"tag":298,"props":1662,"children":1663},{"class":300,"line":885},[1664,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704,1708,1712,1716,1720,1724],{"type":40,"tag":298,"props":1665,"children":1666},{"style":355},[1667],{"type":46,"value":358},{"type":40,"tag":298,"props":1669,"children":1670},{"style":317},[1671],{"type":46,"value":363},{"type":40,"tag":298,"props":1673,"children":1674},{"style":328},[1675],{"type":46,"value":368},{"type":40,"tag":298,"props":1677,"children":1678},{"style":311},[1679],{"type":46,"value":373},{"type":40,"tag":298,"props":1681,"children":1682},{"style":317},[1683],{"type":46,"value":378},{"type":40,"tag":298,"props":1685,"children":1686},{"style":328},[1687],{"type":46,"value":383},{"type":40,"tag":298,"props":1689,"children":1690},{"style":328},[1691],{"type":46,"value":1546},{"type":40,"tag":298,"props":1693,"children":1694},{"style":328},[1695],{"type":46,"value":750},{"type":40,"tag":298,"props":1697,"children":1698},{"style":317},[1699],{"type":46,"value":363},{"type":40,"tag":298,"props":1701,"children":1702},{"style":328},[1703],{"type":46,"value":874},{"type":40,"tag":298,"props":1705,"children":1706},{"style":311},[1707],{"type":46,"value":695},{"type":40,"tag":298,"props":1709,"children":1710},{"style":317},[1711],{"type":46,"value":378},{"type":40,"tag":298,"props":1713,"children":1714},{"style":317},[1715],{"type":46,"value":363},{"type":40,"tag":298,"props":1717,"children":1718},{"style":328},[1719],{"type":46,"value":1026},{"type":40,"tag":298,"props":1721,"children":1722},{"style":311},[1723],{"type":46,"value":695},{"type":40,"tag":298,"props":1725,"children":1726},{"style":317},[1727],{"type":46,"value":700},{"type":40,"tag":103,"props":1729,"children":1731},{"id":1730},"threads",[1732],{"type":46,"value":1733},"Threads",{"type":40,"tag":271,"props":1735,"children":1737},{"className":290,"code":1736,"language":292,"meta":279,"style":279},"# Create a new thread in a channel\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py thread create \u003Cchannel-id> \"Discussion Topic\"\n\n# Create a thread from a specific message\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py thread create \u003Cchannel-id> \"Bug Triage\" --message-id \u003Cid>\n",[1738],{"type":40,"tag":49,"props":1739,"children":1740},{"__ignoreMap":279},[1741,1749,1815,1822,1830],{"type":40,"tag":298,"props":1742,"children":1743},{"class":300,"line":301},[1744],{"type":40,"tag":298,"props":1745,"children":1746},{"style":826},[1747],{"type":46,"value":1748},"# Create a new thread in a channel\n",{"type":40,"tag":298,"props":1750,"children":1751},{"class":300,"line":647},[1752,1756,1760,1764,1768,1772,1776,1781,1786,1790,1794,1798,1802,1806,1811],{"type":40,"tag":298,"props":1753,"children":1754},{"style":355},[1755],{"type":46,"value":358},{"type":40,"tag":298,"props":1757,"children":1758},{"style":317},[1759],{"type":46,"value":363},{"type":40,"tag":298,"props":1761,"children":1762},{"style":328},[1763],{"type":46,"value":368},{"type":40,"tag":298,"props":1765,"children":1766},{"style":311},[1767],{"type":46,"value":373},{"type":40,"tag":298,"props":1769,"children":1770},{"style":317},[1771],{"type":46,"value":378},{"type":40,"tag":298,"props":1773,"children":1774},{"style":328},[1775],{"type":46,"value":383},{"type":40,"tag":298,"props":1777,"children":1778},{"style":328},[1779],{"type":46,"value":1780}," thread",{"type":40,"tag":298,"props":1782,"children":1783},{"style":328},[1784],{"type":46,"value":1785}," create",{"type":40,"tag":298,"props":1787,"children":1788},{"style":317},[1789],{"type":46,"value":363},{"type":40,"tag":298,"props":1791,"children":1792},{"style":328},[1793],{"type":46,"value":874},{"type":40,"tag":298,"props":1795,"children":1796},{"style":311},[1797],{"type":46,"value":695},{"type":40,"tag":298,"props":1799,"children":1800},{"style":317},[1801],{"type":46,"value":378},{"type":40,"tag":298,"props":1803,"children":1804},{"style":317},[1805],{"type":46,"value":442},{"type":40,"tag":298,"props":1807,"children":1808},{"style":328},[1809],{"type":46,"value":1810},"Discussion Topic",{"type":40,"tag":298,"props":1812,"children":1813},{"style":317},[1814],{"type":46,"value":336},{"type":40,"tag":298,"props":1816,"children":1817},{"class":300,"line":885},[1818],{"type":40,"tag":298,"props":1819,"children":1820},{"emptyLinePlaceholder":952},[1821],{"type":46,"value":955},{"type":40,"tag":298,"props":1823,"children":1824},{"class":300,"line":948},[1825],{"type":40,"tag":298,"props":1826,"children":1827},{"style":826},[1828],{"type":46,"value":1829},"# Create a thread from a specific message\n",{"type":40,"tag":298,"props":1831,"children":1832},{"class":300,"line":958},[1833,1837,1841,1845,1849,1853,1857,1861,1865,1869,1873,1877,1881,1885,1890,1894,1899,1903,1907,1911],{"type":40,"tag":298,"props":1834,"children":1835},{"style":355},[1836],{"type":46,"value":358},{"type":40,"tag":298,"props":1838,"children":1839},{"style":317},[1840],{"type":46,"value":363},{"type":40,"tag":298,"props":1842,"children":1843},{"style":328},[1844],{"type":46,"value":368},{"type":40,"tag":298,"props":1846,"children":1847},{"style":311},[1848],{"type":46,"value":373},{"type":40,"tag":298,"props":1850,"children":1851},{"style":317},[1852],{"type":46,"value":378},{"type":40,"tag":298,"props":1854,"children":1855},{"style":328},[1856],{"type":46,"value":383},{"type":40,"tag":298,"props":1858,"children":1859},{"style":328},[1860],{"type":46,"value":1780},{"type":40,"tag":298,"props":1862,"children":1863},{"style":328},[1864],{"type":46,"value":1785},{"type":40,"tag":298,"props":1866,"children":1867},{"style":317},[1868],{"type":46,"value":363},{"type":40,"tag":298,"props":1870,"children":1871},{"style":328},[1872],{"type":46,"value":874},{"type":40,"tag":298,"props":1874,"children":1875},{"style":311},[1876],{"type":46,"value":695},{"type":40,"tag":298,"props":1878,"children":1879},{"style":317},[1880],{"type":46,"value":378},{"type":40,"tag":298,"props":1882,"children":1883},{"style":317},[1884],{"type":46,"value":442},{"type":40,"tag":298,"props":1886,"children":1887},{"style":328},[1888],{"type":46,"value":1889},"Bug Triage",{"type":40,"tag":298,"props":1891,"children":1892},{"style":317},[1893],{"type":46,"value":325},{"type":40,"tag":298,"props":1895,"children":1896},{"style":328},[1897],{"type":46,"value":1898}," --message-id",{"type":40,"tag":298,"props":1900,"children":1901},{"style":317},[1902],{"type":46,"value":363},{"type":40,"tag":298,"props":1904,"children":1905},{"style":328},[1906],{"type":46,"value":1463},{"type":40,"tag":298,"props":1908,"children":1909},{"style":311},[1910],{"type":46,"value":695},{"type":40,"tag":298,"props":1912,"children":1913},{"style":317},[1914],{"type":46,"value":700},{"type":40,"tag":103,"props":1916,"children":1918},{"id":1917},"pins",[1919],{"type":46,"value":1920},"Pins",{"type":40,"tag":271,"props":1922,"children":1924},{"className":290,"code":1923,"language":292,"meta":279,"style":279},"python3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py pin list \u003Cchannel-id>\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py pin add \u003Cchannel-id> \u003Cmessage-id>\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py pin remove \u003Cchannel-id> \u003Cmessage-id>\n",[1925],{"type":40,"tag":49,"props":1926,"children":1927},{"__ignoreMap":279},[1928,1980,2047],{"type":40,"tag":298,"props":1929,"children":1930},{"class":300,"line":301},[1931,1935,1939,1943,1947,1951,1955,1960,1964,1968,1972,1976],{"type":40,"tag":298,"props":1932,"children":1933},{"style":355},[1934],{"type":46,"value":358},{"type":40,"tag":298,"props":1936,"children":1937},{"style":317},[1938],{"type":46,"value":363},{"type":40,"tag":298,"props":1940,"children":1941},{"style":328},[1942],{"type":46,"value":368},{"type":40,"tag":298,"props":1944,"children":1945},{"style":311},[1946],{"type":46,"value":373},{"type":40,"tag":298,"props":1948,"children":1949},{"style":317},[1950],{"type":46,"value":378},{"type":40,"tag":298,"props":1952,"children":1953},{"style":328},[1954],{"type":46,"value":383},{"type":40,"tag":298,"props":1956,"children":1957},{"style":328},[1958],{"type":46,"value":1959}," pin",{"type":40,"tag":298,"props":1961,"children":1962},{"style":328},[1963],{"type":46,"value":750},{"type":40,"tag":298,"props":1965,"children":1966},{"style":317},[1967],{"type":46,"value":363},{"type":40,"tag":298,"props":1969,"children":1970},{"style":328},[1971],{"type":46,"value":874},{"type":40,"tag":298,"props":1973,"children":1974},{"style":311},[1975],{"type":46,"value":695},{"type":40,"tag":298,"props":1977,"children":1978},{"style":317},[1979],{"type":46,"value":700},{"type":40,"tag":298,"props":1981,"children":1982},{"class":300,"line":647},[1983,1987,1991,1995,1999,2003,2007,2011,2015,2019,2023,2027,2031,2035,2039,2043],{"type":40,"tag":298,"props":1984,"children":1985},{"style":355},[1986],{"type":46,"value":358},{"type":40,"tag":298,"props":1988,"children":1989},{"style":317},[1990],{"type":46,"value":363},{"type":40,"tag":298,"props":1992,"children":1993},{"style":328},[1994],{"type":46,"value":368},{"type":40,"tag":298,"props":1996,"children":1997},{"style":311},[1998],{"type":46,"value":373},{"type":40,"tag":298,"props":2000,"children":2001},{"style":317},[2002],{"type":46,"value":378},{"type":40,"tag":298,"props":2004,"children":2005},{"style":328},[2006],{"type":46,"value":383},{"type":40,"tag":298,"props":2008,"children":2009},{"style":328},[2010],{"type":46,"value":1959},{"type":40,"tag":298,"props":2012,"children":2013},{"style":328},[2014],{"type":46,"value":1551},{"type":40,"tag":298,"props":2016,"children":2017},{"style":317},[2018],{"type":46,"value":363},{"type":40,"tag":298,"props":2020,"children":2021},{"style":328},[2022],{"type":46,"value":874},{"type":40,"tag":298,"props":2024,"children":2025},{"style":311},[2026],{"type":46,"value":695},{"type":40,"tag":298,"props":2028,"children":2029},{"style":317},[2030],{"type":46,"value":378},{"type":40,"tag":298,"props":2032,"children":2033},{"style":317},[2034],{"type":46,"value":363},{"type":40,"tag":298,"props":2036,"children":2037},{"style":328},[2038],{"type":46,"value":1026},{"type":40,"tag":298,"props":2040,"children":2041},{"style":311},[2042],{"type":46,"value":695},{"type":40,"tag":298,"props":2044,"children":2045},{"style":317},[2046],{"type":46,"value":700},{"type":40,"tag":298,"props":2048,"children":2049},{"class":300,"line":885},[2050,2054,2058,2062,2066,2070,2074,2078,2082,2086,2090,2094,2098,2102,2106,2110],{"type":40,"tag":298,"props":2051,"children":2052},{"style":355},[2053],{"type":46,"value":358},{"type":40,"tag":298,"props":2055,"children":2056},{"style":317},[2057],{"type":46,"value":363},{"type":40,"tag":298,"props":2059,"children":2060},{"style":328},[2061],{"type":46,"value":368},{"type":40,"tag":298,"props":2063,"children":2064},{"style":311},[2065],{"type":46,"value":373},{"type":40,"tag":298,"props":2067,"children":2068},{"style":317},[2069],{"type":46,"value":378},{"type":40,"tag":298,"props":2071,"children":2072},{"style":328},[2073],{"type":46,"value":383},{"type":40,"tag":298,"props":2075,"children":2076},{"style":328},[2077],{"type":46,"value":1959},{"type":40,"tag":298,"props":2079,"children":2080},{"style":328},[2081],{"type":46,"value":1624},{"type":40,"tag":298,"props":2083,"children":2084},{"style":317},[2085],{"type":46,"value":363},{"type":40,"tag":298,"props":2087,"children":2088},{"style":328},[2089],{"type":46,"value":874},{"type":40,"tag":298,"props":2091,"children":2092},{"style":311},[2093],{"type":46,"value":695},{"type":40,"tag":298,"props":2095,"children":2096},{"style":317},[2097],{"type":46,"value":378},{"type":40,"tag":298,"props":2099,"children":2100},{"style":317},[2101],{"type":46,"value":363},{"type":40,"tag":298,"props":2103,"children":2104},{"style":328},[2105],{"type":46,"value":1026},{"type":40,"tag":298,"props":2107,"children":2108},{"style":311},[2109],{"type":46,"value":695},{"type":40,"tag":298,"props":2111,"children":2112},{"style":317},[2113],{"type":46,"value":700},{"type":40,"tag":103,"props":2115,"children":2117},{"id":2116},"users",[2118],{"type":46,"value":2119},"Users",{"type":40,"tag":271,"props":2121,"children":2123},{"className":290,"code":2122,"language":292,"meta":279,"style":279},"python3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py user list \u003Cserver-id>\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py user list \u003Cserver-id> --limit 200\npython3 \u003Cpath-to-skill>\u002Fscripts\u002Fdiscord_cli.py user info \u003Cuser-id>\n",[2124],{"type":40,"tag":49,"props":2125,"children":2126},{"__ignoreMap":279},[2127,2179,2239],{"type":40,"tag":298,"props":2128,"children":2129},{"class":300,"line":301},[2130,2134,2138,2142,2146,2150,2154,2159,2163,2167,2171,2175],{"type":40,"tag":298,"props":2131,"children":2132},{"style":355},[2133],{"type":46,"value":358},{"type":40,"tag":298,"props":2135,"children":2136},{"style":317},[2137],{"type":46,"value":363},{"type":40,"tag":298,"props":2139,"children":2140},{"style":328},[2141],{"type":46,"value":368},{"type":40,"tag":298,"props":2143,"children":2144},{"style":311},[2145],{"type":46,"value":373},{"type":40,"tag":298,"props":2147,"children":2148},{"style":317},[2149],{"type":46,"value":378},{"type":40,"tag":298,"props":2151,"children":2152},{"style":328},[2153],{"type":46,"value":383},{"type":40,"tag":298,"props":2155,"children":2156},{"style":328},[2157],{"type":46,"value":2158}," user",{"type":40,"tag":298,"props":2160,"children":2161},{"style":328},[2162],{"type":46,"value":750},{"type":40,"tag":298,"props":2164,"children":2165},{"style":317},[2166],{"type":46,"value":363},{"type":40,"tag":298,"props":2168,"children":2169},{"style":328},[2170],{"type":46,"value":690},{"type":40,"tag":298,"props":2172,"children":2173},{"style":311},[2174],{"type":46,"value":695},{"type":40,"tag":298,"props":2176,"children":2177},{"style":317},[2178],{"type":46,"value":700},{"type":40,"tag":298,"props":2180,"children":2181},{"class":300,"line":647},[2182,2186,2190,2194,2198,2202,2206,2210,2214,2218,2222,2226,2230,2234],{"type":40,"tag":298,"props":2183,"children":2184},{"style":355},[2185],{"type":46,"value":358},{"type":40,"tag":298,"props":2187,"children":2188},{"style":317},[2189],{"type":46,"value":363},{"type":40,"tag":298,"props":2191,"children":2192},{"style":328},[2193],{"type":46,"value":368},{"type":40,"tag":298,"props":2195,"children":2196},{"style":311},[2197],{"type":46,"value":373},{"type":40,"tag":298,"props":2199,"children":2200},{"style":317},[2201],{"type":46,"value":378},{"type":40,"tag":298,"props":2203,"children":2204},{"style":328},[2205],{"type":46,"value":383},{"type":40,"tag":298,"props":2207,"children":2208},{"style":328},[2209],{"type":46,"value":2158},{"type":40,"tag":298,"props":2211,"children":2212},{"style":328},[2213],{"type":46,"value":750},{"type":40,"tag":298,"props":2215,"children":2216},{"style":317},[2217],{"type":46,"value":363},{"type":40,"tag":298,"props":2219,"children":2220},{"style":328},[2221],{"type":46,"value":690},{"type":40,"tag":298,"props":2223,"children":2224},{"style":311},[2225],{"type":46,"value":695},{"type":40,"tag":298,"props":2227,"children":2228},{"style":317},[2229],{"type":46,"value":378},{"type":40,"tag":298,"props":2231,"children":2232},{"style":328},[2233],{"type":46,"value":939},{"type":40,"tag":298,"props":2235,"children":2236},{"style":942},[2237],{"type":46,"value":2238}," 200\n",{"type":40,"tag":298,"props":2240,"children":2241},{"class":300,"line":885},[2242,2246,2250,2254,2258,2262,2266,2270,2274,2278,2283,2287],{"type":40,"tag":298,"props":2243,"children":2244},{"style":355},[2245],{"type":46,"value":358},{"type":40,"tag":298,"props":2247,"children":2248},{"style":317},[2249],{"type":46,"value":363},{"type":40,"tag":298,"props":2251,"children":2252},{"style":328},[2253],{"type":46,"value":368},{"type":40,"tag":298,"props":2255,"children":2256},{"style":311},[2257],{"type":46,"value":373},{"type":40,"tag":298,"props":2259,"children":2260},{"style":317},[2261],{"type":46,"value":378},{"type":40,"tag":298,"props":2263,"children":2264},{"style":328},[2265],{"type":46,"value":383},{"type":40,"tag":298,"props":2267,"children":2268},{"style":328},[2269],{"type":46,"value":2158},{"type":40,"tag":298,"props":2271,"children":2272},{"style":328},[2273],{"type":46,"value":681},{"type":40,"tag":298,"props":2275,"children":2276},{"style":317},[2277],{"type":46,"value":363},{"type":40,"tag":298,"props":2279,"children":2280},{"style":328},[2281],{"type":46,"value":2282},"user-i",{"type":40,"tag":298,"props":2284,"children":2285},{"style":311},[2286],{"type":46,"value":695},{"type":40,"tag":298,"props":2288,"children":2289},{"style":317},[2290],{"type":46,"value":700},{"type":40,"tag":56,"props":2292,"children":2293},{},[2294,2296,2302],{"type":46,"value":2295},"Mention users in messages as ",{"type":40,"tag":49,"props":2297,"children":2299},{"className":2298},[],[2300],{"type":46,"value":2301},"\u003C@USER_ID>",{"type":46,"value":807},{"type":40,"tag":96,"props":2304,"children":2306},{"id":2305},"output-format",[2307],{"type":46,"value":2308},"Output format",{"type":40,"tag":56,"props":2310,"children":2311},{},[2312,2314,2320,2322,2328],{"type":46,"value":2313},"All commands output JSON to stdout. Errors go to stderr with an ",{"type":40,"tag":49,"props":2315,"children":2317},{"className":2316},[],[2318],{"type":46,"value":2319},"error",{"type":46,"value":2321}," field and HTTP ",{"type":40,"tag":49,"props":2323,"children":2325},{"className":2324},[],[2326],{"type":46,"value":2327},"status",{"type":46,"value":2329}," code.",{"type":40,"tag":56,"props":2331,"children":2332},{},[2333,2335,2340,2341,2347,2348,2354,2355,2361,2362,2368,2370,2376,2377,2383,2385,2391,2393,2399,2401,2406,2407,2413,2414,2420],{"type":46,"value":2334},"Message objects include: ",{"type":40,"tag":49,"props":2336,"children":2338},{"className":2337},[],[2339],{"type":46,"value":482},{"type":46,"value":68},{"type":40,"tag":49,"props":2342,"children":2344},{"className":2343},[],[2345],{"type":46,"value":2346},"author",{"type":46,"value":68},{"type":40,"tag":49,"props":2349,"children":2351},{"className":2350},[],[2352],{"type":46,"value":2353},"author_id",{"type":46,"value":68},{"type":40,"tag":49,"props":2356,"children":2358},{"className":2357},[],[2359],{"type":46,"value":2360},"content",{"type":46,"value":68},{"type":40,"tag":49,"props":2363,"children":2365},{"className":2364},[],[2366],{"type":46,"value":2367},"timestamp",{"type":46,"value":2369},", plus optional ",{"type":40,"tag":49,"props":2371,"children":2373},{"className":2372},[],[2374],{"type":46,"value":2375},"thread_id",{"type":46,"value":68},{"type":40,"tag":49,"props":2378,"children":2380},{"className":2379},[],[2381],{"type":46,"value":2382},"attachments",{"type":46,"value":2384}," (with ",{"type":40,"tag":49,"props":2386,"children":2388},{"className":2387},[],[2389],{"type":46,"value":2390},"filename",{"type":46,"value":2392}," and ",{"type":40,"tag":49,"props":2394,"children":2396},{"className":2395},[],[2397],{"type":46,"value":2398},"url",{"type":46,"value":2400},"), and ",{"type":40,"tag":49,"props":2402,"children":2404},{"className":2403},[],[2405],{"type":46,"value":1504},{"type":46,"value":2384},{"type":40,"tag":49,"props":2408,"children":2410},{"className":2409},[],[2411],{"type":46,"value":2412},"emoji",{"type":46,"value":2392},{"type":40,"tag":49,"props":2415,"children":2417},{"className":2416},[],[2418],{"type":46,"value":2419},"count",{"type":46,"value":2421},"). Null and empty fields are pruned.",{"type":40,"tag":96,"props":2423,"children":2425},{"id":2424},"troubleshooting",[2426],{"type":46,"value":2427},"Troubleshooting",{"type":40,"tag":103,"props":2429,"children":2431},{"id":2430},"message-content-is-empty",[2432],{"type":46,"value":2433},"Message content is empty",{"type":40,"tag":56,"props":2435,"children":2436},{},[2437,2441],{"type":40,"tag":131,"props":2438,"children":2439},{},[2440],{"type":46,"value":176},{"type":46,"value":2442}," is not enabled. Go to Developer Portal → Bot → Privileged Gateway Intents → toggle on Message Content Intent.",{"type":40,"tag":103,"props":2444,"children":2446},{"id":2445},"user-list-returns-empty-or-partial-results",[2447,2452],{"type":40,"tag":49,"props":2448,"children":2450},{"className":2449},[],[2451],{"type":46,"value":196},{"type":46,"value":2453}," returns empty or partial results",{"type":40,"tag":56,"props":2455,"children":2456},{},[2457,2461],{"type":40,"tag":131,"props":2458,"children":2459},{},[2460],{"type":46,"value":188},{"type":46,"value":2462}," is not enabled. Toggle it on in the same intents section.",{"type":40,"tag":103,"props":2464,"children":2466},{"id":2465},"_403-missing-access-errors",[2467],{"type":46,"value":2468},"403 \u002F missing access errors",{"type":40,"tag":56,"props":2470,"children":2471},{},[2472],{"type":46,"value":2473},"The bot doesn't have permission for that channel. Check bot role permissions in Discord server settings, or re-authorize with the correct permissions.",{"type":40,"tag":103,"props":2475,"children":2477},{"id":2476},"token-errors",[2478],{"type":46,"value":2479},"Token errors",{"type":40,"tag":56,"props":2481,"children":2482},{},[2483,2485,2491],{"type":46,"value":2484},"If the bot token was rotated, update ",{"type":40,"tag":49,"props":2486,"children":2488},{"className":2487},[],[2489],{"type":46,"value":2490},"DISCORD_BOT_TOKEN",{"type":46,"value":2492}," with the new value.",{"type":40,"tag":96,"props":2494,"children":2496},{"id":2495},"notes",[2497],{"type":46,"value":2498},"Notes",{"type":40,"tag":2500,"props":2501,"children":2502},"ul",{},[2503,2531,2536,2541],{"type":40,"tag":114,"props":2504,"children":2505},{},[2506,2508,2513,2515,2521,2523,2529],{"type":46,"value":2507},"Discord uses ",{"type":40,"tag":131,"props":2509,"children":2510},{},[2511],{"type":46,"value":2512},"Snowflake IDs",{"type":46,"value":2514}," (large numbers like ",{"type":40,"tag":49,"props":2516,"children":2518},{"className":2517},[],[2519],{"type":46,"value":2520},"1161736244074659893",{"type":46,"value":2522},") for all identifiers. You cannot use channel names directly — use ",{"type":40,"tag":49,"props":2524,"children":2526},{"className":2525},[],[2527],{"type":46,"value":2528},"channel list \u003Cserver-id>",{"type":46,"value":2530}," to find IDs first.",{"type":40,"tag":114,"props":2532,"children":2533},{},[2534],{"type":46,"value":2535},"The bot can only access servers it has been invited to and channels it has permissions for.",{"type":40,"tag":114,"props":2537,"children":2538},{},[2539],{"type":46,"value":2540},"Bot token auth uses the official Discord API — no user token extraction, no ToS risk.",{"type":40,"tag":114,"props":2542,"children":2543},{},[2544],{"type":46,"value":2545},"Messages are returned in chronological order (oldest first).",{"type":40,"tag":2547,"props":2548,"children":2549},"style",{},[2550],{"type":46,"value":2551},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":2553,"total":2661},[2554,2568,2581,2600,2615,2636,2642],{"slug":2555,"name":2555,"fn":2556,"description":2557,"org":2558,"tags":2559,"stars":23,"repoUrl":24,"updatedAt":2567},"1password","manage secrets with 1Password CLI","Set up and use 1Password CLI (op). Use when installing the CLI, enabling desktop app integration, signing in (single or multi-account), or reading\u002Finjecting\u002Frunning secrets via op.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2560,2563,2564],{"name":2561,"slug":2562,"type":16},"Authentication","authentication",{"name":18,"slug":19,"type":16},{"name":2565,"slug":2566,"type":16},"Security","security","2026-07-13T06:24:39.504387",{"slug":2569,"name":2569,"fn":2570,"description":2571,"org":2572,"tags":2573,"stars":23,"repoUrl":24,"updatedAt":2580},"agent-slack","automate Slack messaging and workflows","Slack automation CLI — read\u002Fsend\u002Fsearch messages, browse threads and channels, manage channels, download attachments, look up users, and run workflows.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2574,2575,2576,2577],{"name":14,"slug":15,"type":16},{"name":18,"slug":19,"type":16},{"name":21,"slug":22,"type":16},{"name":2578,"slug":2579,"type":16},"Slack","slack","2026-07-13T06:23:51.908511",{"slug":2582,"name":2582,"fn":2583,"description":2584,"org":2585,"tags":2586,"stars":23,"repoUrl":24,"updatedAt":2599},"ai-news","fetch and summarize AI news","Fetch and summarize recent AI news from curated RSS feeds (Hugging Face, VentureBeat, The Verge, OpenAI, Anthropic, DeepMind, etc.) and YouTube channels (Yannic Kilcher, Two Minute Papers, AI Explained, etc.). Also fetches full transcripts for specific YouTube videos. Use when the user asks about recent AI news, what's happened in AI lately, summaries of AI research or product announcements, or wants a digest of what's going on in the AI space.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2587,2590,2593,2596],{"name":2588,"slug":2589,"type":16},"Communications","communications",{"name":2591,"slug":2592,"type":16},"LLM","llm",{"name":2594,"slug":2595,"type":16},"Research","research",{"name":2597,"slug":2598,"type":16},"Summarization","summarization","2026-07-13T06:24:20.520223",{"slug":2601,"name":2601,"fn":2602,"description":2603,"org":2604,"tags":2605,"stars":23,"repoUrl":24,"updatedAt":2614},"creating-letta-code-channels","build and debug Letta Code channels","Builds and debugs Letta Code channels, including first-party channel adapters and dynamic user channel plugins under ~\u002F.letta\u002Fchannels. Use when adding Telegram, WhatsApp, Bluesky, Slack, Discord, or custom channel support; testing channel routing, pairing, MessageChannel, runtime dependencies, or channel plugin manifests.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2606,2609,2612,2613],{"name":2607,"slug":2608,"type":16},"Agents","agents",{"name":2610,"slug":2611,"type":16},"API Development","api-development",{"name":21,"slug":22,"type":16},{"name":2578,"slug":2579,"type":16},"2026-07-13T06:25:55.843495",{"slug":2616,"name":2616,"fn":2617,"description":2618,"org":2619,"tags":2620,"stars":23,"repoUrl":24,"updatedAt":2635},"datadog","query Datadog observability data","Query Datadog observability data (logs, metrics, monitors, dashboards, hosts) via direct API. Use when investigating production issues, checking monitors, searching logs, or accessing Datadog data.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2621,2623,2626,2629,2632],{"name":2622,"slug":2616,"type":16},"Datadog",{"name":2624,"slug":2625,"type":16},"Logs","logs",{"name":2627,"slug":2628,"type":16},"Metrics","metrics",{"name":2630,"slug":2631,"type":16},"Monitoring","monitoring",{"name":2633,"slug":2634,"type":16},"Observability","observability","2026-07-13T06:24:27.990605",{"slug":4,"name":4,"fn":5,"description":6,"org":2637,"tags":2638,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2639,2640,2641],{"name":14,"slug":15,"type":16},{"name":18,"slug":19,"type":16},{"name":21,"slug":22,"type":16},{"slug":2643,"name":2643,"fn":2644,"description":2645,"org":2646,"tags":2647,"stars":23,"repoUrl":24,"updatedAt":2660},"doc","create and edit Word documents","Use when the task involves reading, creating, or editing `.docx` documents, especially when formatting or layout fidelity matters; prefer `python-docx` plus the bundled `scripts\u002Frender_docx.py` for visual checks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2648,2651,2654,2657],{"name":2649,"slug":2650,"type":16},"Documents","documents",{"name":2652,"slug":2653,"type":16},"DOCX","docx",{"name":2655,"slug":2656,"type":16},"Office","office",{"name":2658,"slug":2659,"type":16},"Word","word","2026-07-13T06:23:44.299568",45,{"items":2663,"total":2818},[2664,2678,2693,2705,2717,2731,2741,2752,2764,2780,2791,2803],{"slug":2665,"name":2665,"fn":2666,"description":2667,"org":2668,"tags":2669,"stars":2675,"repoUrl":2676,"updatedAt":2677},"acquiring-skills","discover and install agent skills","Discover and install skills from Hermes, ClawHub, GitHub, and other registries. Load this skill whenever a user asks for a capability you don't already have — image generation, social media, email, calendar, finance, DevOps, search, browser automation, etc.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2670,2671,2672],{"name":2607,"slug":2608,"type":16},{"name":14,"slug":15,"type":16},{"name":2673,"slug":2674,"type":16},"GitHub","github",2831,"https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fletta-code","2026-07-13T06:22:58.45767",{"slug":2679,"name":2680,"fn":2681,"description":2682,"org":2683,"tags":2684,"stars":2675,"repoUrl":2676,"updatedAt":2692},"context-doctor","Context Doctor","repair system prompt and memory degradation","Identify and repair degradation in system prompt, external memory, and skills preventing you from following instructions or remembering information as well as you should.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2685,2686,2689],{"name":2607,"slug":2608,"type":16},{"name":2687,"slug":2688,"type":16},"AI Context","ai-context",{"name":2690,"slug":2691,"type":16},"Debugging","debugging","2026-07-13T06:22:50.151002",{"slug":2694,"name":2694,"fn":2695,"description":2696,"org":2697,"tags":2698,"stars":2675,"repoUrl":2676,"updatedAt":2704},"converting-mcps-to-skills","connect MCP servers to create skills","Connect to MCP (Model Context Protocol) servers and create skills for repeated use. Load when a user wants to use an MCP server, connect to external tools via MCP, or when they mention MCP, model context protocol, or specific MCP servers.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2699,2700,2701],{"name":2607,"slug":2608,"type":16},{"name":14,"slug":15,"type":16},{"name":2702,"slug":2703,"type":16},"MCP","mcp","2026-07-13T06:23:37.646079",{"slug":2706,"name":2706,"fn":2707,"description":2708,"org":2709,"tags":2710,"stars":2675,"repoUrl":2676,"updatedAt":2716},"creating-mods","create and edit Letta Code mods","Creates and edits trusted local Letta Code mods, including tools, slash commands, local-only model providers, lifecycle\u002Fturn events, scoped conversation helpers, panels, and capability-gated behavior. Use when asked to make a mod, add an agent-callable tool, add a slash command, add a local provider\u002Fmodel adapter, transform turns, react to app events, or add lightweight mod UI outside the dedicated \u002Fstatusline flow.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2711,2712,2713],{"name":2607,"slug":2608,"type":16},{"name":14,"slug":15,"type":16},{"name":2714,"slug":2715,"type":16},"Coding","coding","2026-07-23T05:42:38.133565",{"slug":2718,"name":2718,"fn":2719,"description":2720,"org":2721,"tags":2722,"stars":2675,"repoUrl":2676,"updatedAt":2730},"creating-skills","create and update agent skills","Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Letta Code's capabilities with specialized knowledge, workflows, or tool integrations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2723,2724,2727],{"name":2607,"slug":2608,"type":16},{"name":2725,"slug":2726,"type":16},"Documentation","documentation",{"name":2728,"slug":2729,"type":16},"Plugin Development","plugin-development","2026-07-13T06:22:56.998659",{"slug":2732,"name":2732,"fn":2733,"description":2734,"org":2735,"tags":2736,"stars":2675,"repoUrl":2676,"updatedAt":2740},"customizing-commands","create and manage Letta slash commands","Creates, edits, and enables Letta Code mod-provided slash commands. Use when the user asks to add a custom \u002Fcommand, slash command, command shortcut, scoped conversation-backed command, or command-driven panel behavior.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2737,2738,2739],{"name":2607,"slug":2608,"type":16},{"name":14,"slug":15,"type":16},{"name":18,"slug":19,"type":16},"2026-07-13T06:23:18.266798",{"slug":2742,"name":2742,"fn":2743,"description":2744,"org":2745,"tags":2746,"stars":2675,"repoUrl":2676,"updatedAt":2751},"customizing-statusline","customize Letta Code statusline mods","Creates, edits, and migrates Letta Code statusline mods. Use when handling the \u002Fstatusline command or continuing work started by \u002Fstatusline.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2747,2748],{"name":18,"slug":19,"type":16},{"name":2749,"slug":2750,"type":16},"Engineering","engineering","2026-07-13T06:23:27.465985",{"slug":2753,"name":2753,"fn":2754,"description":2755,"org":2756,"tags":2757,"stars":2675,"repoUrl":2676,"updatedAt":2763},"dispatching-coding-agents","dispatch stateless coding agents","Dispatch stateless coding agents (Claude Code or Codex) via Bash. Use when you're stuck, need a second opinion, or need parallel research on a hard problem. They have no memory — you must provide all context.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2758,2759,2760],{"name":2607,"slug":2608,"type":16},{"name":2714,"slug":2715,"type":16},{"name":2761,"slug":2762,"type":16},"Multi-Agent","multi-agent","2026-07-26T05:46:56.388845",{"slug":2765,"name":2765,"fn":2766,"description":2767,"org":2768,"tags":2769,"stars":2675,"repoUrl":2676,"updatedAt":2779},"editing-letta-code-desktop-preferences","edit Letta Code Desktop preferences","Edits Letta Code Desktop (LCD) preferences by safely reading and updating ~\u002F.letta\u002Fdesktop_preferences.json. Use only when the user asks to change current Desktop\u002FLCD settings such as theme, default working directory, remote access preference, or remote environment name via the preferences JSON.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2770,2773,2776],{"name":2771,"slug":2772,"type":16},"Configuration","configuration",{"name":2774,"slug":2775,"type":16},"Desktop","desktop",{"name":2777,"slug":2778,"type":16},"Themes","themes","2026-07-13T06:23:41.407811",{"slug":2781,"name":2781,"fn":2782,"description":2783,"org":2784,"tags":2785,"stars":2675,"repoUrl":2676,"updatedAt":2790},"finding-agents","locate and manage agents on server","Find other agents on the same server. Use when the user asks about other agents, wants to migrate memory from another agent, or needs to find an agent by name or tags.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2786,2787],{"name":2607,"slug":2608,"type":16},{"name":2788,"slug":2789,"type":16},"Management","management","2026-07-16T06:02:17.297841",{"slug":2792,"name":2792,"fn":2793,"description":2794,"org":2795,"tags":2796,"stars":2675,"repoUrl":2676,"updatedAt":2802},"generating-mod-envs","generate Letta mod learning environments","Generates and reviews mod learning env JSON files for Letta Code local mods. Use when asked to teach, learn, or optimize a mod behavior; create, draft, validate, improve, or explain envs for `\u002Fmods learn --env`; or design evaluation scenarios, memory fixtures, requiredResultMarkers, requiredTraceMarkers, negative controls, and candidate diversity hints.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2797,2798,2801],{"name":2607,"slug":2608,"type":16},{"name":2799,"slug":2800,"type":16},"AI Infrastructure","ai-infrastructure",{"name":2771,"slug":2772,"type":16},"2026-07-13T06:23:08.838181",{"slug":2804,"name":2804,"fn":2805,"description":2806,"org":2807,"tags":2808,"stars":2675,"repoUrl":2676,"updatedAt":2817},"image-generation","generate images from text prompts","Generate images from text prompts (and optionally edit\u002Fremix input images). Use when the user asks to create, generate, draw, render, or edit an image, illustration, logo, icon, diagram, or photo.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2809,2812,2815],{"name":2810,"slug":2811,"type":16},"Creative","creative",{"name":2813,"slug":2814,"type":16},"Graphics","graphics",{"name":2816,"slug":2804,"type":16},"Image Generation","2026-07-13T06:23:06.189403",69]