[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-letta-agent-slack":3,"mdc-axlwym-key":37,"related-org-letta-agent-slack":2947,"related-repo-letta-agent-slack":3106},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":32,"sourceUrl":35,"mdContent":36},"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},"letta","Letta","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fletta.png","letta-ai",[13,17,20,23],{"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",{"name":24,"slug":25,"type":16},"Slack","slack",127,"https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fskills","2026-07-13T06:23:51.908511",null,20,[],{"repoUrl":27,"stars":26,"forks":30,"topics":33,"description":34},[],"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\u002Fslack","---\nname: agent-slack\ndescription: Slack automation CLI — read\u002Fsend\u002Fsearch messages, browse threads and channels, manage channels, download attachments, look up users, and run workflows.\n---\n\n# Slack automation with `agent-slack`\n\n`agent-slack` is a CLI binary on `$PATH`. Invoke directly (e.g. `agent-slack user list`).\n\n## Setup\n\n### 1. Install the CLI\n\nIf `agent-slack` is not found on `$PATH`, install it:\n\n```bash\ncurl -fsSL https:\u002F\u002Fraw.githubusercontent.com\u002Fstablyai\u002Fagent-slack\u002Fmain\u002Finstall.sh | sh\n```\n\nAlternatives: `npm i -g agent-slack` (requires Node >= 22.5) or `nix run github:stablyai\u002Fagent-slack`.\n\n### 2. Authenticate with Slack\n\nIf you have **Slack Desktop** installed and signed in, authentication is automatic — no setup needed. Run this to verify:\n\n```bash\nagent-slack auth test\n```\n\nIf that fails (or you don't have Slack Desktop), try importing credentials from your browser:\n\n```bash\n# Try Chrome first, then Firefox\nagent-slack auth import-chrome\nagent-slack auth test\n```\n\n```bash\nagent-slack auth import-firefox\nagent-slack auth test\n```\n\nIf neither works, you can set tokens manually via environment variables:\n\n```bash\nexport SLACK_TOKEN=\"xoxc-...\"      # browser token\nexport SLACK_COOKIE_D=\"xoxd-...\"   # browser cookie\nagent-slack auth test\n```\n\n### 3. Verify\n\nCheck which workspaces are configured:\n\n```bash\nagent-slack auth whoami\n```\n\nIf you have multiple workspaces, pass `--workspace \"myteam\"` to commands to disambiguate.\n\n## Canonical workflow (given a Slack message URL)\n\n1. Fetch a single message (plus thread summary, if any):\n\n```bash\nagent-slack message get \"https:\u002F\u002Fworkspace.slack.com\u002Farchives\u002FC123\u002Fp1700000000000000\"\n```\n\n2. If you need the full thread:\n\n```bash\nagent-slack message list \"https:\u002F\u002Fworkspace.slack.com\u002Farchives\u002FC123\u002Fp1700000000000000\"\n```\n\n## Browse recent channel messages\n\nTo see what's been posted recently in a channel (channel history):\n\n```bash\nagent-slack message list \"general\" --limit 20\nagent-slack message list \"C0123ABC\" --limit 10\nagent-slack message list \"general\" --with-reaction eyes --oldest \"1770165109.000000\" --limit 20\nagent-slack message list \"general\" --without-reaction dart --oldest \"1770165109.000000\" --limit 20\n```\n\nThis returns the most recent messages in chronological order. Use `--limit` to control how many (default 25).\nWhen using `--with-reaction` or `--without-reaction`, you must also pass `--oldest` to bound scanning.\n\n## Attachments (snippets\u002Fimages\u002Ffiles)\n\n`message get\u002Flist` and `search` auto-download attachments to `~\u002F.agent-slack\u002Ftmp\u002Fdownloads\u002F` and return metadata in `message.files[]` (including `name` and `path`). Failed downloads include a `message.files[].error` field.\n\n## Draft a message (browser editor)\n\nOpens a Slack-like rich-text editor in the browser for composing messages with formatting toolbar (bold, italic, strikethrough, links, lists, quotes, code, code blocks). After sending, shows a \"View in Slack\" link.\n\n```bash\nagent-slack message draft \"general\"\nagent-slack message draft \"general\" \"initial text\"\nagent-slack message draft \"https:\u002F\u002Fworkspace.slack.com\u002Farchives\u002FC123\u002Fp1700000000000000\"\n```\n\n## Send, edit, delete, or react\n\n```bash\nagent-slack message send \"https:\u002F\u002Fworkspace.slack.com\u002Farchives\u002FC123\u002Fp1700000000000000\" \"I can take this.\"\nagent-slack message send \"alerts-staging\" \"here's the report\" --attach .\u002Freport.md\nagent-slack message edit \"https:\u002F\u002Fworkspace.slack.com\u002Farchives\u002FC123\u002Fp1700000000000000\" \"I can take this today.\"\nagent-slack message delete \"https:\u002F\u002Fworkspace.slack.com\u002Farchives\u002FC123\u002Fp1700000000000000\"\n\nagent-slack message send \"general\" \"Here's the plan:\n- Step 1: do the thing\n- Step 2: verify it worked\n  - Sub-step: check logs\"\nagent-slack message react add \"https:\u002F\u002Fworkspace.slack.com\u002Farchives\u002FC123\u002Fp1700000000000000\" \"eyes\"\nagent-slack message react remove \"https:\u002F\u002Fworkspace.slack.com\u002Farchives\u002FC123\u002Fp1700000000000000\" \"eyes\"\n```\n\nChannel mode for edit\u002Fdelete requires `--ts`:\n\n```bash\nagent-slack message edit \"general\" \"Updated text\" --workspace \"myteam\" --ts \"1770165109.628379\"\nagent-slack message delete \"general\" --workspace \"myteam\" --ts \"1770165109.628379\"\n```\n\nAttach options for `message send`:\n\n- `--attach \u003Cpath>` upload a local file (repeatable)\n\n## List channels + create\u002Finvite users\n\n```bash\nagent-slack channel list\nagent-slack channel list --user \"@alice\" --limit 50\nagent-slack channel list --all --limit 100\nagent-slack channel new --name \"incident-war-room\"\nagent-slack channel new --name \"incident-leads\" --private\nagent-slack channel invite --channel \"incident-war-room\" --users \"U01AAAA,@alice,bob@example.com\"\nagent-slack channel invite --channel \"incident-war-room\" --users \"partner@vendor.com\" --external\nagent-slack channel invite --channel \"incident-war-room\" --users \"partner@vendor.com\" --external --allow-external-user-invites\n```\n\nFor `--external`, invite targets must be emails. By default, invitees are external-limited; add\n`--allow-external-user-invites` to allow them to invite other users.\n\n## Search (messages + files)\n\nPrefer channel-scoped search for reliability:\n\n```bash\nagent-slack search all \"smoke tests failed\" --channel \"alerts\" --after 2026-01-01 --before 2026-02-01\nagent-slack search messages \"stably test\" --user \"@alice\" --channel general\nagent-slack search files \"testing\" --content-type snippet --limit 10\n```\n\n## Multi-workspace guardrail (important)\n\nIf you have multiple workspaces configured and you use a channel **name** (e.g. `general`), pass `--workspace` (or set `SLACK_WORKSPACE_URL`) to avoid ambiguity:\n\n```bash\nagent-slack message get \"general\" --workspace \"https:\u002F\u002Fmyteam.slack.com\" --ts \"1770165109.628379\"\nagent-slack message get \"general\" --workspace \"myteam\" --ts \"1770165109.628379\"\n```\n\n## DM \u002F group DM channels\n\nGet the channel ID for a DM or group DM, useful for sending messages to a group of users:\n\n```bash\nagent-slack user dm-open @alice @bob\nagent-slack user dm-open U01AAAA U02BBBB U03CCCC\n```\n\n## Mark as read\n\nMark a channel, DM, or group DM as read up to a given message:\n\n```bash\nagent-slack channel mark \"https:\u002F\u002Fworkspace.slack.com\u002Farchives\u002FC123\u002Fp1700000000000000\"\nagent-slack channel mark \"general\" --workspace \"myteam\" --ts \"1770165109.628379\"\nagent-slack channel mark \"D0A04PB2QBW\" --workspace \"myteam\" --ts \"1770165109.628379\"\n```\n\nTo make a specific message appear unread, set `--ts` to just before it (subtract `0.000001`). This moves the read cursor so that message and everything after it appear as new:\n\n```bash\nagent-slack channel mark \"general\" --workspace \"myteam\" --ts \"1770165109.628378\"\n```\n\n## Workflows\n\nDiscover and run Slack workflows bookmarked in channels:\n\n```bash\n# List workflows in a channel\nagent-slack workflow list \"#ops\"\n\n# Preview trigger metadata (no side effects)\nagent-slack workflow preview \"Ft123ABC\"\n\n# Get workflow definition including form fields and steps\nagent-slack workflow get \"Ft123ABC\"\nagent-slack workflow get \"Wf456DEF\"\n\n# Trip a workflow trigger\nagent-slack workflow run \"Ft123ABC\" --channel \"#ops\"\n```\n\n## Canvas + Users\n\n```bash\nagent-slack canvas get \"https:\u002F\u002Fworkspace.slack.com\u002Fdocs\u002FT123\u002FF456\"\nagent-slack user list --workspace \"https:\u002F\u002Fworkspace.slack.com\" --limit 100\nagent-slack user get \"@alice\" --workspace \"https:\u002F\u002Fworkspace.slack.com\"\n```\n\n## References\n\n- references\u002Fcommands.md: full command map + all flags\n- references\u002Ftargets.md: URL vs `#channel` targeting rules\n- references\u002Foutput.md: JSON output shapes + download paths\n",{"data":38,"body":39},{"name":4,"description":6},{"type":40,"children":41},"root",[42,57,84,91,98,117,162,183,189,202,226,231,280,318,323,418,424,429,452,465,471,481,520,528,563,569,574,782,819,825,883,889,894,996,1002,1340,1353,1495,1507,1522,1528,1855,1876,1882,1887,2062,2068,2102,2228,2234,2239,2303,2309,2314,2468,2488,2555,2561,2566,2784,2790,2909,2915,2941],{"type":43,"tag":44,"props":45,"children":47},"element","h1",{"id":46},"slack-automation-with-agent-slack",[48,51],{"type":49,"value":50},"text","Slack automation with ",{"type":43,"tag":52,"props":53,"children":55},"code",{"className":54},[],[56],{"type":49,"value":4},{"type":43,"tag":58,"props":59,"children":60},"p",{},[61,66,68,74,76,82],{"type":43,"tag":52,"props":62,"children":64},{"className":63},[],[65],{"type":49,"value":4},{"type":49,"value":67}," is a CLI binary on ",{"type":43,"tag":52,"props":69,"children":71},{"className":70},[],[72],{"type":49,"value":73},"$PATH",{"type":49,"value":75},". Invoke directly (e.g. ",{"type":43,"tag":52,"props":77,"children":79},{"className":78},[],[80],{"type":49,"value":81},"agent-slack user list",{"type":49,"value":83},").",{"type":43,"tag":85,"props":86,"children":88},"h2",{"id":87},"setup",[89],{"type":49,"value":90},"Setup",{"type":43,"tag":92,"props":93,"children":95},"h3",{"id":94},"_1-install-the-cli",[96],{"type":49,"value":97},"1. Install the CLI",{"type":43,"tag":58,"props":99,"children":100},{},[101,103,108,110,115],{"type":49,"value":102},"If ",{"type":43,"tag":52,"props":104,"children":106},{"className":105},[],[107],{"type":49,"value":4},{"type":49,"value":109}," is not found on ",{"type":43,"tag":52,"props":111,"children":113},{"className":112},[],[114],{"type":49,"value":73},{"type":49,"value":116},", install it:",{"type":43,"tag":118,"props":119,"children":124},"pre",{"className":120,"code":121,"language":122,"meta":123,"style":123},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","curl -fsSL https:\u002F\u002Fraw.githubusercontent.com\u002Fstablyai\u002Fagent-slack\u002Fmain\u002Finstall.sh | sh\n","bash","",[125],{"type":43,"tag":52,"props":126,"children":127},{"__ignoreMap":123},[128],{"type":43,"tag":129,"props":130,"children":133},"span",{"class":131,"line":132},"line",1,[134,140,146,151,157],{"type":43,"tag":129,"props":135,"children":137},{"style":136},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[138],{"type":49,"value":139},"curl",{"type":43,"tag":129,"props":141,"children":143},{"style":142},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[144],{"type":49,"value":145}," -fsSL",{"type":43,"tag":129,"props":147,"children":148},{"style":142},[149],{"type":49,"value":150}," https:\u002F\u002Fraw.githubusercontent.com\u002Fstablyai\u002Fagent-slack\u002Fmain\u002Finstall.sh",{"type":43,"tag":129,"props":152,"children":154},{"style":153},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[155],{"type":49,"value":156}," |",{"type":43,"tag":129,"props":158,"children":159},{"style":136},[160],{"type":49,"value":161}," sh\n",{"type":43,"tag":58,"props":163,"children":164},{},[165,167,173,175,181],{"type":49,"value":166},"Alternatives: ",{"type":43,"tag":52,"props":168,"children":170},{"className":169},[],[171],{"type":49,"value":172},"npm i -g agent-slack",{"type":49,"value":174}," (requires Node >= 22.5) or ",{"type":43,"tag":52,"props":176,"children":178},{"className":177},[],[179],{"type":49,"value":180},"nix run github:stablyai\u002Fagent-slack",{"type":49,"value":182},".",{"type":43,"tag":92,"props":184,"children":186},{"id":185},"_2-authenticate-with-slack",[187],{"type":49,"value":188},"2. Authenticate with Slack",{"type":43,"tag":58,"props":190,"children":191},{},[192,194,200],{"type":49,"value":193},"If you have ",{"type":43,"tag":195,"props":196,"children":197},"strong",{},[198],{"type":49,"value":199},"Slack Desktop",{"type":49,"value":201}," installed and signed in, authentication is automatic — no setup needed. Run this to verify:",{"type":43,"tag":118,"props":203,"children":205},{"className":120,"code":204,"language":122,"meta":123,"style":123},"agent-slack auth test\n",[206],{"type":43,"tag":52,"props":207,"children":208},{"__ignoreMap":123},[209],{"type":43,"tag":129,"props":210,"children":211},{"class":131,"line":132},[212,216,221],{"type":43,"tag":129,"props":213,"children":214},{"style":136},[215],{"type":49,"value":4},{"type":43,"tag":129,"props":217,"children":218},{"style":142},[219],{"type":49,"value":220}," auth",{"type":43,"tag":129,"props":222,"children":223},{"style":142},[224],{"type":49,"value":225}," test\n",{"type":43,"tag":58,"props":227,"children":228},{},[229],{"type":49,"value":230},"If that fails (or you don't have Slack Desktop), try importing credentials from your browser:",{"type":43,"tag":118,"props":232,"children":234},{"className":120,"code":233,"language":122,"meta":123,"style":123},"# Try Chrome first, then Firefox\nagent-slack auth import-chrome\nagent-slack auth test\n",[235],{"type":43,"tag":52,"props":236,"children":237},{"__ignoreMap":123},[238,247,264],{"type":43,"tag":129,"props":239,"children":240},{"class":131,"line":132},[241],{"type":43,"tag":129,"props":242,"children":244},{"style":243},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[245],{"type":49,"value":246},"# Try Chrome first, then Firefox\n",{"type":43,"tag":129,"props":248,"children":250},{"class":131,"line":249},2,[251,255,259],{"type":43,"tag":129,"props":252,"children":253},{"style":136},[254],{"type":49,"value":4},{"type":43,"tag":129,"props":256,"children":257},{"style":142},[258],{"type":49,"value":220},{"type":43,"tag":129,"props":260,"children":261},{"style":142},[262],{"type":49,"value":263}," import-chrome\n",{"type":43,"tag":129,"props":265,"children":267},{"class":131,"line":266},3,[268,272,276],{"type":43,"tag":129,"props":269,"children":270},{"style":136},[271],{"type":49,"value":4},{"type":43,"tag":129,"props":273,"children":274},{"style":142},[275],{"type":49,"value":220},{"type":43,"tag":129,"props":277,"children":278},{"style":142},[279],{"type":49,"value":225},{"type":43,"tag":118,"props":281,"children":283},{"className":120,"code":282,"language":122,"meta":123,"style":123},"agent-slack auth import-firefox\nagent-slack auth test\n",[284],{"type":43,"tag":52,"props":285,"children":286},{"__ignoreMap":123},[287,303],{"type":43,"tag":129,"props":288,"children":289},{"class":131,"line":132},[290,294,298],{"type":43,"tag":129,"props":291,"children":292},{"style":136},[293],{"type":49,"value":4},{"type":43,"tag":129,"props":295,"children":296},{"style":142},[297],{"type":49,"value":220},{"type":43,"tag":129,"props":299,"children":300},{"style":142},[301],{"type":49,"value":302}," import-firefox\n",{"type":43,"tag":129,"props":304,"children":305},{"class":131,"line":249},[306,310,314],{"type":43,"tag":129,"props":307,"children":308},{"style":136},[309],{"type":49,"value":4},{"type":43,"tag":129,"props":311,"children":312},{"style":142},[313],{"type":49,"value":220},{"type":43,"tag":129,"props":315,"children":316},{"style":142},[317],{"type":49,"value":225},{"type":43,"tag":58,"props":319,"children":320},{},[321],{"type":49,"value":322},"If neither works, you can set tokens manually via environment variables:",{"type":43,"tag":118,"props":324,"children":326},{"className":120,"code":325,"language":122,"meta":123,"style":123},"export SLACK_TOKEN=\"xoxc-...\"      # browser token\nexport SLACK_COOKIE_D=\"xoxd-...\"   # browser cookie\nagent-slack auth test\n",[327],{"type":43,"tag":52,"props":328,"children":329},{"__ignoreMap":123},[330,369,403],{"type":43,"tag":129,"props":331,"children":332},{"class":131,"line":132},[333,339,345,350,355,360,364],{"type":43,"tag":129,"props":334,"children":336},{"style":335},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[337],{"type":49,"value":338},"export",{"type":43,"tag":129,"props":340,"children":342},{"style":341},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[343],{"type":49,"value":344}," SLACK_TOKEN",{"type":43,"tag":129,"props":346,"children":347},{"style":153},[348],{"type":49,"value":349},"=",{"type":43,"tag":129,"props":351,"children":352},{"style":153},[353],{"type":49,"value":354},"\"",{"type":43,"tag":129,"props":356,"children":357},{"style":142},[358],{"type":49,"value":359},"xoxc-...",{"type":43,"tag":129,"props":361,"children":362},{"style":153},[363],{"type":49,"value":354},{"type":43,"tag":129,"props":365,"children":366},{"style":243},[367],{"type":49,"value":368},"      # browser token\n",{"type":43,"tag":129,"props":370,"children":371},{"class":131,"line":249},[372,376,381,385,389,394,398],{"type":43,"tag":129,"props":373,"children":374},{"style":335},[375],{"type":49,"value":338},{"type":43,"tag":129,"props":377,"children":378},{"style":341},[379],{"type":49,"value":380}," SLACK_COOKIE_D",{"type":43,"tag":129,"props":382,"children":383},{"style":153},[384],{"type":49,"value":349},{"type":43,"tag":129,"props":386,"children":387},{"style":153},[388],{"type":49,"value":354},{"type":43,"tag":129,"props":390,"children":391},{"style":142},[392],{"type":49,"value":393},"xoxd-...",{"type":43,"tag":129,"props":395,"children":396},{"style":153},[397],{"type":49,"value":354},{"type":43,"tag":129,"props":399,"children":400},{"style":243},[401],{"type":49,"value":402},"   # browser cookie\n",{"type":43,"tag":129,"props":404,"children":405},{"class":131,"line":266},[406,410,414],{"type":43,"tag":129,"props":407,"children":408},{"style":136},[409],{"type":49,"value":4},{"type":43,"tag":129,"props":411,"children":412},{"style":142},[413],{"type":49,"value":220},{"type":43,"tag":129,"props":415,"children":416},{"style":142},[417],{"type":49,"value":225},{"type":43,"tag":92,"props":419,"children":421},{"id":420},"_3-verify",[422],{"type":49,"value":423},"3. Verify",{"type":43,"tag":58,"props":425,"children":426},{},[427],{"type":49,"value":428},"Check which workspaces are configured:",{"type":43,"tag":118,"props":430,"children":432},{"className":120,"code":431,"language":122,"meta":123,"style":123},"agent-slack auth whoami\n",[433],{"type":43,"tag":52,"props":434,"children":435},{"__ignoreMap":123},[436],{"type":43,"tag":129,"props":437,"children":438},{"class":131,"line":132},[439,443,447],{"type":43,"tag":129,"props":440,"children":441},{"style":136},[442],{"type":49,"value":4},{"type":43,"tag":129,"props":444,"children":445},{"style":142},[446],{"type":49,"value":220},{"type":43,"tag":129,"props":448,"children":449},{"style":142},[450],{"type":49,"value":451}," whoami\n",{"type":43,"tag":58,"props":453,"children":454},{},[455,457,463],{"type":49,"value":456},"If you have multiple workspaces, pass ",{"type":43,"tag":52,"props":458,"children":460},{"className":459},[],[461],{"type":49,"value":462},"--workspace \"myteam\"",{"type":49,"value":464}," to commands to disambiguate.",{"type":43,"tag":85,"props":466,"children":468},{"id":467},"canonical-workflow-given-a-slack-message-url",[469],{"type":49,"value":470},"Canonical workflow (given a Slack message URL)",{"type":43,"tag":472,"props":473,"children":474},"ol",{},[475],{"type":43,"tag":476,"props":477,"children":478},"li",{},[479],{"type":49,"value":480},"Fetch a single message (plus thread summary, if any):",{"type":43,"tag":118,"props":482,"children":484},{"className":120,"code":483,"language":122,"meta":123,"style":123},"agent-slack message get \"https:\u002F\u002Fworkspace.slack.com\u002Farchives\u002FC123\u002Fp1700000000000000\"\n",[485],{"type":43,"tag":52,"props":486,"children":487},{"__ignoreMap":123},[488],{"type":43,"tag":129,"props":489,"children":490},{"class":131,"line":132},[491,495,500,505,510,515],{"type":43,"tag":129,"props":492,"children":493},{"style":136},[494],{"type":49,"value":4},{"type":43,"tag":129,"props":496,"children":497},{"style":142},[498],{"type":49,"value":499}," message",{"type":43,"tag":129,"props":501,"children":502},{"style":142},[503],{"type":49,"value":504}," get",{"type":43,"tag":129,"props":506,"children":507},{"style":153},[508],{"type":49,"value":509}," \"",{"type":43,"tag":129,"props":511,"children":512},{"style":142},[513],{"type":49,"value":514},"https:\u002F\u002Fworkspace.slack.com\u002Farchives\u002FC123\u002Fp1700000000000000",{"type":43,"tag":129,"props":516,"children":517},{"style":153},[518],{"type":49,"value":519},"\"\n",{"type":43,"tag":472,"props":521,"children":522},{"start":249},[523],{"type":43,"tag":476,"props":524,"children":525},{},[526],{"type":49,"value":527},"If you need the full thread:",{"type":43,"tag":118,"props":529,"children":531},{"className":120,"code":530,"language":122,"meta":123,"style":123},"agent-slack message list \"https:\u002F\u002Fworkspace.slack.com\u002Farchives\u002FC123\u002Fp1700000000000000\"\n",[532],{"type":43,"tag":52,"props":533,"children":534},{"__ignoreMap":123},[535],{"type":43,"tag":129,"props":536,"children":537},{"class":131,"line":132},[538,542,546,551,555,559],{"type":43,"tag":129,"props":539,"children":540},{"style":136},[541],{"type":49,"value":4},{"type":43,"tag":129,"props":543,"children":544},{"style":142},[545],{"type":49,"value":499},{"type":43,"tag":129,"props":547,"children":548},{"style":142},[549],{"type":49,"value":550}," list",{"type":43,"tag":129,"props":552,"children":553},{"style":153},[554],{"type":49,"value":509},{"type":43,"tag":129,"props":556,"children":557},{"style":142},[558],{"type":49,"value":514},{"type":43,"tag":129,"props":560,"children":561},{"style":153},[562],{"type":49,"value":519},{"type":43,"tag":85,"props":564,"children":566},{"id":565},"browse-recent-channel-messages",[567],{"type":49,"value":568},"Browse recent channel messages",{"type":43,"tag":58,"props":570,"children":571},{},[572],{"type":49,"value":573},"To see what's been posted recently in a channel (channel history):",{"type":43,"tag":118,"props":575,"children":577},{"className":120,"code":576,"language":122,"meta":123,"style":123},"agent-slack message list \"general\" --limit 20\nagent-slack message list \"C0123ABC\" --limit 10\nagent-slack message list \"general\" --with-reaction eyes --oldest \"1770165109.000000\" --limit 20\nagent-slack message list \"general\" --without-reaction dart --oldest \"1770165109.000000\" --limit 20\n",[578],{"type":43,"tag":52,"props":579,"children":580},{"__ignoreMap":123},[581,620,657,720],{"type":43,"tag":129,"props":582,"children":583},{"class":131,"line":132},[584,588,592,596,600,605,609,614],{"type":43,"tag":129,"props":585,"children":586},{"style":136},[587],{"type":49,"value":4},{"type":43,"tag":129,"props":589,"children":590},{"style":142},[591],{"type":49,"value":499},{"type":43,"tag":129,"props":593,"children":594},{"style":142},[595],{"type":49,"value":550},{"type":43,"tag":129,"props":597,"children":598},{"style":153},[599],{"type":49,"value":509},{"type":43,"tag":129,"props":601,"children":602},{"style":142},[603],{"type":49,"value":604},"general",{"type":43,"tag":129,"props":606,"children":607},{"style":153},[608],{"type":49,"value":354},{"type":43,"tag":129,"props":610,"children":611},{"style":142},[612],{"type":49,"value":613}," --limit",{"type":43,"tag":129,"props":615,"children":617},{"style":616},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[618],{"type":49,"value":619}," 20\n",{"type":43,"tag":129,"props":621,"children":622},{"class":131,"line":249},[623,627,631,635,639,644,648,652],{"type":43,"tag":129,"props":624,"children":625},{"style":136},[626],{"type":49,"value":4},{"type":43,"tag":129,"props":628,"children":629},{"style":142},[630],{"type":49,"value":499},{"type":43,"tag":129,"props":632,"children":633},{"style":142},[634],{"type":49,"value":550},{"type":43,"tag":129,"props":636,"children":637},{"style":153},[638],{"type":49,"value":509},{"type":43,"tag":129,"props":640,"children":641},{"style":142},[642],{"type":49,"value":643},"C0123ABC",{"type":43,"tag":129,"props":645,"children":646},{"style":153},[647],{"type":49,"value":354},{"type":43,"tag":129,"props":649,"children":650},{"style":142},[651],{"type":49,"value":613},{"type":43,"tag":129,"props":653,"children":654},{"style":616},[655],{"type":49,"value":656}," 10\n",{"type":43,"tag":129,"props":658,"children":659},{"class":131,"line":266},[660,664,668,672,676,680,684,689,694,699,703,708,712,716],{"type":43,"tag":129,"props":661,"children":662},{"style":136},[663],{"type":49,"value":4},{"type":43,"tag":129,"props":665,"children":666},{"style":142},[667],{"type":49,"value":499},{"type":43,"tag":129,"props":669,"children":670},{"style":142},[671],{"type":49,"value":550},{"type":43,"tag":129,"props":673,"children":674},{"style":153},[675],{"type":49,"value":509},{"type":43,"tag":129,"props":677,"children":678},{"style":142},[679],{"type":49,"value":604},{"type":43,"tag":129,"props":681,"children":682},{"style":153},[683],{"type":49,"value":354},{"type":43,"tag":129,"props":685,"children":686},{"style":142},[687],{"type":49,"value":688}," --with-reaction",{"type":43,"tag":129,"props":690,"children":691},{"style":142},[692],{"type":49,"value":693}," eyes",{"type":43,"tag":129,"props":695,"children":696},{"style":142},[697],{"type":49,"value":698}," --oldest",{"type":43,"tag":129,"props":700,"children":701},{"style":153},[702],{"type":49,"value":509},{"type":43,"tag":129,"props":704,"children":705},{"style":142},[706],{"type":49,"value":707},"1770165109.000000",{"type":43,"tag":129,"props":709,"children":710},{"style":153},[711],{"type":49,"value":354},{"type":43,"tag":129,"props":713,"children":714},{"style":142},[715],{"type":49,"value":613},{"type":43,"tag":129,"props":717,"children":718},{"style":616},[719],{"type":49,"value":619},{"type":43,"tag":129,"props":721,"children":723},{"class":131,"line":722},4,[724,728,732,736,740,744,748,753,758,762,766,770,774,778],{"type":43,"tag":129,"props":725,"children":726},{"style":136},[727],{"type":49,"value":4},{"type":43,"tag":129,"props":729,"children":730},{"style":142},[731],{"type":49,"value":499},{"type":43,"tag":129,"props":733,"children":734},{"style":142},[735],{"type":49,"value":550},{"type":43,"tag":129,"props":737,"children":738},{"style":153},[739],{"type":49,"value":509},{"type":43,"tag":129,"props":741,"children":742},{"style":142},[743],{"type":49,"value":604},{"type":43,"tag":129,"props":745,"children":746},{"style":153},[747],{"type":49,"value":354},{"type":43,"tag":129,"props":749,"children":750},{"style":142},[751],{"type":49,"value":752}," --without-reaction",{"type":43,"tag":129,"props":754,"children":755},{"style":142},[756],{"type":49,"value":757}," dart",{"type":43,"tag":129,"props":759,"children":760},{"style":142},[761],{"type":49,"value":698},{"type":43,"tag":129,"props":763,"children":764},{"style":153},[765],{"type":49,"value":509},{"type":43,"tag":129,"props":767,"children":768},{"style":142},[769],{"type":49,"value":707},{"type":43,"tag":129,"props":771,"children":772},{"style":153},[773],{"type":49,"value":354},{"type":43,"tag":129,"props":775,"children":776},{"style":142},[777],{"type":49,"value":613},{"type":43,"tag":129,"props":779,"children":780},{"style":616},[781],{"type":49,"value":619},{"type":43,"tag":58,"props":783,"children":784},{},[785,787,793,795,801,803,809,811,817],{"type":49,"value":786},"This returns the most recent messages in chronological order. Use ",{"type":43,"tag":52,"props":788,"children":790},{"className":789},[],[791],{"type":49,"value":792},"--limit",{"type":49,"value":794}," to control how many (default 25).\nWhen using ",{"type":43,"tag":52,"props":796,"children":798},{"className":797},[],[799],{"type":49,"value":800},"--with-reaction",{"type":49,"value":802}," or ",{"type":43,"tag":52,"props":804,"children":806},{"className":805},[],[807],{"type":49,"value":808},"--without-reaction",{"type":49,"value":810},", you must also pass ",{"type":43,"tag":52,"props":812,"children":814},{"className":813},[],[815],{"type":49,"value":816},"--oldest",{"type":49,"value":818}," to bound scanning.",{"type":43,"tag":85,"props":820,"children":822},{"id":821},"attachments-snippetsimagesfiles",[823],{"type":49,"value":824},"Attachments (snippets\u002Fimages\u002Ffiles)",{"type":43,"tag":58,"props":826,"children":827},{},[828,834,836,842,844,850,852,858,860,866,867,873,875,881],{"type":43,"tag":52,"props":829,"children":831},{"className":830},[],[832],{"type":49,"value":833},"message get\u002Flist",{"type":49,"value":835}," and ",{"type":43,"tag":52,"props":837,"children":839},{"className":838},[],[840],{"type":49,"value":841},"search",{"type":49,"value":843}," auto-download attachments to ",{"type":43,"tag":52,"props":845,"children":847},{"className":846},[],[848],{"type":49,"value":849},"~\u002F.agent-slack\u002Ftmp\u002Fdownloads\u002F",{"type":49,"value":851}," and return metadata in ",{"type":43,"tag":52,"props":853,"children":855},{"className":854},[],[856],{"type":49,"value":857},"message.files[]",{"type":49,"value":859}," (including ",{"type":43,"tag":52,"props":861,"children":863},{"className":862},[],[864],{"type":49,"value":865},"name",{"type":49,"value":835},{"type":43,"tag":52,"props":868,"children":870},{"className":869},[],[871],{"type":49,"value":872},"path",{"type":49,"value":874},"). Failed downloads include a ",{"type":43,"tag":52,"props":876,"children":878},{"className":877},[],[879],{"type":49,"value":880},"message.files[].error",{"type":49,"value":882}," field.",{"type":43,"tag":85,"props":884,"children":886},{"id":885},"draft-a-message-browser-editor",[887],{"type":49,"value":888},"Draft a message (browser editor)",{"type":43,"tag":58,"props":890,"children":891},{},[892],{"type":49,"value":893},"Opens a Slack-like rich-text editor in the browser for composing messages with formatting toolbar (bold, italic, strikethrough, links, lists, quotes, code, code blocks). After sending, shows a \"View in Slack\" link.",{"type":43,"tag":118,"props":895,"children":897},{"className":120,"code":896,"language":122,"meta":123,"style":123},"agent-slack message draft \"general\"\nagent-slack message draft \"general\" \"initial text\"\nagent-slack message draft \"https:\u002F\u002Fworkspace.slack.com\u002Farchives\u002FC123\u002Fp1700000000000000\"\n",[898],{"type":43,"tag":52,"props":899,"children":900},{"__ignoreMap":123},[901,929,969],{"type":43,"tag":129,"props":902,"children":903},{"class":131,"line":132},[904,908,912,917,921,925],{"type":43,"tag":129,"props":905,"children":906},{"style":136},[907],{"type":49,"value":4},{"type":43,"tag":129,"props":909,"children":910},{"style":142},[911],{"type":49,"value":499},{"type":43,"tag":129,"props":913,"children":914},{"style":142},[915],{"type":49,"value":916}," draft",{"type":43,"tag":129,"props":918,"children":919},{"style":153},[920],{"type":49,"value":509},{"type":43,"tag":129,"props":922,"children":923},{"style":142},[924],{"type":49,"value":604},{"type":43,"tag":129,"props":926,"children":927},{"style":153},[928],{"type":49,"value":519},{"type":43,"tag":129,"props":930,"children":931},{"class":131,"line":249},[932,936,940,944,948,952,956,960,965],{"type":43,"tag":129,"props":933,"children":934},{"style":136},[935],{"type":49,"value":4},{"type":43,"tag":129,"props":937,"children":938},{"style":142},[939],{"type":49,"value":499},{"type":43,"tag":129,"props":941,"children":942},{"style":142},[943],{"type":49,"value":916},{"type":43,"tag":129,"props":945,"children":946},{"style":153},[947],{"type":49,"value":509},{"type":43,"tag":129,"props":949,"children":950},{"style":142},[951],{"type":49,"value":604},{"type":43,"tag":129,"props":953,"children":954},{"style":153},[955],{"type":49,"value":354},{"type":43,"tag":129,"props":957,"children":958},{"style":153},[959],{"type":49,"value":509},{"type":43,"tag":129,"props":961,"children":962},{"style":142},[963],{"type":49,"value":964},"initial text",{"type":43,"tag":129,"props":966,"children":967},{"style":153},[968],{"type":49,"value":519},{"type":43,"tag":129,"props":970,"children":971},{"class":131,"line":266},[972,976,980,984,988,992],{"type":43,"tag":129,"props":973,"children":974},{"style":136},[975],{"type":49,"value":4},{"type":43,"tag":129,"props":977,"children":978},{"style":142},[979],{"type":49,"value":499},{"type":43,"tag":129,"props":981,"children":982},{"style":142},[983],{"type":49,"value":916},{"type":43,"tag":129,"props":985,"children":986},{"style":153},[987],{"type":49,"value":509},{"type":43,"tag":129,"props":989,"children":990},{"style":142},[991],{"type":49,"value":514},{"type":43,"tag":129,"props":993,"children":994},{"style":153},[995],{"type":49,"value":519},{"type":43,"tag":85,"props":997,"children":999},{"id":998},"send-edit-delete-or-react",[1000],{"type":49,"value":1001},"Send, edit, delete, or react",{"type":43,"tag":118,"props":1003,"children":1005},{"className":120,"code":1004,"language":122,"meta":123,"style":123},"agent-slack message send \"https:\u002F\u002Fworkspace.slack.com\u002Farchives\u002FC123\u002Fp1700000000000000\" \"I can take this.\"\nagent-slack message send \"alerts-staging\" \"here's the report\" --attach .\u002Freport.md\nagent-slack message edit \"https:\u002F\u002Fworkspace.slack.com\u002Farchives\u002FC123\u002Fp1700000000000000\" \"I can take this today.\"\nagent-slack message delete \"https:\u002F\u002Fworkspace.slack.com\u002Farchives\u002FC123\u002Fp1700000000000000\"\n\nagent-slack message send \"general\" \"Here's the plan:\n- Step 1: do the thing\n- Step 2: verify it worked\n  - Sub-step: check logs\"\nagent-slack message react add \"https:\u002F\u002Fworkspace.slack.com\u002Farchives\u002FC123\u002Fp1700000000000000\" \"eyes\"\nagent-slack message react remove \"https:\u002F\u002Fworkspace.slack.com\u002Farchives\u002FC123\u002Fp1700000000000000\" \"eyes\"\n",[1006],{"type":43,"tag":52,"props":1007,"children":1008},{"__ignoreMap":123},[1009,1050,1101,1142,1170,1180,1217,1226,1235,1248,1295],{"type":43,"tag":129,"props":1010,"children":1011},{"class":131,"line":132},[1012,1016,1020,1025,1029,1033,1037,1041,1046],{"type":43,"tag":129,"props":1013,"children":1014},{"style":136},[1015],{"type":49,"value":4},{"type":43,"tag":129,"props":1017,"children":1018},{"style":142},[1019],{"type":49,"value":499},{"type":43,"tag":129,"props":1021,"children":1022},{"style":142},[1023],{"type":49,"value":1024}," send",{"type":43,"tag":129,"props":1026,"children":1027},{"style":153},[1028],{"type":49,"value":509},{"type":43,"tag":129,"props":1030,"children":1031},{"style":142},[1032],{"type":49,"value":514},{"type":43,"tag":129,"props":1034,"children":1035},{"style":153},[1036],{"type":49,"value":354},{"type":43,"tag":129,"props":1038,"children":1039},{"style":153},[1040],{"type":49,"value":509},{"type":43,"tag":129,"props":1042,"children":1043},{"style":142},[1044],{"type":49,"value":1045},"I can take this.",{"type":43,"tag":129,"props":1047,"children":1048},{"style":153},[1049],{"type":49,"value":519},{"type":43,"tag":129,"props":1051,"children":1052},{"class":131,"line":249},[1053,1057,1061,1065,1069,1074,1078,1082,1087,1091,1096],{"type":43,"tag":129,"props":1054,"children":1055},{"style":136},[1056],{"type":49,"value":4},{"type":43,"tag":129,"props":1058,"children":1059},{"style":142},[1060],{"type":49,"value":499},{"type":43,"tag":129,"props":1062,"children":1063},{"style":142},[1064],{"type":49,"value":1024},{"type":43,"tag":129,"props":1066,"children":1067},{"style":153},[1068],{"type":49,"value":509},{"type":43,"tag":129,"props":1070,"children":1071},{"style":142},[1072],{"type":49,"value":1073},"alerts-staging",{"type":43,"tag":129,"props":1075,"children":1076},{"style":153},[1077],{"type":49,"value":354},{"type":43,"tag":129,"props":1079,"children":1080},{"style":153},[1081],{"type":49,"value":509},{"type":43,"tag":129,"props":1083,"children":1084},{"style":142},[1085],{"type":49,"value":1086},"here's the report",{"type":43,"tag":129,"props":1088,"children":1089},{"style":153},[1090],{"type":49,"value":354},{"type":43,"tag":129,"props":1092,"children":1093},{"style":142},[1094],{"type":49,"value":1095}," --attach",{"type":43,"tag":129,"props":1097,"children":1098},{"style":142},[1099],{"type":49,"value":1100}," .\u002Freport.md\n",{"type":43,"tag":129,"props":1102,"children":1103},{"class":131,"line":266},[1104,1108,1112,1117,1121,1125,1129,1133,1138],{"type":43,"tag":129,"props":1105,"children":1106},{"style":136},[1107],{"type":49,"value":4},{"type":43,"tag":129,"props":1109,"children":1110},{"style":142},[1111],{"type":49,"value":499},{"type":43,"tag":129,"props":1113,"children":1114},{"style":142},[1115],{"type":49,"value":1116}," edit",{"type":43,"tag":129,"props":1118,"children":1119},{"style":153},[1120],{"type":49,"value":509},{"type":43,"tag":129,"props":1122,"children":1123},{"style":142},[1124],{"type":49,"value":514},{"type":43,"tag":129,"props":1126,"children":1127},{"style":153},[1128],{"type":49,"value":354},{"type":43,"tag":129,"props":1130,"children":1131},{"style":153},[1132],{"type":49,"value":509},{"type":43,"tag":129,"props":1134,"children":1135},{"style":142},[1136],{"type":49,"value":1137},"I can take this today.",{"type":43,"tag":129,"props":1139,"children":1140},{"style":153},[1141],{"type":49,"value":519},{"type":43,"tag":129,"props":1143,"children":1144},{"class":131,"line":722},[1145,1149,1153,1158,1162,1166],{"type":43,"tag":129,"props":1146,"children":1147},{"style":136},[1148],{"type":49,"value":4},{"type":43,"tag":129,"props":1150,"children":1151},{"style":142},[1152],{"type":49,"value":499},{"type":43,"tag":129,"props":1154,"children":1155},{"style":142},[1156],{"type":49,"value":1157}," delete",{"type":43,"tag":129,"props":1159,"children":1160},{"style":153},[1161],{"type":49,"value":509},{"type":43,"tag":129,"props":1163,"children":1164},{"style":142},[1165],{"type":49,"value":514},{"type":43,"tag":129,"props":1167,"children":1168},{"style":153},[1169],{"type":49,"value":519},{"type":43,"tag":129,"props":1171,"children":1173},{"class":131,"line":1172},5,[1174],{"type":43,"tag":129,"props":1175,"children":1177},{"emptyLinePlaceholder":1176},true,[1178],{"type":49,"value":1179},"\n",{"type":43,"tag":129,"props":1181,"children":1183},{"class":131,"line":1182},6,[1184,1188,1192,1196,1200,1204,1208,1212],{"type":43,"tag":129,"props":1185,"children":1186},{"style":136},[1187],{"type":49,"value":4},{"type":43,"tag":129,"props":1189,"children":1190},{"style":142},[1191],{"type":49,"value":499},{"type":43,"tag":129,"props":1193,"children":1194},{"style":142},[1195],{"type":49,"value":1024},{"type":43,"tag":129,"props":1197,"children":1198},{"style":153},[1199],{"type":49,"value":509},{"type":43,"tag":129,"props":1201,"children":1202},{"style":142},[1203],{"type":49,"value":604},{"type":43,"tag":129,"props":1205,"children":1206},{"style":153},[1207],{"type":49,"value":354},{"type":43,"tag":129,"props":1209,"children":1210},{"style":153},[1211],{"type":49,"value":509},{"type":43,"tag":129,"props":1213,"children":1214},{"style":142},[1215],{"type":49,"value":1216},"Here's the plan:\n",{"type":43,"tag":129,"props":1218,"children":1220},{"class":131,"line":1219},7,[1221],{"type":43,"tag":129,"props":1222,"children":1223},{"style":142},[1224],{"type":49,"value":1225},"- Step 1: do the thing\n",{"type":43,"tag":129,"props":1227,"children":1229},{"class":131,"line":1228},8,[1230],{"type":43,"tag":129,"props":1231,"children":1232},{"style":142},[1233],{"type":49,"value":1234},"- Step 2: verify it worked\n",{"type":43,"tag":129,"props":1236,"children":1238},{"class":131,"line":1237},9,[1239,1244],{"type":43,"tag":129,"props":1240,"children":1241},{"style":142},[1242],{"type":49,"value":1243},"  - Sub-step: check logs",{"type":43,"tag":129,"props":1245,"children":1246},{"style":153},[1247],{"type":49,"value":519},{"type":43,"tag":129,"props":1249,"children":1251},{"class":131,"line":1250},10,[1252,1256,1260,1265,1270,1274,1278,1282,1286,1291],{"type":43,"tag":129,"props":1253,"children":1254},{"style":136},[1255],{"type":49,"value":4},{"type":43,"tag":129,"props":1257,"children":1258},{"style":142},[1259],{"type":49,"value":499},{"type":43,"tag":129,"props":1261,"children":1262},{"style":142},[1263],{"type":49,"value":1264}," react",{"type":43,"tag":129,"props":1266,"children":1267},{"style":142},[1268],{"type":49,"value":1269}," add",{"type":43,"tag":129,"props":1271,"children":1272},{"style":153},[1273],{"type":49,"value":509},{"type":43,"tag":129,"props":1275,"children":1276},{"style":142},[1277],{"type":49,"value":514},{"type":43,"tag":129,"props":1279,"children":1280},{"style":153},[1281],{"type":49,"value":354},{"type":43,"tag":129,"props":1283,"children":1284},{"style":153},[1285],{"type":49,"value":509},{"type":43,"tag":129,"props":1287,"children":1288},{"style":142},[1289],{"type":49,"value":1290},"eyes",{"type":43,"tag":129,"props":1292,"children":1293},{"style":153},[1294],{"type":49,"value":519},{"type":43,"tag":129,"props":1296,"children":1298},{"class":131,"line":1297},11,[1299,1303,1307,1311,1316,1320,1324,1328,1332,1336],{"type":43,"tag":129,"props":1300,"children":1301},{"style":136},[1302],{"type":49,"value":4},{"type":43,"tag":129,"props":1304,"children":1305},{"style":142},[1306],{"type":49,"value":499},{"type":43,"tag":129,"props":1308,"children":1309},{"style":142},[1310],{"type":49,"value":1264},{"type":43,"tag":129,"props":1312,"children":1313},{"style":142},[1314],{"type":49,"value":1315}," remove",{"type":43,"tag":129,"props":1317,"children":1318},{"style":153},[1319],{"type":49,"value":509},{"type":43,"tag":129,"props":1321,"children":1322},{"style":142},[1323],{"type":49,"value":514},{"type":43,"tag":129,"props":1325,"children":1326},{"style":153},[1327],{"type":49,"value":354},{"type":43,"tag":129,"props":1329,"children":1330},{"style":153},[1331],{"type":49,"value":509},{"type":43,"tag":129,"props":1333,"children":1334},{"style":142},[1335],{"type":49,"value":1290},{"type":43,"tag":129,"props":1337,"children":1338},{"style":153},[1339],{"type":49,"value":519},{"type":43,"tag":58,"props":1341,"children":1342},{},[1343,1345,1351],{"type":49,"value":1344},"Channel mode for edit\u002Fdelete requires ",{"type":43,"tag":52,"props":1346,"children":1348},{"className":1347},[],[1349],{"type":49,"value":1350},"--ts",{"type":49,"value":1352},":",{"type":43,"tag":118,"props":1354,"children":1356},{"className":120,"code":1355,"language":122,"meta":123,"style":123},"agent-slack message edit \"general\" \"Updated text\" --workspace \"myteam\" --ts \"1770165109.628379\"\nagent-slack message delete \"general\" --workspace \"myteam\" --ts \"1770165109.628379\"\n",[1357],{"type":43,"tag":52,"props":1358,"children":1359},{"__ignoreMap":123},[1360,1436],{"type":43,"tag":129,"props":1361,"children":1362},{"class":131,"line":132},[1363,1367,1371,1375,1379,1383,1387,1391,1396,1400,1405,1409,1414,1418,1423,1427,1432],{"type":43,"tag":129,"props":1364,"children":1365},{"style":136},[1366],{"type":49,"value":4},{"type":43,"tag":129,"props":1368,"children":1369},{"style":142},[1370],{"type":49,"value":499},{"type":43,"tag":129,"props":1372,"children":1373},{"style":142},[1374],{"type":49,"value":1116},{"type":43,"tag":129,"props":1376,"children":1377},{"style":153},[1378],{"type":49,"value":509},{"type":43,"tag":129,"props":1380,"children":1381},{"style":142},[1382],{"type":49,"value":604},{"type":43,"tag":129,"props":1384,"children":1385},{"style":153},[1386],{"type":49,"value":354},{"type":43,"tag":129,"props":1388,"children":1389},{"style":153},[1390],{"type":49,"value":509},{"type":43,"tag":129,"props":1392,"children":1393},{"style":142},[1394],{"type":49,"value":1395},"Updated text",{"type":43,"tag":129,"props":1397,"children":1398},{"style":153},[1399],{"type":49,"value":354},{"type":43,"tag":129,"props":1401,"children":1402},{"style":142},[1403],{"type":49,"value":1404}," --workspace",{"type":43,"tag":129,"props":1406,"children":1407},{"style":153},[1408],{"type":49,"value":509},{"type":43,"tag":129,"props":1410,"children":1411},{"style":142},[1412],{"type":49,"value":1413},"myteam",{"type":43,"tag":129,"props":1415,"children":1416},{"style":153},[1417],{"type":49,"value":354},{"type":43,"tag":129,"props":1419,"children":1420},{"style":142},[1421],{"type":49,"value":1422}," --ts",{"type":43,"tag":129,"props":1424,"children":1425},{"style":153},[1426],{"type":49,"value":509},{"type":43,"tag":129,"props":1428,"children":1429},{"style":142},[1430],{"type":49,"value":1431},"1770165109.628379",{"type":43,"tag":129,"props":1433,"children":1434},{"style":153},[1435],{"type":49,"value":519},{"type":43,"tag":129,"props":1437,"children":1438},{"class":131,"line":249},[1439,1443,1447,1451,1455,1459,1463,1467,1471,1475,1479,1483,1487,1491],{"type":43,"tag":129,"props":1440,"children":1441},{"style":136},[1442],{"type":49,"value":4},{"type":43,"tag":129,"props":1444,"children":1445},{"style":142},[1446],{"type":49,"value":499},{"type":43,"tag":129,"props":1448,"children":1449},{"style":142},[1450],{"type":49,"value":1157},{"type":43,"tag":129,"props":1452,"children":1453},{"style":153},[1454],{"type":49,"value":509},{"type":43,"tag":129,"props":1456,"children":1457},{"style":142},[1458],{"type":49,"value":604},{"type":43,"tag":129,"props":1460,"children":1461},{"style":153},[1462],{"type":49,"value":354},{"type":43,"tag":129,"props":1464,"children":1465},{"style":142},[1466],{"type":49,"value":1404},{"type":43,"tag":129,"props":1468,"children":1469},{"style":153},[1470],{"type":49,"value":509},{"type":43,"tag":129,"props":1472,"children":1473},{"style":142},[1474],{"type":49,"value":1413},{"type":43,"tag":129,"props":1476,"children":1477},{"style":153},[1478],{"type":49,"value":354},{"type":43,"tag":129,"props":1480,"children":1481},{"style":142},[1482],{"type":49,"value":1422},{"type":43,"tag":129,"props":1484,"children":1485},{"style":153},[1486],{"type":49,"value":509},{"type":43,"tag":129,"props":1488,"children":1489},{"style":142},[1490],{"type":49,"value":1431},{"type":43,"tag":129,"props":1492,"children":1493},{"style":153},[1494],{"type":49,"value":519},{"type":43,"tag":58,"props":1496,"children":1497},{},[1498,1500,1506],{"type":49,"value":1499},"Attach options for ",{"type":43,"tag":52,"props":1501,"children":1503},{"className":1502},[],[1504],{"type":49,"value":1505},"message send",{"type":49,"value":1352},{"type":43,"tag":1508,"props":1509,"children":1510},"ul",{},[1511],{"type":43,"tag":476,"props":1512,"children":1513},{},[1514,1520],{"type":43,"tag":52,"props":1515,"children":1517},{"className":1516},[],[1518],{"type":49,"value":1519},"--attach \u003Cpath>",{"type":49,"value":1521}," upload a local file (repeatable)",{"type":43,"tag":85,"props":1523,"children":1525},{"id":1524},"list-channels-createinvite-users",[1526],{"type":49,"value":1527},"List channels + create\u002Finvite users",{"type":43,"tag":118,"props":1529,"children":1531},{"className":120,"code":1530,"language":122,"meta":123,"style":123},"agent-slack channel list\nagent-slack channel list --user \"@alice\" --limit 50\nagent-slack channel list --all --limit 100\nagent-slack channel new --name \"incident-war-room\"\nagent-slack channel new --name \"incident-leads\" --private\nagent-slack channel invite --channel \"incident-war-room\" --users \"U01AAAA,@alice,bob@example.com\"\nagent-slack channel invite --channel \"incident-war-room\" --users \"partner@vendor.com\" --external\nagent-slack channel invite --channel \"incident-war-room\" --users \"partner@vendor.com\" --external --allow-external-user-invites\n",[1532],{"type":43,"tag":52,"props":1533,"children":1534},{"__ignoreMap":123},[1535,1552,1594,1623,1657,1694,1745,1798],{"type":43,"tag":129,"props":1536,"children":1537},{"class":131,"line":132},[1538,1542,1547],{"type":43,"tag":129,"props":1539,"children":1540},{"style":136},[1541],{"type":49,"value":4},{"type":43,"tag":129,"props":1543,"children":1544},{"style":142},[1545],{"type":49,"value":1546}," channel",{"type":43,"tag":129,"props":1548,"children":1549},{"style":142},[1550],{"type":49,"value":1551}," list\n",{"type":43,"tag":129,"props":1553,"children":1554},{"class":131,"line":249},[1555,1559,1563,1567,1572,1576,1581,1585,1589],{"type":43,"tag":129,"props":1556,"children":1557},{"style":136},[1558],{"type":49,"value":4},{"type":43,"tag":129,"props":1560,"children":1561},{"style":142},[1562],{"type":49,"value":1546},{"type":43,"tag":129,"props":1564,"children":1565},{"style":142},[1566],{"type":49,"value":550},{"type":43,"tag":129,"props":1568,"children":1569},{"style":142},[1570],{"type":49,"value":1571}," --user",{"type":43,"tag":129,"props":1573,"children":1574},{"style":153},[1575],{"type":49,"value":509},{"type":43,"tag":129,"props":1577,"children":1578},{"style":142},[1579],{"type":49,"value":1580},"@alice",{"type":43,"tag":129,"props":1582,"children":1583},{"style":153},[1584],{"type":49,"value":354},{"type":43,"tag":129,"props":1586,"children":1587},{"style":142},[1588],{"type":49,"value":613},{"type":43,"tag":129,"props":1590,"children":1591},{"style":616},[1592],{"type":49,"value":1593}," 50\n",{"type":43,"tag":129,"props":1595,"children":1596},{"class":131,"line":266},[1597,1601,1605,1609,1614,1618],{"type":43,"tag":129,"props":1598,"children":1599},{"style":136},[1600],{"type":49,"value":4},{"type":43,"tag":129,"props":1602,"children":1603},{"style":142},[1604],{"type":49,"value":1546},{"type":43,"tag":129,"props":1606,"children":1607},{"style":142},[1608],{"type":49,"value":550},{"type":43,"tag":129,"props":1610,"children":1611},{"style":142},[1612],{"type":49,"value":1613}," --all",{"type":43,"tag":129,"props":1615,"children":1616},{"style":142},[1617],{"type":49,"value":613},{"type":43,"tag":129,"props":1619,"children":1620},{"style":616},[1621],{"type":49,"value":1622}," 100\n",{"type":43,"tag":129,"props":1624,"children":1625},{"class":131,"line":722},[1626,1630,1634,1639,1644,1648,1653],{"type":43,"tag":129,"props":1627,"children":1628},{"style":136},[1629],{"type":49,"value":4},{"type":43,"tag":129,"props":1631,"children":1632},{"style":142},[1633],{"type":49,"value":1546},{"type":43,"tag":129,"props":1635,"children":1636},{"style":142},[1637],{"type":49,"value":1638}," new",{"type":43,"tag":129,"props":1640,"children":1641},{"style":142},[1642],{"type":49,"value":1643}," --name",{"type":43,"tag":129,"props":1645,"children":1646},{"style":153},[1647],{"type":49,"value":509},{"type":43,"tag":129,"props":1649,"children":1650},{"style":142},[1651],{"type":49,"value":1652},"incident-war-room",{"type":43,"tag":129,"props":1654,"children":1655},{"style":153},[1656],{"type":49,"value":519},{"type":43,"tag":129,"props":1658,"children":1659},{"class":131,"line":1172},[1660,1664,1668,1672,1676,1680,1685,1689],{"type":43,"tag":129,"props":1661,"children":1662},{"style":136},[1663],{"type":49,"value":4},{"type":43,"tag":129,"props":1665,"children":1666},{"style":142},[1667],{"type":49,"value":1546},{"type":43,"tag":129,"props":1669,"children":1670},{"style":142},[1671],{"type":49,"value":1638},{"type":43,"tag":129,"props":1673,"children":1674},{"style":142},[1675],{"type":49,"value":1643},{"type":43,"tag":129,"props":1677,"children":1678},{"style":153},[1679],{"type":49,"value":509},{"type":43,"tag":129,"props":1681,"children":1682},{"style":142},[1683],{"type":49,"value":1684},"incident-leads",{"type":43,"tag":129,"props":1686,"children":1687},{"style":153},[1688],{"type":49,"value":354},{"type":43,"tag":129,"props":1690,"children":1691},{"style":142},[1692],{"type":49,"value":1693}," --private\n",{"type":43,"tag":129,"props":1695,"children":1696},{"class":131,"line":1182},[1697,1701,1705,1710,1715,1719,1723,1727,1732,1736,1741],{"type":43,"tag":129,"props":1698,"children":1699},{"style":136},[1700],{"type":49,"value":4},{"type":43,"tag":129,"props":1702,"children":1703},{"style":142},[1704],{"type":49,"value":1546},{"type":43,"tag":129,"props":1706,"children":1707},{"style":142},[1708],{"type":49,"value":1709}," invite",{"type":43,"tag":129,"props":1711,"children":1712},{"style":142},[1713],{"type":49,"value":1714}," --channel",{"type":43,"tag":129,"props":1716,"children":1717},{"style":153},[1718],{"type":49,"value":509},{"type":43,"tag":129,"props":1720,"children":1721},{"style":142},[1722],{"type":49,"value":1652},{"type":43,"tag":129,"props":1724,"children":1725},{"style":153},[1726],{"type":49,"value":354},{"type":43,"tag":129,"props":1728,"children":1729},{"style":142},[1730],{"type":49,"value":1731}," --users",{"type":43,"tag":129,"props":1733,"children":1734},{"style":153},[1735],{"type":49,"value":509},{"type":43,"tag":129,"props":1737,"children":1738},{"style":142},[1739],{"type":49,"value":1740},"U01AAAA,@alice,bob@example.com",{"type":43,"tag":129,"props":1742,"children":1743},{"style":153},[1744],{"type":49,"value":519},{"type":43,"tag":129,"props":1746,"children":1747},{"class":131,"line":1219},[1748,1752,1756,1760,1764,1768,1772,1776,1780,1784,1789,1793],{"type":43,"tag":129,"props":1749,"children":1750},{"style":136},[1751],{"type":49,"value":4},{"type":43,"tag":129,"props":1753,"children":1754},{"style":142},[1755],{"type":49,"value":1546},{"type":43,"tag":129,"props":1757,"children":1758},{"style":142},[1759],{"type":49,"value":1709},{"type":43,"tag":129,"props":1761,"children":1762},{"style":142},[1763],{"type":49,"value":1714},{"type":43,"tag":129,"props":1765,"children":1766},{"style":153},[1767],{"type":49,"value":509},{"type":43,"tag":129,"props":1769,"children":1770},{"style":142},[1771],{"type":49,"value":1652},{"type":43,"tag":129,"props":1773,"children":1774},{"style":153},[1775],{"type":49,"value":354},{"type":43,"tag":129,"props":1777,"children":1778},{"style":142},[1779],{"type":49,"value":1731},{"type":43,"tag":129,"props":1781,"children":1782},{"style":153},[1783],{"type":49,"value":509},{"type":43,"tag":129,"props":1785,"children":1786},{"style":142},[1787],{"type":49,"value":1788},"partner@vendor.com",{"type":43,"tag":129,"props":1790,"children":1791},{"style":153},[1792],{"type":49,"value":354},{"type":43,"tag":129,"props":1794,"children":1795},{"style":142},[1796],{"type":49,"value":1797}," --external\n",{"type":43,"tag":129,"props":1799,"children":1800},{"class":131,"line":1228},[1801,1805,1809,1813,1817,1821,1825,1829,1833,1837,1841,1845,1850],{"type":43,"tag":129,"props":1802,"children":1803},{"style":136},[1804],{"type":49,"value":4},{"type":43,"tag":129,"props":1806,"children":1807},{"style":142},[1808],{"type":49,"value":1546},{"type":43,"tag":129,"props":1810,"children":1811},{"style":142},[1812],{"type":49,"value":1709},{"type":43,"tag":129,"props":1814,"children":1815},{"style":142},[1816],{"type":49,"value":1714},{"type":43,"tag":129,"props":1818,"children":1819},{"style":153},[1820],{"type":49,"value":509},{"type":43,"tag":129,"props":1822,"children":1823},{"style":142},[1824],{"type":49,"value":1652},{"type":43,"tag":129,"props":1826,"children":1827},{"style":153},[1828],{"type":49,"value":354},{"type":43,"tag":129,"props":1830,"children":1831},{"style":142},[1832],{"type":49,"value":1731},{"type":43,"tag":129,"props":1834,"children":1835},{"style":153},[1836],{"type":49,"value":509},{"type":43,"tag":129,"props":1838,"children":1839},{"style":142},[1840],{"type":49,"value":1788},{"type":43,"tag":129,"props":1842,"children":1843},{"style":153},[1844],{"type":49,"value":354},{"type":43,"tag":129,"props":1846,"children":1847},{"style":142},[1848],{"type":49,"value":1849}," --external",{"type":43,"tag":129,"props":1851,"children":1852},{"style":142},[1853],{"type":49,"value":1854}," --allow-external-user-invites\n",{"type":43,"tag":58,"props":1856,"children":1857},{},[1858,1860,1866,1868,1874],{"type":49,"value":1859},"For ",{"type":43,"tag":52,"props":1861,"children":1863},{"className":1862},[],[1864],{"type":49,"value":1865},"--external",{"type":49,"value":1867},", invite targets must be emails. By default, invitees are external-limited; add\n",{"type":43,"tag":52,"props":1869,"children":1871},{"className":1870},[],[1872],{"type":49,"value":1873},"--allow-external-user-invites",{"type":49,"value":1875}," to allow them to invite other users.",{"type":43,"tag":85,"props":1877,"children":1879},{"id":1878},"search-messages-files",[1880],{"type":49,"value":1881},"Search (messages + files)",{"type":43,"tag":58,"props":1883,"children":1884},{},[1885],{"type":49,"value":1886},"Prefer channel-scoped search for reliability:",{"type":43,"tag":118,"props":1888,"children":1890},{"className":120,"code":1889,"language":122,"meta":123,"style":123},"agent-slack search all \"smoke tests failed\" --channel \"alerts\" --after 2026-01-01 --before 2026-02-01\nagent-slack search messages \"stably test\" --user \"@alice\" --channel general\nagent-slack search files \"testing\" --content-type snippet --limit 10\n",[1891],{"type":43,"tag":52,"props":1892,"children":1893},{"__ignoreMap":123},[1894,1961,2015],{"type":43,"tag":129,"props":1895,"children":1896},{"class":131,"line":132},[1897,1901,1906,1911,1915,1920,1924,1928,1932,1937,1941,1946,1951,1956],{"type":43,"tag":129,"props":1898,"children":1899},{"style":136},[1900],{"type":49,"value":4},{"type":43,"tag":129,"props":1902,"children":1903},{"style":142},[1904],{"type":49,"value":1905}," search",{"type":43,"tag":129,"props":1907,"children":1908},{"style":142},[1909],{"type":49,"value":1910}," all",{"type":43,"tag":129,"props":1912,"children":1913},{"style":153},[1914],{"type":49,"value":509},{"type":43,"tag":129,"props":1916,"children":1917},{"style":142},[1918],{"type":49,"value":1919},"smoke tests failed",{"type":43,"tag":129,"props":1921,"children":1922},{"style":153},[1923],{"type":49,"value":354},{"type":43,"tag":129,"props":1925,"children":1926},{"style":142},[1927],{"type":49,"value":1714},{"type":43,"tag":129,"props":1929,"children":1930},{"style":153},[1931],{"type":49,"value":509},{"type":43,"tag":129,"props":1933,"children":1934},{"style":142},[1935],{"type":49,"value":1936},"alerts",{"type":43,"tag":129,"props":1938,"children":1939},{"style":153},[1940],{"type":49,"value":354},{"type":43,"tag":129,"props":1942,"children":1943},{"style":142},[1944],{"type":49,"value":1945}," --after",{"type":43,"tag":129,"props":1947,"children":1948},{"style":142},[1949],{"type":49,"value":1950}," 2026-01-01",{"type":43,"tag":129,"props":1952,"children":1953},{"style":142},[1954],{"type":49,"value":1955}," --before",{"type":43,"tag":129,"props":1957,"children":1958},{"style":142},[1959],{"type":49,"value":1960}," 2026-02-01\n",{"type":43,"tag":129,"props":1962,"children":1963},{"class":131,"line":249},[1964,1968,1972,1977,1981,1986,1990,1994,1998,2002,2006,2010],{"type":43,"tag":129,"props":1965,"children":1966},{"style":136},[1967],{"type":49,"value":4},{"type":43,"tag":129,"props":1969,"children":1970},{"style":142},[1971],{"type":49,"value":1905},{"type":43,"tag":129,"props":1973,"children":1974},{"style":142},[1975],{"type":49,"value":1976}," messages",{"type":43,"tag":129,"props":1978,"children":1979},{"style":153},[1980],{"type":49,"value":509},{"type":43,"tag":129,"props":1982,"children":1983},{"style":142},[1984],{"type":49,"value":1985},"stably test",{"type":43,"tag":129,"props":1987,"children":1988},{"style":153},[1989],{"type":49,"value":354},{"type":43,"tag":129,"props":1991,"children":1992},{"style":142},[1993],{"type":49,"value":1571},{"type":43,"tag":129,"props":1995,"children":1996},{"style":153},[1997],{"type":49,"value":509},{"type":43,"tag":129,"props":1999,"children":2000},{"style":142},[2001],{"type":49,"value":1580},{"type":43,"tag":129,"props":2003,"children":2004},{"style":153},[2005],{"type":49,"value":354},{"type":43,"tag":129,"props":2007,"children":2008},{"style":142},[2009],{"type":49,"value":1714},{"type":43,"tag":129,"props":2011,"children":2012},{"style":142},[2013],{"type":49,"value":2014}," general\n",{"type":43,"tag":129,"props":2016,"children":2017},{"class":131,"line":266},[2018,2022,2026,2031,2035,2040,2044,2049,2054,2058],{"type":43,"tag":129,"props":2019,"children":2020},{"style":136},[2021],{"type":49,"value":4},{"type":43,"tag":129,"props":2023,"children":2024},{"style":142},[2025],{"type":49,"value":1905},{"type":43,"tag":129,"props":2027,"children":2028},{"style":142},[2029],{"type":49,"value":2030}," files",{"type":43,"tag":129,"props":2032,"children":2033},{"style":153},[2034],{"type":49,"value":509},{"type":43,"tag":129,"props":2036,"children":2037},{"style":142},[2038],{"type":49,"value":2039},"testing",{"type":43,"tag":129,"props":2041,"children":2042},{"style":153},[2043],{"type":49,"value":354},{"type":43,"tag":129,"props":2045,"children":2046},{"style":142},[2047],{"type":49,"value":2048}," --content-type",{"type":43,"tag":129,"props":2050,"children":2051},{"style":142},[2052],{"type":49,"value":2053}," snippet",{"type":43,"tag":129,"props":2055,"children":2056},{"style":142},[2057],{"type":49,"value":613},{"type":43,"tag":129,"props":2059,"children":2060},{"style":616},[2061],{"type":49,"value":656},{"type":43,"tag":85,"props":2063,"children":2065},{"id":2064},"multi-workspace-guardrail-important",[2066],{"type":49,"value":2067},"Multi-workspace guardrail (important)",{"type":43,"tag":58,"props":2069,"children":2070},{},[2071,2073,2077,2079,2084,2086,2092,2094,2100],{"type":49,"value":2072},"If you have multiple workspaces configured and you use a channel ",{"type":43,"tag":195,"props":2074,"children":2075},{},[2076],{"type":49,"value":865},{"type":49,"value":2078}," (e.g. ",{"type":43,"tag":52,"props":2080,"children":2082},{"className":2081},[],[2083],{"type":49,"value":604},{"type":49,"value":2085},"), pass ",{"type":43,"tag":52,"props":2087,"children":2089},{"className":2088},[],[2090],{"type":49,"value":2091},"--workspace",{"type":49,"value":2093}," (or set ",{"type":43,"tag":52,"props":2095,"children":2097},{"className":2096},[],[2098],{"type":49,"value":2099},"SLACK_WORKSPACE_URL",{"type":49,"value":2101},") to avoid ambiguity:",{"type":43,"tag":118,"props":2103,"children":2105},{"className":120,"code":2104,"language":122,"meta":123,"style":123},"agent-slack message get \"general\" --workspace \"https:\u002F\u002Fmyteam.slack.com\" --ts \"1770165109.628379\"\nagent-slack message get \"general\" --workspace \"myteam\" --ts \"1770165109.628379\"\n",[2106],{"type":43,"tag":52,"props":2107,"children":2108},{"__ignoreMap":123},[2109,2169],{"type":43,"tag":129,"props":2110,"children":2111},{"class":131,"line":132},[2112,2116,2120,2124,2128,2132,2136,2140,2144,2149,2153,2157,2161,2165],{"type":43,"tag":129,"props":2113,"children":2114},{"style":136},[2115],{"type":49,"value":4},{"type":43,"tag":129,"props":2117,"children":2118},{"style":142},[2119],{"type":49,"value":499},{"type":43,"tag":129,"props":2121,"children":2122},{"style":142},[2123],{"type":49,"value":504},{"type":43,"tag":129,"props":2125,"children":2126},{"style":153},[2127],{"type":49,"value":509},{"type":43,"tag":129,"props":2129,"children":2130},{"style":142},[2131],{"type":49,"value":604},{"type":43,"tag":129,"props":2133,"children":2134},{"style":153},[2135],{"type":49,"value":354},{"type":43,"tag":129,"props":2137,"children":2138},{"style":142},[2139],{"type":49,"value":1404},{"type":43,"tag":129,"props":2141,"children":2142},{"style":153},[2143],{"type":49,"value":509},{"type":43,"tag":129,"props":2145,"children":2146},{"style":142},[2147],{"type":49,"value":2148},"https:\u002F\u002Fmyteam.slack.com",{"type":43,"tag":129,"props":2150,"children":2151},{"style":153},[2152],{"type":49,"value":354},{"type":43,"tag":129,"props":2154,"children":2155},{"style":142},[2156],{"type":49,"value":1422},{"type":43,"tag":129,"props":2158,"children":2159},{"style":153},[2160],{"type":49,"value":509},{"type":43,"tag":129,"props":2162,"children":2163},{"style":142},[2164],{"type":49,"value":1431},{"type":43,"tag":129,"props":2166,"children":2167},{"style":153},[2168],{"type":49,"value":519},{"type":43,"tag":129,"props":2170,"children":2171},{"class":131,"line":249},[2172,2176,2180,2184,2188,2192,2196,2200,2204,2208,2212,2216,2220,2224],{"type":43,"tag":129,"props":2173,"children":2174},{"style":136},[2175],{"type":49,"value":4},{"type":43,"tag":129,"props":2177,"children":2178},{"style":142},[2179],{"type":49,"value":499},{"type":43,"tag":129,"props":2181,"children":2182},{"style":142},[2183],{"type":49,"value":504},{"type":43,"tag":129,"props":2185,"children":2186},{"style":153},[2187],{"type":49,"value":509},{"type":43,"tag":129,"props":2189,"children":2190},{"style":142},[2191],{"type":49,"value":604},{"type":43,"tag":129,"props":2193,"children":2194},{"style":153},[2195],{"type":49,"value":354},{"type":43,"tag":129,"props":2197,"children":2198},{"style":142},[2199],{"type":49,"value":1404},{"type":43,"tag":129,"props":2201,"children":2202},{"style":153},[2203],{"type":49,"value":509},{"type":43,"tag":129,"props":2205,"children":2206},{"style":142},[2207],{"type":49,"value":1413},{"type":43,"tag":129,"props":2209,"children":2210},{"style":153},[2211],{"type":49,"value":354},{"type":43,"tag":129,"props":2213,"children":2214},{"style":142},[2215],{"type":49,"value":1422},{"type":43,"tag":129,"props":2217,"children":2218},{"style":153},[2219],{"type":49,"value":509},{"type":43,"tag":129,"props":2221,"children":2222},{"style":142},[2223],{"type":49,"value":1431},{"type":43,"tag":129,"props":2225,"children":2226},{"style":153},[2227],{"type":49,"value":519},{"type":43,"tag":85,"props":2229,"children":2231},{"id":2230},"dm-group-dm-channels",[2232],{"type":49,"value":2233},"DM \u002F group DM channels",{"type":43,"tag":58,"props":2235,"children":2236},{},[2237],{"type":49,"value":2238},"Get the channel ID for a DM or group DM, useful for sending messages to a group of users:",{"type":43,"tag":118,"props":2240,"children":2242},{"className":120,"code":2241,"language":122,"meta":123,"style":123},"agent-slack user dm-open @alice @bob\nagent-slack user dm-open U01AAAA U02BBBB U03CCCC\n",[2243],{"type":43,"tag":52,"props":2244,"children":2245},{"__ignoreMap":123},[2246,2273],{"type":43,"tag":129,"props":2247,"children":2248},{"class":131,"line":132},[2249,2253,2258,2263,2268],{"type":43,"tag":129,"props":2250,"children":2251},{"style":136},[2252],{"type":49,"value":4},{"type":43,"tag":129,"props":2254,"children":2255},{"style":142},[2256],{"type":49,"value":2257}," user",{"type":43,"tag":129,"props":2259,"children":2260},{"style":142},[2261],{"type":49,"value":2262}," dm-open",{"type":43,"tag":129,"props":2264,"children":2265},{"style":142},[2266],{"type":49,"value":2267}," @alice",{"type":43,"tag":129,"props":2269,"children":2270},{"style":142},[2271],{"type":49,"value":2272}," @bob\n",{"type":43,"tag":129,"props":2274,"children":2275},{"class":131,"line":249},[2276,2280,2284,2288,2293,2298],{"type":43,"tag":129,"props":2277,"children":2278},{"style":136},[2279],{"type":49,"value":4},{"type":43,"tag":129,"props":2281,"children":2282},{"style":142},[2283],{"type":49,"value":2257},{"type":43,"tag":129,"props":2285,"children":2286},{"style":142},[2287],{"type":49,"value":2262},{"type":43,"tag":129,"props":2289,"children":2290},{"style":142},[2291],{"type":49,"value":2292}," U01AAAA",{"type":43,"tag":129,"props":2294,"children":2295},{"style":142},[2296],{"type":49,"value":2297}," U02BBBB",{"type":43,"tag":129,"props":2299,"children":2300},{"style":142},[2301],{"type":49,"value":2302}," U03CCCC\n",{"type":43,"tag":85,"props":2304,"children":2306},{"id":2305},"mark-as-read",[2307],{"type":49,"value":2308},"Mark as read",{"type":43,"tag":58,"props":2310,"children":2311},{},[2312],{"type":49,"value":2313},"Mark a channel, DM, or group DM as read up to a given message:",{"type":43,"tag":118,"props":2315,"children":2317},{"className":120,"code":2316,"language":122,"meta":123,"style":123},"agent-slack channel mark \"https:\u002F\u002Fworkspace.slack.com\u002Farchives\u002FC123\u002Fp1700000000000000\"\nagent-slack channel mark \"general\" --workspace \"myteam\" --ts \"1770165109.628379\"\nagent-slack channel mark \"D0A04PB2QBW\" --workspace \"myteam\" --ts \"1770165109.628379\"\n",[2318],{"type":43,"tag":52,"props":2319,"children":2320},{"__ignoreMap":123},[2321,2349,2408],{"type":43,"tag":129,"props":2322,"children":2323},{"class":131,"line":132},[2324,2328,2332,2337,2341,2345],{"type":43,"tag":129,"props":2325,"children":2326},{"style":136},[2327],{"type":49,"value":4},{"type":43,"tag":129,"props":2329,"children":2330},{"style":142},[2331],{"type":49,"value":1546},{"type":43,"tag":129,"props":2333,"children":2334},{"style":142},[2335],{"type":49,"value":2336}," mark",{"type":43,"tag":129,"props":2338,"children":2339},{"style":153},[2340],{"type":49,"value":509},{"type":43,"tag":129,"props":2342,"children":2343},{"style":142},[2344],{"type":49,"value":514},{"type":43,"tag":129,"props":2346,"children":2347},{"style":153},[2348],{"type":49,"value":519},{"type":43,"tag":129,"props":2350,"children":2351},{"class":131,"line":249},[2352,2356,2360,2364,2368,2372,2376,2380,2384,2388,2392,2396,2400,2404],{"type":43,"tag":129,"props":2353,"children":2354},{"style":136},[2355],{"type":49,"value":4},{"type":43,"tag":129,"props":2357,"children":2358},{"style":142},[2359],{"type":49,"value":1546},{"type":43,"tag":129,"props":2361,"children":2362},{"style":142},[2363],{"type":49,"value":2336},{"type":43,"tag":129,"props":2365,"children":2366},{"style":153},[2367],{"type":49,"value":509},{"type":43,"tag":129,"props":2369,"children":2370},{"style":142},[2371],{"type":49,"value":604},{"type":43,"tag":129,"props":2373,"children":2374},{"style":153},[2375],{"type":49,"value":354},{"type":43,"tag":129,"props":2377,"children":2378},{"style":142},[2379],{"type":49,"value":1404},{"type":43,"tag":129,"props":2381,"children":2382},{"style":153},[2383],{"type":49,"value":509},{"type":43,"tag":129,"props":2385,"children":2386},{"style":142},[2387],{"type":49,"value":1413},{"type":43,"tag":129,"props":2389,"children":2390},{"style":153},[2391],{"type":49,"value":354},{"type":43,"tag":129,"props":2393,"children":2394},{"style":142},[2395],{"type":49,"value":1422},{"type":43,"tag":129,"props":2397,"children":2398},{"style":153},[2399],{"type":49,"value":509},{"type":43,"tag":129,"props":2401,"children":2402},{"style":142},[2403],{"type":49,"value":1431},{"type":43,"tag":129,"props":2405,"children":2406},{"style":153},[2407],{"type":49,"value":519},{"type":43,"tag":129,"props":2409,"children":2410},{"class":131,"line":266},[2411,2415,2419,2423,2427,2432,2436,2440,2444,2448,2452,2456,2460,2464],{"type":43,"tag":129,"props":2412,"children":2413},{"style":136},[2414],{"type":49,"value":4},{"type":43,"tag":129,"props":2416,"children":2417},{"style":142},[2418],{"type":49,"value":1546},{"type":43,"tag":129,"props":2420,"children":2421},{"style":142},[2422],{"type":49,"value":2336},{"type":43,"tag":129,"props":2424,"children":2425},{"style":153},[2426],{"type":49,"value":509},{"type":43,"tag":129,"props":2428,"children":2429},{"style":142},[2430],{"type":49,"value":2431},"D0A04PB2QBW",{"type":43,"tag":129,"props":2433,"children":2434},{"style":153},[2435],{"type":49,"value":354},{"type":43,"tag":129,"props":2437,"children":2438},{"style":142},[2439],{"type":49,"value":1404},{"type":43,"tag":129,"props":2441,"children":2442},{"style":153},[2443],{"type":49,"value":509},{"type":43,"tag":129,"props":2445,"children":2446},{"style":142},[2447],{"type":49,"value":1413},{"type":43,"tag":129,"props":2449,"children":2450},{"style":153},[2451],{"type":49,"value":354},{"type":43,"tag":129,"props":2453,"children":2454},{"style":142},[2455],{"type":49,"value":1422},{"type":43,"tag":129,"props":2457,"children":2458},{"style":153},[2459],{"type":49,"value":509},{"type":43,"tag":129,"props":2461,"children":2462},{"style":142},[2463],{"type":49,"value":1431},{"type":43,"tag":129,"props":2465,"children":2466},{"style":153},[2467],{"type":49,"value":519},{"type":43,"tag":58,"props":2469,"children":2470},{},[2471,2473,2478,2480,2486],{"type":49,"value":2472},"To make a specific message appear unread, set ",{"type":43,"tag":52,"props":2474,"children":2476},{"className":2475},[],[2477],{"type":49,"value":1350},{"type":49,"value":2479}," to just before it (subtract ",{"type":43,"tag":52,"props":2481,"children":2483},{"className":2482},[],[2484],{"type":49,"value":2485},"0.000001",{"type":49,"value":2487},"). This moves the read cursor so that message and everything after it appear as new:",{"type":43,"tag":118,"props":2489,"children":2491},{"className":120,"code":2490,"language":122,"meta":123,"style":123},"agent-slack channel mark \"general\" --workspace \"myteam\" --ts \"1770165109.628378\"\n",[2492],{"type":43,"tag":52,"props":2493,"children":2494},{"__ignoreMap":123},[2495],{"type":43,"tag":129,"props":2496,"children":2497},{"class":131,"line":132},[2498,2502,2506,2510,2514,2518,2522,2526,2530,2534,2538,2542,2546,2551],{"type":43,"tag":129,"props":2499,"children":2500},{"style":136},[2501],{"type":49,"value":4},{"type":43,"tag":129,"props":2503,"children":2504},{"style":142},[2505],{"type":49,"value":1546},{"type":43,"tag":129,"props":2507,"children":2508},{"style":142},[2509],{"type":49,"value":2336},{"type":43,"tag":129,"props":2511,"children":2512},{"style":153},[2513],{"type":49,"value":509},{"type":43,"tag":129,"props":2515,"children":2516},{"style":142},[2517],{"type":49,"value":604},{"type":43,"tag":129,"props":2519,"children":2520},{"style":153},[2521],{"type":49,"value":354},{"type":43,"tag":129,"props":2523,"children":2524},{"style":142},[2525],{"type":49,"value":1404},{"type":43,"tag":129,"props":2527,"children":2528},{"style":153},[2529],{"type":49,"value":509},{"type":43,"tag":129,"props":2531,"children":2532},{"style":142},[2533],{"type":49,"value":1413},{"type":43,"tag":129,"props":2535,"children":2536},{"style":153},[2537],{"type":49,"value":354},{"type":43,"tag":129,"props":2539,"children":2540},{"style":142},[2541],{"type":49,"value":1422},{"type":43,"tag":129,"props":2543,"children":2544},{"style":153},[2545],{"type":49,"value":509},{"type":43,"tag":129,"props":2547,"children":2548},{"style":142},[2549],{"type":49,"value":2550},"1770165109.628378",{"type":43,"tag":129,"props":2552,"children":2553},{"style":153},[2554],{"type":49,"value":519},{"type":43,"tag":85,"props":2556,"children":2558},{"id":2557},"workflows",[2559],{"type":49,"value":2560},"Workflows",{"type":43,"tag":58,"props":2562,"children":2563},{},[2564],{"type":49,"value":2565},"Discover and run Slack workflows bookmarked in channels:",{"type":43,"tag":118,"props":2567,"children":2569},{"className":120,"code":2568,"language":122,"meta":123,"style":123},"# List workflows in a channel\nagent-slack workflow list \"#ops\"\n\n# Preview trigger metadata (no side effects)\nagent-slack workflow preview \"Ft123ABC\"\n\n# Get workflow definition including form fields and steps\nagent-slack workflow get \"Ft123ABC\"\nagent-slack workflow get \"Wf456DEF\"\n\n# Trip a workflow trigger\nagent-slack workflow run \"Ft123ABC\" --channel \"#ops\"\n",[2570],{"type":43,"tag":52,"props":2571,"children":2572},{"__ignoreMap":123},[2573,2581,2610,2617,2625,2654,2661,2669,2696,2724,2731,2739],{"type":43,"tag":129,"props":2574,"children":2575},{"class":131,"line":132},[2576],{"type":43,"tag":129,"props":2577,"children":2578},{"style":243},[2579],{"type":49,"value":2580},"# List workflows in a channel\n",{"type":43,"tag":129,"props":2582,"children":2583},{"class":131,"line":249},[2584,2588,2593,2597,2601,2606],{"type":43,"tag":129,"props":2585,"children":2586},{"style":136},[2587],{"type":49,"value":4},{"type":43,"tag":129,"props":2589,"children":2590},{"style":142},[2591],{"type":49,"value":2592}," workflow",{"type":43,"tag":129,"props":2594,"children":2595},{"style":142},[2596],{"type":49,"value":550},{"type":43,"tag":129,"props":2598,"children":2599},{"style":153},[2600],{"type":49,"value":509},{"type":43,"tag":129,"props":2602,"children":2603},{"style":142},[2604],{"type":49,"value":2605},"#ops",{"type":43,"tag":129,"props":2607,"children":2608},{"style":153},[2609],{"type":49,"value":519},{"type":43,"tag":129,"props":2611,"children":2612},{"class":131,"line":266},[2613],{"type":43,"tag":129,"props":2614,"children":2615},{"emptyLinePlaceholder":1176},[2616],{"type":49,"value":1179},{"type":43,"tag":129,"props":2618,"children":2619},{"class":131,"line":722},[2620],{"type":43,"tag":129,"props":2621,"children":2622},{"style":243},[2623],{"type":49,"value":2624},"# Preview trigger metadata (no side effects)\n",{"type":43,"tag":129,"props":2626,"children":2627},{"class":131,"line":1172},[2628,2632,2636,2641,2645,2650],{"type":43,"tag":129,"props":2629,"children":2630},{"style":136},[2631],{"type":49,"value":4},{"type":43,"tag":129,"props":2633,"children":2634},{"style":142},[2635],{"type":49,"value":2592},{"type":43,"tag":129,"props":2637,"children":2638},{"style":142},[2639],{"type":49,"value":2640}," preview",{"type":43,"tag":129,"props":2642,"children":2643},{"style":153},[2644],{"type":49,"value":509},{"type":43,"tag":129,"props":2646,"children":2647},{"style":142},[2648],{"type":49,"value":2649},"Ft123ABC",{"type":43,"tag":129,"props":2651,"children":2652},{"style":153},[2653],{"type":49,"value":519},{"type":43,"tag":129,"props":2655,"children":2656},{"class":131,"line":1182},[2657],{"type":43,"tag":129,"props":2658,"children":2659},{"emptyLinePlaceholder":1176},[2660],{"type":49,"value":1179},{"type":43,"tag":129,"props":2662,"children":2663},{"class":131,"line":1219},[2664],{"type":43,"tag":129,"props":2665,"children":2666},{"style":243},[2667],{"type":49,"value":2668},"# Get workflow definition including form fields and steps\n",{"type":43,"tag":129,"props":2670,"children":2671},{"class":131,"line":1228},[2672,2676,2680,2684,2688,2692],{"type":43,"tag":129,"props":2673,"children":2674},{"style":136},[2675],{"type":49,"value":4},{"type":43,"tag":129,"props":2677,"children":2678},{"style":142},[2679],{"type":49,"value":2592},{"type":43,"tag":129,"props":2681,"children":2682},{"style":142},[2683],{"type":49,"value":504},{"type":43,"tag":129,"props":2685,"children":2686},{"style":153},[2687],{"type":49,"value":509},{"type":43,"tag":129,"props":2689,"children":2690},{"style":142},[2691],{"type":49,"value":2649},{"type":43,"tag":129,"props":2693,"children":2694},{"style":153},[2695],{"type":49,"value":519},{"type":43,"tag":129,"props":2697,"children":2698},{"class":131,"line":1237},[2699,2703,2707,2711,2715,2720],{"type":43,"tag":129,"props":2700,"children":2701},{"style":136},[2702],{"type":49,"value":4},{"type":43,"tag":129,"props":2704,"children":2705},{"style":142},[2706],{"type":49,"value":2592},{"type":43,"tag":129,"props":2708,"children":2709},{"style":142},[2710],{"type":49,"value":504},{"type":43,"tag":129,"props":2712,"children":2713},{"style":153},[2714],{"type":49,"value":509},{"type":43,"tag":129,"props":2716,"children":2717},{"style":142},[2718],{"type":49,"value":2719},"Wf456DEF",{"type":43,"tag":129,"props":2721,"children":2722},{"style":153},[2723],{"type":49,"value":519},{"type":43,"tag":129,"props":2725,"children":2726},{"class":131,"line":1250},[2727],{"type":43,"tag":129,"props":2728,"children":2729},{"emptyLinePlaceholder":1176},[2730],{"type":49,"value":1179},{"type":43,"tag":129,"props":2732,"children":2733},{"class":131,"line":1297},[2734],{"type":43,"tag":129,"props":2735,"children":2736},{"style":243},[2737],{"type":49,"value":2738},"# Trip a workflow trigger\n",{"type":43,"tag":129,"props":2740,"children":2742},{"class":131,"line":2741},12,[2743,2747,2751,2756,2760,2764,2768,2772,2776,2780],{"type":43,"tag":129,"props":2744,"children":2745},{"style":136},[2746],{"type":49,"value":4},{"type":43,"tag":129,"props":2748,"children":2749},{"style":142},[2750],{"type":49,"value":2592},{"type":43,"tag":129,"props":2752,"children":2753},{"style":142},[2754],{"type":49,"value":2755}," run",{"type":43,"tag":129,"props":2757,"children":2758},{"style":153},[2759],{"type":49,"value":509},{"type":43,"tag":129,"props":2761,"children":2762},{"style":142},[2763],{"type":49,"value":2649},{"type":43,"tag":129,"props":2765,"children":2766},{"style":153},[2767],{"type":49,"value":354},{"type":43,"tag":129,"props":2769,"children":2770},{"style":142},[2771],{"type":49,"value":1714},{"type":43,"tag":129,"props":2773,"children":2774},{"style":153},[2775],{"type":49,"value":509},{"type":43,"tag":129,"props":2777,"children":2778},{"style":142},[2779],{"type":49,"value":2605},{"type":43,"tag":129,"props":2781,"children":2782},{"style":153},[2783],{"type":49,"value":519},{"type":43,"tag":85,"props":2785,"children":2787},{"id":2786},"canvas-users",[2788],{"type":49,"value":2789},"Canvas + Users",{"type":43,"tag":118,"props":2791,"children":2793},{"className":120,"code":2792,"language":122,"meta":123,"style":123},"agent-slack canvas get \"https:\u002F\u002Fworkspace.slack.com\u002Fdocs\u002FT123\u002FF456\"\nagent-slack user list --workspace \"https:\u002F\u002Fworkspace.slack.com\" --limit 100\nagent-slack user get \"@alice\" --workspace \"https:\u002F\u002Fworkspace.slack.com\"\n",[2794],{"type":43,"tag":52,"props":2795,"children":2796},{"__ignoreMap":123},[2797,2826,2866],{"type":43,"tag":129,"props":2798,"children":2799},{"class":131,"line":132},[2800,2804,2809,2813,2817,2822],{"type":43,"tag":129,"props":2801,"children":2802},{"style":136},[2803],{"type":49,"value":4},{"type":43,"tag":129,"props":2805,"children":2806},{"style":142},[2807],{"type":49,"value":2808}," canvas",{"type":43,"tag":129,"props":2810,"children":2811},{"style":142},[2812],{"type":49,"value":504},{"type":43,"tag":129,"props":2814,"children":2815},{"style":153},[2816],{"type":49,"value":509},{"type":43,"tag":129,"props":2818,"children":2819},{"style":142},[2820],{"type":49,"value":2821},"https:\u002F\u002Fworkspace.slack.com\u002Fdocs\u002FT123\u002FF456",{"type":43,"tag":129,"props":2823,"children":2824},{"style":153},[2825],{"type":49,"value":519},{"type":43,"tag":129,"props":2827,"children":2828},{"class":131,"line":249},[2829,2833,2837,2841,2845,2849,2854,2858,2862],{"type":43,"tag":129,"props":2830,"children":2831},{"style":136},[2832],{"type":49,"value":4},{"type":43,"tag":129,"props":2834,"children":2835},{"style":142},[2836],{"type":49,"value":2257},{"type":43,"tag":129,"props":2838,"children":2839},{"style":142},[2840],{"type":49,"value":550},{"type":43,"tag":129,"props":2842,"children":2843},{"style":142},[2844],{"type":49,"value":1404},{"type":43,"tag":129,"props":2846,"children":2847},{"style":153},[2848],{"type":49,"value":509},{"type":43,"tag":129,"props":2850,"children":2851},{"style":142},[2852],{"type":49,"value":2853},"https:\u002F\u002Fworkspace.slack.com",{"type":43,"tag":129,"props":2855,"children":2856},{"style":153},[2857],{"type":49,"value":354},{"type":43,"tag":129,"props":2859,"children":2860},{"style":142},[2861],{"type":49,"value":613},{"type":43,"tag":129,"props":2863,"children":2864},{"style":616},[2865],{"type":49,"value":1622},{"type":43,"tag":129,"props":2867,"children":2868},{"class":131,"line":266},[2869,2873,2877,2881,2885,2889,2893,2897,2901,2905],{"type":43,"tag":129,"props":2870,"children":2871},{"style":136},[2872],{"type":49,"value":4},{"type":43,"tag":129,"props":2874,"children":2875},{"style":142},[2876],{"type":49,"value":2257},{"type":43,"tag":129,"props":2878,"children":2879},{"style":142},[2880],{"type":49,"value":504},{"type":43,"tag":129,"props":2882,"children":2883},{"style":153},[2884],{"type":49,"value":509},{"type":43,"tag":129,"props":2886,"children":2887},{"style":142},[2888],{"type":49,"value":1580},{"type":43,"tag":129,"props":2890,"children":2891},{"style":153},[2892],{"type":49,"value":354},{"type":43,"tag":129,"props":2894,"children":2895},{"style":142},[2896],{"type":49,"value":1404},{"type":43,"tag":129,"props":2898,"children":2899},{"style":153},[2900],{"type":49,"value":509},{"type":43,"tag":129,"props":2902,"children":2903},{"style":142},[2904],{"type":49,"value":2853},{"type":43,"tag":129,"props":2906,"children":2907},{"style":153},[2908],{"type":49,"value":519},{"type":43,"tag":85,"props":2910,"children":2912},{"id":2911},"references",[2913],{"type":49,"value":2914},"References",{"type":43,"tag":1508,"props":2916,"children":2917},{},[2918,2923,2936],{"type":43,"tag":476,"props":2919,"children":2920},{},[2921],{"type":49,"value":2922},"references\u002Fcommands.md: full command map + all flags",{"type":43,"tag":476,"props":2924,"children":2925},{},[2926,2928,2934],{"type":49,"value":2927},"references\u002Ftargets.md: URL vs ",{"type":43,"tag":52,"props":2929,"children":2931},{"className":2930},[],[2932],{"type":49,"value":2933},"#channel",{"type":49,"value":2935}," targeting rules",{"type":43,"tag":476,"props":2937,"children":2938},{},[2939],{"type":49,"value":2940},"references\u002Foutput.md: JSON output shapes + download paths",{"type":43,"tag":2942,"props":2943,"children":2944},"style",{},[2945],{"type":49,"value":2946},"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":2948,"total":3105},[2949,2965,2980,2992,3004,3018,3028,3039,3051,3067,3078,3090],{"slug":2950,"name":2950,"fn":2951,"description":2952,"org":2953,"tags":2954,"stars":2962,"repoUrl":2963,"updatedAt":2964},"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},[2955,2958,2959],{"name":2956,"slug":2957,"type":16},"Agents","agents",{"name":14,"slug":15,"type":16},{"name":2960,"slug":2961,"type":16},"GitHub","github",2831,"https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fletta-code","2026-07-13T06:22:58.45767",{"slug":2966,"name":2967,"fn":2968,"description":2969,"org":2970,"tags":2971,"stars":2962,"repoUrl":2963,"updatedAt":2979},"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},[2972,2973,2976],{"name":2956,"slug":2957,"type":16},{"name":2974,"slug":2975,"type":16},"AI Context","ai-context",{"name":2977,"slug":2978,"type":16},"Debugging","debugging","2026-07-13T06:22:50.151002",{"slug":2981,"name":2981,"fn":2982,"description":2983,"org":2984,"tags":2985,"stars":2962,"repoUrl":2963,"updatedAt":2991},"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},[2986,2987,2988],{"name":2956,"slug":2957,"type":16},{"name":14,"slug":15,"type":16},{"name":2989,"slug":2990,"type":16},"MCP","mcp","2026-07-13T06:23:37.646079",{"slug":2993,"name":2993,"fn":2994,"description":2995,"org":2996,"tags":2997,"stars":2962,"repoUrl":2963,"updatedAt":3003},"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},[2998,2999,3000],{"name":2956,"slug":2957,"type":16},{"name":14,"slug":15,"type":16},{"name":3001,"slug":3002,"type":16},"Coding","coding","2026-07-23T05:42:38.133565",{"slug":3005,"name":3005,"fn":3006,"description":3007,"org":3008,"tags":3009,"stars":2962,"repoUrl":2963,"updatedAt":3017},"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},[3010,3011,3014],{"name":2956,"slug":2957,"type":16},{"name":3012,"slug":3013,"type":16},"Documentation","documentation",{"name":3015,"slug":3016,"type":16},"Plugin Development","plugin-development","2026-07-13T06:22:56.998659",{"slug":3019,"name":3019,"fn":3020,"description":3021,"org":3022,"tags":3023,"stars":2962,"repoUrl":2963,"updatedAt":3027},"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},[3024,3025,3026],{"name":2956,"slug":2957,"type":16},{"name":14,"slug":15,"type":16},{"name":18,"slug":19,"type":16},"2026-07-13T06:23:18.266798",{"slug":3029,"name":3029,"fn":3030,"description":3031,"org":3032,"tags":3033,"stars":2962,"repoUrl":2963,"updatedAt":3038},"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},[3034,3035],{"name":18,"slug":19,"type":16},{"name":3036,"slug":3037,"type":16},"Engineering","engineering","2026-07-13T06:23:27.465985",{"slug":3040,"name":3040,"fn":3041,"description":3042,"org":3043,"tags":3044,"stars":2962,"repoUrl":2963,"updatedAt":3050},"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},[3045,3046,3047],{"name":2956,"slug":2957,"type":16},{"name":3001,"slug":3002,"type":16},{"name":3048,"slug":3049,"type":16},"Multi-Agent","multi-agent","2026-07-26T05:46:56.388845",{"slug":3052,"name":3052,"fn":3053,"description":3054,"org":3055,"tags":3056,"stars":2962,"repoUrl":2963,"updatedAt":3066},"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},[3057,3060,3063],{"name":3058,"slug":3059,"type":16},"Configuration","configuration",{"name":3061,"slug":3062,"type":16},"Desktop","desktop",{"name":3064,"slug":3065,"type":16},"Themes","themes","2026-07-13T06:23:41.407811",{"slug":3068,"name":3068,"fn":3069,"description":3070,"org":3071,"tags":3072,"stars":2962,"repoUrl":2963,"updatedAt":3077},"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},[3073,3074],{"name":2956,"slug":2957,"type":16},{"name":3075,"slug":3076,"type":16},"Management","management","2026-07-16T06:02:17.297841",{"slug":3079,"name":3079,"fn":3080,"description":3081,"org":3082,"tags":3083,"stars":2962,"repoUrl":2963,"updatedAt":3089},"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},[3084,3085,3088],{"name":2956,"slug":2957,"type":16},{"name":3086,"slug":3087,"type":16},"AI Infrastructure","ai-infrastructure",{"name":3058,"slug":3059,"type":16},"2026-07-13T06:23:08.838181",{"slug":3091,"name":3091,"fn":3092,"description":3093,"org":3094,"tags":3095,"stars":2962,"repoUrl":2963,"updatedAt":3104},"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},[3096,3099,3102],{"name":3097,"slug":3098,"type":16},"Creative","creative",{"name":3100,"slug":3101,"type":16},"Graphics","graphics",{"name":3103,"slug":3091,"type":16},"Image Generation","2026-07-13T06:23:06.189403",69,{"items":3107,"total":3211},[3108,3122,3129,3148,3161,3182,3192],{"slug":3109,"name":3109,"fn":3110,"description":3111,"org":3112,"tags":3113,"stars":26,"repoUrl":27,"updatedAt":3121},"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},[3114,3117,3118],{"name":3115,"slug":3116,"type":16},"Authentication","authentication",{"name":18,"slug":19,"type":16},{"name":3119,"slug":3120,"type":16},"Security","security","2026-07-13T06:24:39.504387",{"slug":4,"name":4,"fn":5,"description":6,"org":3123,"tags":3124,"stars":26,"repoUrl":27,"updatedAt":28},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3125,3126,3127,3128],{"name":14,"slug":15,"type":16},{"name":18,"slug":19,"type":16},{"name":21,"slug":22,"type":16},{"name":24,"slug":25,"type":16},{"slug":3130,"name":3130,"fn":3131,"description":3132,"org":3133,"tags":3134,"stars":26,"repoUrl":27,"updatedAt":3147},"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},[3135,3138,3141,3144],{"name":3136,"slug":3137,"type":16},"Communications","communications",{"name":3139,"slug":3140,"type":16},"LLM","llm",{"name":3142,"slug":3143,"type":16},"Research","research",{"name":3145,"slug":3146,"type":16},"Summarization","summarization","2026-07-13T06:24:20.520223",{"slug":3149,"name":3149,"fn":3150,"description":3151,"org":3152,"tags":3153,"stars":26,"repoUrl":27,"updatedAt":3160},"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},[3154,3155,3158,3159],{"name":2956,"slug":2957,"type":16},{"name":3156,"slug":3157,"type":16},"API Development","api-development",{"name":21,"slug":22,"type":16},{"name":24,"slug":25,"type":16},"2026-07-13T06:25:55.843495",{"slug":3162,"name":3162,"fn":3163,"description":3164,"org":3165,"tags":3166,"stars":26,"repoUrl":27,"updatedAt":3181},"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},[3167,3169,3172,3175,3178],{"name":3168,"slug":3162,"type":16},"Datadog",{"name":3170,"slug":3171,"type":16},"Logs","logs",{"name":3173,"slug":3174,"type":16},"Metrics","metrics",{"name":3176,"slug":3177,"type":16},"Monitoring","monitoring",{"name":3179,"slug":3180,"type":16},"Observability","observability","2026-07-13T06:24:27.990605",{"slug":3183,"name":3183,"fn":3184,"description":3185,"org":3186,"tags":3187,"stars":26,"repoUrl":27,"updatedAt":3191},"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},[3188,3189,3190],{"name":14,"slug":15,"type":16},{"name":18,"slug":19,"type":16},{"name":21,"slug":22,"type":16},"2026-07-13T06:24:26.62387",{"slug":3193,"name":3193,"fn":3194,"description":3195,"org":3196,"tags":3197,"stars":26,"repoUrl":27,"updatedAt":3210},"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},[3198,3201,3204,3207],{"name":3199,"slug":3200,"type":16},"Documents","documents",{"name":3202,"slug":3203,"type":16},"DOCX","docx",{"name":3205,"slug":3206,"type":16},"Office","office",{"name":3208,"slug":3209,"type":16},"Word","word","2026-07-13T06:23:44.299568",45]