[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-letta-social-cli":3,"mdc-a0z9qu-key":37,"related-org-letta-social-cli":2592,"related-repo-letta-social-cli":2751},{"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},"social-cli","manage social media posts and feeds","Agent-optimized CLI for Bluesky (ATProto) and X (Twitter). YAML in, YAML out, exit codes for automation. Use when the task involves posting, replying, reading feeds, searching, annotating URLs, or running a sync\u002Fcheck\u002Fdispatch agent loop across social platforms.",{"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},"Social Media","social-media",{"name":24,"slug":25,"type":16},"Messaging","messaging",127,"https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fskills","2026-07-13T06:24:51.005616",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\u002Fsocial-cli","---\nname: social-cli\ndescription: Agent-optimized CLI for Bluesky (ATProto) and X (Twitter). YAML in, YAML out, exit codes for automation. Use when the task involves posting, replying, reading feeds, searching, annotating URLs, or running a sync\u002Fcheck\u002Fdispatch agent loop across social platforms.\n---\n\n# social-cli\n\nAgent-optimized social CLI. Bluesky + X. YAML in, YAML out, exit codes for automation.\n\nRepo: https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fsocial-cli\n\n## Setup\n\n### 1. Install\n\n```bash\ngit clone https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fsocial-cli.git\ncd social-cli\npnpm install\npnpm build\n```\n\nLink the binary globally or invoke via `node dist\u002Fcli.js` \u002F `pnpm start` from the repo directory.\n\n### 2. Credentials\n\nCreate a `.env` in the working directory where you run `social-cli`:\n\n```bash\n# Bluesky \u002F ATProto\nATPROTO_HANDLE=you.bsky.social\nATPROTO_APP_PASSWORD=xxxx-xxxx-xxxx-xxxx\nATPROTO_PDS=https:\u002F\u002Fbsky.social          # optional, defaults to bsky.social\n\n# X \u002F Twitter (OAuth 1.0a)\nX_API_KEY=...\nX_API_SECRET=...\nX_ACCESS_TOKEN=...\nX_ACCESS_TOKEN_SECRET=...\nX_BEARER_TOKEN=...                       # optional, for app-only endpoints\n```\n\nOnly credentials for platforms you actually use are required.\n\n### 3. Verify\n\n```bash\nsocial-cli whoami\nsocial-cli rate-limits\n```\n\n## Agent loop (sync → check → dispatch)\n\nThe canonical automation workflow. Each phase reads\u002Fwrites YAML files in the working directory.\n\n```bash\nsocial-cli sync                    # pull notifications → inbox-{platform}.yaml\nsocial-cli check || exit 0         # anything actionable? exit 1 = nothing to do\n# read inbox, decide, write outbox-{platform}.yaml\nsocial-cli dispatch                # execute outbox, archive results\n```\n\n- `sync`: deduplicates against `sent_ledger-{platform}.yaml` and caps inbox size.\n- `check`: exits 0 if inbox has actionable items, 1 otherwise. Wrap with `|| exit 0` in cron loops.\n- `dispatch`: executes the outbox atomically. Writes `dispatch_result-{platform}.yaml` and appends to `sent_ledger-{platform}.yaml` for replay protection.\n\n## Quick commands\n\n```bash\n# Post \u002F reply \u002F thread\nsocial-cli post \"Hello world\" -p bsky\nsocial-cli reply \"Thanks\" --id \"at:\u002F\u002Fdid:plc:...\u002Fapp.bsky.feed.post\u002Fabc\" -p bsky\nsocial-cli thread \"p1\" \"p2\" \"p3\" -p bsky\n\n# Engagement\nsocial-cli like \"at:\u002F\u002F...\" -p bsky\nsocial-cli delete \"at:\u002F\u002F...\" -p bsky\nsocial-cli follow \"handle.bsky.social\" -p bsky\n\n# Reading\nsocial-cli search \"query\" -p bsky -n 10              # → stdout YAML\nsocial-cli feed -p bsky -n 20                        # → feed.yaml (or -o - for stdout)\nsocial-cli feed --feed \"at:\u002F\u002Fdid:...\u002Fapp.bsky.feed.generator\u002Fname\" -n 10  # custom feed\nsocial-cli profile \"handle.bsky.social\" -p bsky\nsocial-cli whoami\nsocial-cli rate-limits\n```\n\n## Annotations (Bluesky only)\n\nUses the `at.margin.note` lexicon (W3C Web Annotation model). Annotations work on any URL, not just ATProto posts. They appear in margin.at and Semble.\n\n```bash\n# Annotate a web page\nsocial-cli annotate \"Note about this article\" --target https:\u002F\u002Fexample.com\n\n# Anchor to an exact passage\nsocial-cli annotate \"Key insight\" --target https:\u002F\u002Fexample.com \\\n  --quote \"exact passage from the page\" --motivation highlighting\n```\n\nMotivations: `commenting`, `highlighting`, `questioning`, `describing`, `linking`.\n\n## Inbox format (`inbox-{platform}.yaml`)\n\n```yaml\nnotifications:\n  - id: \"at:\u002F\u002Fdid:plc:xxx\u002Fapp.bsky.feed.post\u002Fabc\"\n    platform: bsky\n    type: mention          # mention, reply, like, follow, repost, quote\n    author: someone.bsky.social\n    authorId: \"did:plc:xxx\"\n    postId: \"at:\u002F\u002F...\"\n    text: \"Hey, what do you think?\"\n    timestamp: \"2026-03-25T12:00:00Z\"\n    parentPostId: \"at:\u002F\u002F...\"     # for replies\n    parentPostText: \"...\"        # context\n    rootPostId: \"at:\u002F\u002F...\"       # thread root\n    rootPostText: \"...\"\n```\n\n## Outbox format (`outbox-{platform}.yaml`)\n\nWrite decisions as a `dispatch` list. Each entry is a single action.\n\n```yaml\ndispatch:\n  - reply:\n      platform: bsky\n      id: \"at:\u002F\u002Fdid:plc:xxx\u002Fapp.bsky.feed.post\u002Fabc\"\n      text: \"Thanks for the mention\"\n\n  - post:\n      text: \"Hello from my agent\"\n      platforms: [bsky, x]          # post to both\n\n  - thread:\n      platform: bsky\n      posts:\n        - \"Thread post 1\"\n        - \"Thread post 2\"\n\n  - like:\n      platform: bsky\n      id: \"at:\u002F\u002F...\"\n\n  - annotate:\n      platform: bsky\n      id: \"https:\u002F\u002Fexample.com\u002Farticle\"\n      text: \"Key observation\"\n      motivation: commenting\n      quote: \"exact text to anchor to\"\n\n  - ignore:\n      id: \"notif_003\"\n      reason: \"spam\"\n```\n\n## Dispatch results and exit codes\n\n`dispatch_result-{platform}.yaml` is written after every dispatch. Exit codes:\n\n| Code | Meaning |\n|------|---------|\n| 0 | All actions succeeded |\n| 1 | Invalid outbox (schema error, missing creds) |\n| 2 | Partial failure (some succeeded, some failed) |\n\nThread failures include a `resumeFrom` field with the index and remaining posts so you can retry just the tail.\n\n## Character limits\n\n| Platform | Limit |\n|----------|-------|\n| Bluesky | 300 chars |\n| X | 280 chars |\n\nThe CLI rejects over-limit posts before hitting the API.\n\n## Platform differences\n\n| Feature | Bluesky | X |\n|---------|---------|---|\n| Annotations (`at.margin.note`) | Yes | No |\n| Search | Yes | Yes |\n| Feed | Yes (custom feeds) | Yes (home\u002Fuser) |\n| Threads | Yes | Yes |\n| Notifications | mention, reply, like, follow, repost, quote | mentions only |\n| Quote post context | Yes | Yes |\n\n## Resilience\n\n- Retries 3x with exponential backoff on 429s, 5xx, and network errors. Respects `Retry-After`.\n- Bluesky session auto-refreshes on token expiry.\n- Atomic file writes (tmp + rename) — no partial inbox\u002Foutbox corruption.\n- Thread resume on partial failure via `resumeFrom`.\n- `sent_ledger-{platform}.yaml` prevents duplicate dispatch across runs.\n\n## Working directory layout\n\nEverything is scoped to your current working directory, so you can run multiple agents with isolated state:\n\n```\n.\u002F\n├── .env\n├── inbox-bsky.yaml          # sync output\n├── inbox-x.yaml\n├── outbox-bsky.yaml         # your decisions\n├── outbox-x.yaml\n├── dispatch_result-bsky.yaml  # last dispatch outcome\n├── dispatch_result-x.yaml\n├── sent_ledger-bsky.yaml      # replay protection\n├── sent_ledger-x.yaml\n└── feed.yaml                  # optional feed snapshots\n```\n\n## References\n\n- `references\u002Fcommands.md`: full command map with all flags\n- `references\u002Foutbox-schema.md`: complete outbox YAML schema\n- `references\u002Fagent-loop.md`: patterns for cron\u002Fsystemd automation loops\n",{"data":38,"body":39},{"name":4,"description":6},{"type":40,"children":41},"root",[42,49,55,68,75,82,159,180,186,206,392,397,403,434,440,445,527,596,602,1077,1083,1096,1230,1272,1286,1605,1618,1630,2177,2183,2193,2260,2273,2279,2327,2332,2338,2471,2477,2523,2529,2534,2544,2550,2586],{"type":43,"tag":44,"props":45,"children":46},"element","h1",{"id":4},[47],{"type":48,"value":4},"text",{"type":43,"tag":50,"props":51,"children":52},"p",{},[53],{"type":48,"value":54},"Agent-optimized social CLI. Bluesky + X. YAML in, YAML out, exit codes for automation.",{"type":43,"tag":50,"props":56,"children":57},{},[58,60],{"type":48,"value":59},"Repo: ",{"type":43,"tag":61,"props":62,"children":66},"a",{"href":63,"rel":64},"https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fsocial-cli",[65],"nofollow",[67],{"type":48,"value":63},{"type":43,"tag":69,"props":70,"children":72},"h2",{"id":71},"setup",[73],{"type":48,"value":74},"Setup",{"type":43,"tag":76,"props":77,"children":79},"h3",{"id":78},"_1-install",[80],{"type":48,"value":81},"1. Install",{"type":43,"tag":83,"props":84,"children":89},"pre",{"className":85,"code":86,"language":87,"meta":88,"style":88},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","git clone https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fsocial-cli.git\ncd social-cli\npnpm install\npnpm build\n","bash","",[90],{"type":43,"tag":91,"props":92,"children":93},"code",{"__ignoreMap":88},[94,117,132,146],{"type":43,"tag":95,"props":96,"children":99},"span",{"class":97,"line":98},"line",1,[100,106,112],{"type":43,"tag":95,"props":101,"children":103},{"style":102},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[104],{"type":48,"value":105},"git",{"type":43,"tag":95,"props":107,"children":109},{"style":108},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[110],{"type":48,"value":111}," clone",{"type":43,"tag":95,"props":113,"children":114},{"style":108},[115],{"type":48,"value":116}," https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fsocial-cli.git\n",{"type":43,"tag":95,"props":118,"children":120},{"class":97,"line":119},2,[121,127],{"type":43,"tag":95,"props":122,"children":124},{"style":123},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[125],{"type":48,"value":126},"cd",{"type":43,"tag":95,"props":128,"children":129},{"style":108},[130],{"type":48,"value":131}," social-cli\n",{"type":43,"tag":95,"props":133,"children":135},{"class":97,"line":134},3,[136,141],{"type":43,"tag":95,"props":137,"children":138},{"style":102},[139],{"type":48,"value":140},"pnpm",{"type":43,"tag":95,"props":142,"children":143},{"style":108},[144],{"type":48,"value":145}," install\n",{"type":43,"tag":95,"props":147,"children":149},{"class":97,"line":148},4,[150,154],{"type":43,"tag":95,"props":151,"children":152},{"style":102},[153],{"type":48,"value":140},{"type":43,"tag":95,"props":155,"children":156},{"style":108},[157],{"type":48,"value":158}," build\n",{"type":43,"tag":50,"props":160,"children":161},{},[162,164,170,172,178],{"type":48,"value":163},"Link the binary globally or invoke via ",{"type":43,"tag":91,"props":165,"children":167},{"className":166},[],[168],{"type":48,"value":169},"node dist\u002Fcli.js",{"type":48,"value":171}," \u002F ",{"type":43,"tag":91,"props":173,"children":175},{"className":174},[],[176],{"type":48,"value":177},"pnpm start",{"type":48,"value":179}," from the repo directory.",{"type":43,"tag":76,"props":181,"children":183},{"id":182},"_2-credentials",[184],{"type":48,"value":185},"2. Credentials",{"type":43,"tag":50,"props":187,"children":188},{},[189,191,197,199,204],{"type":48,"value":190},"Create a ",{"type":43,"tag":91,"props":192,"children":194},{"className":193},[],[195],{"type":48,"value":196},".env",{"type":48,"value":198}," in the working directory where you run ",{"type":43,"tag":91,"props":200,"children":202},{"className":201},[],[203],{"type":48,"value":4},{"type":48,"value":205},":",{"type":43,"tag":83,"props":207,"children":209},{"className":85,"code":208,"language":87,"meta":88,"style":88},"# Bluesky \u002F ATProto\nATPROTO_HANDLE=you.bsky.social\nATPROTO_APP_PASSWORD=xxxx-xxxx-xxxx-xxxx\nATPROTO_PDS=https:\u002F\u002Fbsky.social          # optional, defaults to bsky.social\n\n# X \u002F Twitter (OAuth 1.0a)\nX_API_KEY=...\nX_API_SECRET=...\nX_ACCESS_TOKEN=...\nX_ACCESS_TOKEN_SECRET=...\nX_BEARER_TOKEN=...                       # optional, for app-only endpoints\n",[210],{"type":43,"tag":91,"props":211,"children":212},{"__ignoreMap":88},[213,222,242,259,281,291,300,318,335,352,369],{"type":43,"tag":95,"props":214,"children":215},{"class":97,"line":98},[216],{"type":43,"tag":95,"props":217,"children":219},{"style":218},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[220],{"type":48,"value":221},"# Bluesky \u002F ATProto\n",{"type":43,"tag":95,"props":223,"children":224},{"class":97,"line":119},[225,231,237],{"type":43,"tag":95,"props":226,"children":228},{"style":227},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[229],{"type":48,"value":230},"ATPROTO_HANDLE",{"type":43,"tag":95,"props":232,"children":234},{"style":233},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[235],{"type":48,"value":236},"=",{"type":43,"tag":95,"props":238,"children":239},{"style":108},[240],{"type":48,"value":241},"you.bsky.social\n",{"type":43,"tag":95,"props":243,"children":244},{"class":97,"line":134},[245,250,254],{"type":43,"tag":95,"props":246,"children":247},{"style":227},[248],{"type":48,"value":249},"ATPROTO_APP_PASSWORD",{"type":43,"tag":95,"props":251,"children":252},{"style":233},[253],{"type":48,"value":236},{"type":43,"tag":95,"props":255,"children":256},{"style":108},[257],{"type":48,"value":258},"xxxx-xxxx-xxxx-xxxx\n",{"type":43,"tag":95,"props":260,"children":261},{"class":97,"line":148},[262,267,271,276],{"type":43,"tag":95,"props":263,"children":264},{"style":227},[265],{"type":48,"value":266},"ATPROTO_PDS",{"type":43,"tag":95,"props":268,"children":269},{"style":233},[270],{"type":48,"value":236},{"type":43,"tag":95,"props":272,"children":273},{"style":108},[274],{"type":48,"value":275},"https:\u002F\u002Fbsky.social",{"type":43,"tag":95,"props":277,"children":278},{"style":218},[279],{"type":48,"value":280},"          # optional, defaults to bsky.social\n",{"type":43,"tag":95,"props":282,"children":284},{"class":97,"line":283},5,[285],{"type":43,"tag":95,"props":286,"children":288},{"emptyLinePlaceholder":287},true,[289],{"type":48,"value":290},"\n",{"type":43,"tag":95,"props":292,"children":294},{"class":97,"line":293},6,[295],{"type":43,"tag":95,"props":296,"children":297},{"style":218},[298],{"type":48,"value":299},"# X \u002F Twitter (OAuth 1.0a)\n",{"type":43,"tag":95,"props":301,"children":303},{"class":97,"line":302},7,[304,309,313],{"type":43,"tag":95,"props":305,"children":306},{"style":227},[307],{"type":48,"value":308},"X_API_KEY",{"type":43,"tag":95,"props":310,"children":311},{"style":233},[312],{"type":48,"value":236},{"type":43,"tag":95,"props":314,"children":315},{"style":108},[316],{"type":48,"value":317},"...\n",{"type":43,"tag":95,"props":319,"children":321},{"class":97,"line":320},8,[322,327,331],{"type":43,"tag":95,"props":323,"children":324},{"style":227},[325],{"type":48,"value":326},"X_API_SECRET",{"type":43,"tag":95,"props":328,"children":329},{"style":233},[330],{"type":48,"value":236},{"type":43,"tag":95,"props":332,"children":333},{"style":108},[334],{"type":48,"value":317},{"type":43,"tag":95,"props":336,"children":338},{"class":97,"line":337},9,[339,344,348],{"type":43,"tag":95,"props":340,"children":341},{"style":227},[342],{"type":48,"value":343},"X_ACCESS_TOKEN",{"type":43,"tag":95,"props":345,"children":346},{"style":233},[347],{"type":48,"value":236},{"type":43,"tag":95,"props":349,"children":350},{"style":108},[351],{"type":48,"value":317},{"type":43,"tag":95,"props":353,"children":355},{"class":97,"line":354},10,[356,361,365],{"type":43,"tag":95,"props":357,"children":358},{"style":227},[359],{"type":48,"value":360},"X_ACCESS_TOKEN_SECRET",{"type":43,"tag":95,"props":362,"children":363},{"style":233},[364],{"type":48,"value":236},{"type":43,"tag":95,"props":366,"children":367},{"style":108},[368],{"type":48,"value":317},{"type":43,"tag":95,"props":370,"children":372},{"class":97,"line":371},11,[373,378,382,387],{"type":43,"tag":95,"props":374,"children":375},{"style":227},[376],{"type":48,"value":377},"X_BEARER_TOKEN",{"type":43,"tag":95,"props":379,"children":380},{"style":233},[381],{"type":48,"value":236},{"type":43,"tag":95,"props":383,"children":384},{"style":108},[385],{"type":48,"value":386},"...",{"type":43,"tag":95,"props":388,"children":389},{"style":218},[390],{"type":48,"value":391},"                       # optional, for app-only endpoints\n",{"type":43,"tag":50,"props":393,"children":394},{},[395],{"type":48,"value":396},"Only credentials for platforms you actually use are required.",{"type":43,"tag":76,"props":398,"children":400},{"id":399},"_3-verify",[401],{"type":48,"value":402},"3. Verify",{"type":43,"tag":83,"props":404,"children":406},{"className":85,"code":405,"language":87,"meta":88,"style":88},"social-cli whoami\nsocial-cli rate-limits\n",[407],{"type":43,"tag":91,"props":408,"children":409},{"__ignoreMap":88},[410,422],{"type":43,"tag":95,"props":411,"children":412},{"class":97,"line":98},[413,417],{"type":43,"tag":95,"props":414,"children":415},{"style":102},[416],{"type":48,"value":4},{"type":43,"tag":95,"props":418,"children":419},{"style":108},[420],{"type":48,"value":421}," whoami\n",{"type":43,"tag":95,"props":423,"children":424},{"class":97,"line":119},[425,429],{"type":43,"tag":95,"props":426,"children":427},{"style":102},[428],{"type":48,"value":4},{"type":43,"tag":95,"props":430,"children":431},{"style":108},[432],{"type":48,"value":433}," rate-limits\n",{"type":43,"tag":69,"props":435,"children":437},{"id":436},"agent-loop-sync-check-dispatch",[438],{"type":48,"value":439},"Agent loop (sync → check → dispatch)",{"type":43,"tag":50,"props":441,"children":442},{},[443],{"type":48,"value":444},"The canonical automation workflow. Each phase reads\u002Fwrites YAML files in the working directory.",{"type":43,"tag":83,"props":446,"children":448},{"className":85,"code":447,"language":87,"meta":88,"style":88},"social-cli sync                    # pull notifications → inbox-{platform}.yaml\nsocial-cli check || exit 0         # anything actionable? exit 1 = nothing to do\n# read inbox, decide, write outbox-{platform}.yaml\nsocial-cli dispatch                # execute outbox, archive results\n",[449],{"type":43,"tag":91,"props":450,"children":451},{"__ignoreMap":88},[452,469,502,510],{"type":43,"tag":95,"props":453,"children":454},{"class":97,"line":98},[455,459,464],{"type":43,"tag":95,"props":456,"children":457},{"style":102},[458],{"type":48,"value":4},{"type":43,"tag":95,"props":460,"children":461},{"style":108},[462],{"type":48,"value":463}," sync",{"type":43,"tag":95,"props":465,"children":466},{"style":218},[467],{"type":48,"value":468},"                    # pull notifications → inbox-{platform}.yaml\n",{"type":43,"tag":95,"props":470,"children":471},{"class":97,"line":119},[472,476,481,486,491,497],{"type":43,"tag":95,"props":473,"children":474},{"style":102},[475],{"type":48,"value":4},{"type":43,"tag":95,"props":477,"children":478},{"style":108},[479],{"type":48,"value":480}," check",{"type":43,"tag":95,"props":482,"children":483},{"style":233},[484],{"type":48,"value":485}," ||",{"type":43,"tag":95,"props":487,"children":488},{"style":123},[489],{"type":48,"value":490}," exit",{"type":43,"tag":95,"props":492,"children":494},{"style":493},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[495],{"type":48,"value":496}," 0",{"type":43,"tag":95,"props":498,"children":499},{"style":218},[500],{"type":48,"value":501},"         # anything actionable? exit 1 = nothing to do\n",{"type":43,"tag":95,"props":503,"children":504},{"class":97,"line":134},[505],{"type":43,"tag":95,"props":506,"children":507},{"style":218},[508],{"type":48,"value":509},"# read inbox, decide, write outbox-{platform}.yaml\n",{"type":43,"tag":95,"props":511,"children":512},{"class":97,"line":148},[513,517,522],{"type":43,"tag":95,"props":514,"children":515},{"style":102},[516],{"type":48,"value":4},{"type":43,"tag":95,"props":518,"children":519},{"style":108},[520],{"type":48,"value":521}," dispatch",{"type":43,"tag":95,"props":523,"children":524},{"style":218},[525],{"type":48,"value":526},"                # execute outbox, archive results\n",{"type":43,"tag":528,"props":529,"children":530},"ul",{},[531,551,570],{"type":43,"tag":532,"props":533,"children":534},"li",{},[535,541,543,549],{"type":43,"tag":91,"props":536,"children":538},{"className":537},[],[539],{"type":48,"value":540},"sync",{"type":48,"value":542},": deduplicates against ",{"type":43,"tag":91,"props":544,"children":546},{"className":545},[],[547],{"type":48,"value":548},"sent_ledger-{platform}.yaml",{"type":48,"value":550}," and caps inbox size.",{"type":43,"tag":532,"props":552,"children":553},{},[554,560,562,568],{"type":43,"tag":91,"props":555,"children":557},{"className":556},[],[558],{"type":48,"value":559},"check",{"type":48,"value":561},": exits 0 if inbox has actionable items, 1 otherwise. Wrap with ",{"type":43,"tag":91,"props":563,"children":565},{"className":564},[],[566],{"type":48,"value":567},"|| exit 0",{"type":48,"value":569}," in cron loops.",{"type":43,"tag":532,"props":571,"children":572},{},[573,579,581,587,589,594],{"type":43,"tag":91,"props":574,"children":576},{"className":575},[],[577],{"type":48,"value":578},"dispatch",{"type":48,"value":580},": executes the outbox atomically. Writes ",{"type":43,"tag":91,"props":582,"children":584},{"className":583},[],[585],{"type":48,"value":586},"dispatch_result-{platform}.yaml",{"type":48,"value":588}," and appends to ",{"type":43,"tag":91,"props":590,"children":592},{"className":591},[],[593],{"type":48,"value":548},{"type":48,"value":595}," for replay protection.",{"type":43,"tag":69,"props":597,"children":599},{"id":598},"quick-commands",[600],{"type":48,"value":601},"Quick commands",{"type":43,"tag":83,"props":603,"children":605},{"className":85,"code":604,"language":87,"meta":88,"style":88},"# Post \u002F reply \u002F thread\nsocial-cli post \"Hello world\" -p bsky\nsocial-cli reply \"Thanks\" --id \"at:\u002F\u002Fdid:plc:...\u002Fapp.bsky.feed.post\u002Fabc\" -p bsky\nsocial-cli thread \"p1\" \"p2\" \"p3\" -p bsky\n\n# Engagement\nsocial-cli like \"at:\u002F\u002F...\" -p bsky\nsocial-cli delete \"at:\u002F\u002F...\" -p bsky\nsocial-cli follow \"handle.bsky.social\" -p bsky\n\n# Reading\nsocial-cli search \"query\" -p bsky -n 10              # → stdout YAML\nsocial-cli feed -p bsky -n 20                        # → feed.yaml (or -o - for stdout)\nsocial-cli feed --feed \"at:\u002F\u002Fdid:...\u002Fapp.bsky.feed.generator\u002Fname\" -n 10  # custom feed\nsocial-cli profile \"handle.bsky.social\" -p bsky\nsocial-cli whoami\nsocial-cli rate-limits\n",[606],{"type":43,"tag":91,"props":607,"children":608},{"__ignoreMap":88},[609,617,654,705,764,771,779,812,844,877,884,892,942,977,1020,1053,1065],{"type":43,"tag":95,"props":610,"children":611},{"class":97,"line":98},[612],{"type":43,"tag":95,"props":613,"children":614},{"style":218},[615],{"type":48,"value":616},"# Post \u002F reply \u002F thread\n",{"type":43,"tag":95,"props":618,"children":619},{"class":97,"line":119},[620,624,629,634,639,644,649],{"type":43,"tag":95,"props":621,"children":622},{"style":102},[623],{"type":48,"value":4},{"type":43,"tag":95,"props":625,"children":626},{"style":108},[627],{"type":48,"value":628}," post",{"type":43,"tag":95,"props":630,"children":631},{"style":233},[632],{"type":48,"value":633}," \"",{"type":43,"tag":95,"props":635,"children":636},{"style":108},[637],{"type":48,"value":638},"Hello world",{"type":43,"tag":95,"props":640,"children":641},{"style":233},[642],{"type":48,"value":643},"\"",{"type":43,"tag":95,"props":645,"children":646},{"style":108},[647],{"type":48,"value":648}," -p",{"type":43,"tag":95,"props":650,"children":651},{"style":108},[652],{"type":48,"value":653}," bsky\n",{"type":43,"tag":95,"props":655,"children":656},{"class":97,"line":134},[657,661,666,670,675,679,684,688,693,697,701],{"type":43,"tag":95,"props":658,"children":659},{"style":102},[660],{"type":48,"value":4},{"type":43,"tag":95,"props":662,"children":663},{"style":108},[664],{"type":48,"value":665}," reply",{"type":43,"tag":95,"props":667,"children":668},{"style":233},[669],{"type":48,"value":633},{"type":43,"tag":95,"props":671,"children":672},{"style":108},[673],{"type":48,"value":674},"Thanks",{"type":43,"tag":95,"props":676,"children":677},{"style":233},[678],{"type":48,"value":643},{"type":43,"tag":95,"props":680,"children":681},{"style":108},[682],{"type":48,"value":683}," --id",{"type":43,"tag":95,"props":685,"children":686},{"style":233},[687],{"type":48,"value":633},{"type":43,"tag":95,"props":689,"children":690},{"style":108},[691],{"type":48,"value":692},"at:\u002F\u002Fdid:plc:...\u002Fapp.bsky.feed.post\u002Fabc",{"type":43,"tag":95,"props":694,"children":695},{"style":233},[696],{"type":48,"value":643},{"type":43,"tag":95,"props":698,"children":699},{"style":108},[700],{"type":48,"value":648},{"type":43,"tag":95,"props":702,"children":703},{"style":108},[704],{"type":48,"value":653},{"type":43,"tag":95,"props":706,"children":707},{"class":97,"line":148},[708,712,717,721,726,730,734,739,743,747,752,756,760],{"type":43,"tag":95,"props":709,"children":710},{"style":102},[711],{"type":48,"value":4},{"type":43,"tag":95,"props":713,"children":714},{"style":108},[715],{"type":48,"value":716}," thread",{"type":43,"tag":95,"props":718,"children":719},{"style":233},[720],{"type":48,"value":633},{"type":43,"tag":95,"props":722,"children":723},{"style":108},[724],{"type":48,"value":725},"p1",{"type":43,"tag":95,"props":727,"children":728},{"style":233},[729],{"type":48,"value":643},{"type":43,"tag":95,"props":731,"children":732},{"style":233},[733],{"type":48,"value":633},{"type":43,"tag":95,"props":735,"children":736},{"style":108},[737],{"type":48,"value":738},"p2",{"type":43,"tag":95,"props":740,"children":741},{"style":233},[742],{"type":48,"value":643},{"type":43,"tag":95,"props":744,"children":745},{"style":233},[746],{"type":48,"value":633},{"type":43,"tag":95,"props":748,"children":749},{"style":108},[750],{"type":48,"value":751},"p3",{"type":43,"tag":95,"props":753,"children":754},{"style":233},[755],{"type":48,"value":643},{"type":43,"tag":95,"props":757,"children":758},{"style":108},[759],{"type":48,"value":648},{"type":43,"tag":95,"props":761,"children":762},{"style":108},[763],{"type":48,"value":653},{"type":43,"tag":95,"props":765,"children":766},{"class":97,"line":283},[767],{"type":43,"tag":95,"props":768,"children":769},{"emptyLinePlaceholder":287},[770],{"type":48,"value":290},{"type":43,"tag":95,"props":772,"children":773},{"class":97,"line":293},[774],{"type":43,"tag":95,"props":775,"children":776},{"style":218},[777],{"type":48,"value":778},"# Engagement\n",{"type":43,"tag":95,"props":780,"children":781},{"class":97,"line":302},[782,786,791,795,800,804,808],{"type":43,"tag":95,"props":783,"children":784},{"style":102},[785],{"type":48,"value":4},{"type":43,"tag":95,"props":787,"children":788},{"style":108},[789],{"type":48,"value":790}," like",{"type":43,"tag":95,"props":792,"children":793},{"style":233},[794],{"type":48,"value":633},{"type":43,"tag":95,"props":796,"children":797},{"style":108},[798],{"type":48,"value":799},"at:\u002F\u002F...",{"type":43,"tag":95,"props":801,"children":802},{"style":233},[803],{"type":48,"value":643},{"type":43,"tag":95,"props":805,"children":806},{"style":108},[807],{"type":48,"value":648},{"type":43,"tag":95,"props":809,"children":810},{"style":108},[811],{"type":48,"value":653},{"type":43,"tag":95,"props":813,"children":814},{"class":97,"line":320},[815,819,824,828,832,836,840],{"type":43,"tag":95,"props":816,"children":817},{"style":102},[818],{"type":48,"value":4},{"type":43,"tag":95,"props":820,"children":821},{"style":108},[822],{"type":48,"value":823}," delete",{"type":43,"tag":95,"props":825,"children":826},{"style":233},[827],{"type":48,"value":633},{"type":43,"tag":95,"props":829,"children":830},{"style":108},[831],{"type":48,"value":799},{"type":43,"tag":95,"props":833,"children":834},{"style":233},[835],{"type":48,"value":643},{"type":43,"tag":95,"props":837,"children":838},{"style":108},[839],{"type":48,"value":648},{"type":43,"tag":95,"props":841,"children":842},{"style":108},[843],{"type":48,"value":653},{"type":43,"tag":95,"props":845,"children":846},{"class":97,"line":337},[847,851,856,860,865,869,873],{"type":43,"tag":95,"props":848,"children":849},{"style":102},[850],{"type":48,"value":4},{"type":43,"tag":95,"props":852,"children":853},{"style":108},[854],{"type":48,"value":855}," follow",{"type":43,"tag":95,"props":857,"children":858},{"style":233},[859],{"type":48,"value":633},{"type":43,"tag":95,"props":861,"children":862},{"style":108},[863],{"type":48,"value":864},"handle.bsky.social",{"type":43,"tag":95,"props":866,"children":867},{"style":233},[868],{"type":48,"value":643},{"type":43,"tag":95,"props":870,"children":871},{"style":108},[872],{"type":48,"value":648},{"type":43,"tag":95,"props":874,"children":875},{"style":108},[876],{"type":48,"value":653},{"type":43,"tag":95,"props":878,"children":879},{"class":97,"line":354},[880],{"type":43,"tag":95,"props":881,"children":882},{"emptyLinePlaceholder":287},[883],{"type":48,"value":290},{"type":43,"tag":95,"props":885,"children":886},{"class":97,"line":371},[887],{"type":43,"tag":95,"props":888,"children":889},{"style":218},[890],{"type":48,"value":891},"# Reading\n",{"type":43,"tag":95,"props":893,"children":895},{"class":97,"line":894},12,[896,900,905,909,914,918,922,927,932,937],{"type":43,"tag":95,"props":897,"children":898},{"style":102},[899],{"type":48,"value":4},{"type":43,"tag":95,"props":901,"children":902},{"style":108},[903],{"type":48,"value":904}," search",{"type":43,"tag":95,"props":906,"children":907},{"style":233},[908],{"type":48,"value":633},{"type":43,"tag":95,"props":910,"children":911},{"style":108},[912],{"type":48,"value":913},"query",{"type":43,"tag":95,"props":915,"children":916},{"style":233},[917],{"type":48,"value":643},{"type":43,"tag":95,"props":919,"children":920},{"style":108},[921],{"type":48,"value":648},{"type":43,"tag":95,"props":923,"children":924},{"style":108},[925],{"type":48,"value":926}," bsky",{"type":43,"tag":95,"props":928,"children":929},{"style":108},[930],{"type":48,"value":931}," -n",{"type":43,"tag":95,"props":933,"children":934},{"style":493},[935],{"type":48,"value":936}," 10",{"type":43,"tag":95,"props":938,"children":939},{"style":218},[940],{"type":48,"value":941},"              # → stdout YAML\n",{"type":43,"tag":95,"props":943,"children":945},{"class":97,"line":944},13,[946,950,955,959,963,967,972],{"type":43,"tag":95,"props":947,"children":948},{"style":102},[949],{"type":48,"value":4},{"type":43,"tag":95,"props":951,"children":952},{"style":108},[953],{"type":48,"value":954}," feed",{"type":43,"tag":95,"props":956,"children":957},{"style":108},[958],{"type":48,"value":648},{"type":43,"tag":95,"props":960,"children":961},{"style":108},[962],{"type":48,"value":926},{"type":43,"tag":95,"props":964,"children":965},{"style":108},[966],{"type":48,"value":931},{"type":43,"tag":95,"props":968,"children":969},{"style":493},[970],{"type":48,"value":971}," 20",{"type":43,"tag":95,"props":973,"children":974},{"style":218},[975],{"type":48,"value":976},"                        # → feed.yaml (or -o - for stdout)\n",{"type":43,"tag":95,"props":978,"children":980},{"class":97,"line":979},14,[981,985,989,994,998,1003,1007,1011,1015],{"type":43,"tag":95,"props":982,"children":983},{"style":102},[984],{"type":48,"value":4},{"type":43,"tag":95,"props":986,"children":987},{"style":108},[988],{"type":48,"value":954},{"type":43,"tag":95,"props":990,"children":991},{"style":108},[992],{"type":48,"value":993}," --feed",{"type":43,"tag":95,"props":995,"children":996},{"style":233},[997],{"type":48,"value":633},{"type":43,"tag":95,"props":999,"children":1000},{"style":108},[1001],{"type":48,"value":1002},"at:\u002F\u002Fdid:...\u002Fapp.bsky.feed.generator\u002Fname",{"type":43,"tag":95,"props":1004,"children":1005},{"style":233},[1006],{"type":48,"value":643},{"type":43,"tag":95,"props":1008,"children":1009},{"style":108},[1010],{"type":48,"value":931},{"type":43,"tag":95,"props":1012,"children":1013},{"style":493},[1014],{"type":48,"value":936},{"type":43,"tag":95,"props":1016,"children":1017},{"style":218},[1018],{"type":48,"value":1019},"  # custom feed\n",{"type":43,"tag":95,"props":1021,"children":1023},{"class":97,"line":1022},15,[1024,1028,1033,1037,1041,1045,1049],{"type":43,"tag":95,"props":1025,"children":1026},{"style":102},[1027],{"type":48,"value":4},{"type":43,"tag":95,"props":1029,"children":1030},{"style":108},[1031],{"type":48,"value":1032}," profile",{"type":43,"tag":95,"props":1034,"children":1035},{"style":233},[1036],{"type":48,"value":633},{"type":43,"tag":95,"props":1038,"children":1039},{"style":108},[1040],{"type":48,"value":864},{"type":43,"tag":95,"props":1042,"children":1043},{"style":233},[1044],{"type":48,"value":643},{"type":43,"tag":95,"props":1046,"children":1047},{"style":108},[1048],{"type":48,"value":648},{"type":43,"tag":95,"props":1050,"children":1051},{"style":108},[1052],{"type":48,"value":653},{"type":43,"tag":95,"props":1054,"children":1056},{"class":97,"line":1055},16,[1057,1061],{"type":43,"tag":95,"props":1058,"children":1059},{"style":102},[1060],{"type":48,"value":4},{"type":43,"tag":95,"props":1062,"children":1063},{"style":108},[1064],{"type":48,"value":421},{"type":43,"tag":95,"props":1066,"children":1068},{"class":97,"line":1067},17,[1069,1073],{"type":43,"tag":95,"props":1070,"children":1071},{"style":102},[1072],{"type":48,"value":4},{"type":43,"tag":95,"props":1074,"children":1075},{"style":108},[1076],{"type":48,"value":433},{"type":43,"tag":69,"props":1078,"children":1080},{"id":1079},"annotations-bluesky-only",[1081],{"type":48,"value":1082},"Annotations (Bluesky only)",{"type":43,"tag":50,"props":1084,"children":1085},{},[1086,1088,1094],{"type":48,"value":1087},"Uses the ",{"type":43,"tag":91,"props":1089,"children":1091},{"className":1090},[],[1092],{"type":48,"value":1093},"at.margin.note",{"type":48,"value":1095}," lexicon (W3C Web Annotation model). Annotations work on any URL, not just ATProto posts. They appear in margin.at and Semble.",{"type":43,"tag":83,"props":1097,"children":1099},{"className":85,"code":1098,"language":87,"meta":88,"style":88},"# Annotate a web page\nsocial-cli annotate \"Note about this article\" --target https:\u002F\u002Fexample.com\n\n# Anchor to an exact passage\nsocial-cli annotate \"Key insight\" --target https:\u002F\u002Fexample.com \\\n  --quote \"exact passage from the page\" --motivation highlighting\n",[1100],{"type":43,"tag":91,"props":1101,"children":1102},{"__ignoreMap":88},[1103,1111,1146,1153,1161,1199],{"type":43,"tag":95,"props":1104,"children":1105},{"class":97,"line":98},[1106],{"type":43,"tag":95,"props":1107,"children":1108},{"style":218},[1109],{"type":48,"value":1110},"# Annotate a web page\n",{"type":43,"tag":95,"props":1112,"children":1113},{"class":97,"line":119},[1114,1118,1123,1127,1132,1136,1141],{"type":43,"tag":95,"props":1115,"children":1116},{"style":102},[1117],{"type":48,"value":4},{"type":43,"tag":95,"props":1119,"children":1120},{"style":108},[1121],{"type":48,"value":1122}," annotate",{"type":43,"tag":95,"props":1124,"children":1125},{"style":233},[1126],{"type":48,"value":633},{"type":43,"tag":95,"props":1128,"children":1129},{"style":108},[1130],{"type":48,"value":1131},"Note about this article",{"type":43,"tag":95,"props":1133,"children":1134},{"style":233},[1135],{"type":48,"value":643},{"type":43,"tag":95,"props":1137,"children":1138},{"style":108},[1139],{"type":48,"value":1140}," --target",{"type":43,"tag":95,"props":1142,"children":1143},{"style":108},[1144],{"type":48,"value":1145}," https:\u002F\u002Fexample.com\n",{"type":43,"tag":95,"props":1147,"children":1148},{"class":97,"line":134},[1149],{"type":43,"tag":95,"props":1150,"children":1151},{"emptyLinePlaceholder":287},[1152],{"type":48,"value":290},{"type":43,"tag":95,"props":1154,"children":1155},{"class":97,"line":148},[1156],{"type":43,"tag":95,"props":1157,"children":1158},{"style":218},[1159],{"type":48,"value":1160},"# Anchor to an exact passage\n",{"type":43,"tag":95,"props":1162,"children":1163},{"class":97,"line":283},[1164,1168,1172,1176,1181,1185,1189,1194],{"type":43,"tag":95,"props":1165,"children":1166},{"style":102},[1167],{"type":48,"value":4},{"type":43,"tag":95,"props":1169,"children":1170},{"style":108},[1171],{"type":48,"value":1122},{"type":43,"tag":95,"props":1173,"children":1174},{"style":233},[1175],{"type":48,"value":633},{"type":43,"tag":95,"props":1177,"children":1178},{"style":108},[1179],{"type":48,"value":1180},"Key insight",{"type":43,"tag":95,"props":1182,"children":1183},{"style":233},[1184],{"type":48,"value":643},{"type":43,"tag":95,"props":1186,"children":1187},{"style":108},[1188],{"type":48,"value":1140},{"type":43,"tag":95,"props":1190,"children":1191},{"style":108},[1192],{"type":48,"value":1193}," https:\u002F\u002Fexample.com",{"type":43,"tag":95,"props":1195,"children":1196},{"style":227},[1197],{"type":48,"value":1198}," \\\n",{"type":43,"tag":95,"props":1200,"children":1201},{"class":97,"line":293},[1202,1207,1211,1216,1220,1225],{"type":43,"tag":95,"props":1203,"children":1204},{"style":108},[1205],{"type":48,"value":1206},"  --quote",{"type":43,"tag":95,"props":1208,"children":1209},{"style":233},[1210],{"type":48,"value":633},{"type":43,"tag":95,"props":1212,"children":1213},{"style":108},[1214],{"type":48,"value":1215},"exact passage from the page",{"type":43,"tag":95,"props":1217,"children":1218},{"style":233},[1219],{"type":48,"value":643},{"type":43,"tag":95,"props":1221,"children":1222},{"style":108},[1223],{"type":48,"value":1224}," --motivation",{"type":43,"tag":95,"props":1226,"children":1227},{"style":108},[1228],{"type":48,"value":1229}," highlighting\n",{"type":43,"tag":50,"props":1231,"children":1232},{},[1233,1235,1241,1243,1249,1250,1256,1257,1263,1264,1270],{"type":48,"value":1234},"Motivations: ",{"type":43,"tag":91,"props":1236,"children":1238},{"className":1237},[],[1239],{"type":48,"value":1240},"commenting",{"type":48,"value":1242},", ",{"type":43,"tag":91,"props":1244,"children":1246},{"className":1245},[],[1247],{"type":48,"value":1248},"highlighting",{"type":48,"value":1242},{"type":43,"tag":91,"props":1251,"children":1253},{"className":1252},[],[1254],{"type":48,"value":1255},"questioning",{"type":48,"value":1242},{"type":43,"tag":91,"props":1258,"children":1260},{"className":1259},[],[1261],{"type":48,"value":1262},"describing",{"type":48,"value":1242},{"type":43,"tag":91,"props":1265,"children":1267},{"className":1266},[],[1268],{"type":48,"value":1269},"linking",{"type":48,"value":1271},".",{"type":43,"tag":69,"props":1273,"children":1275},{"id":1274},"inbox-format-inbox-platformyaml",[1276,1278,1284],{"type":48,"value":1277},"Inbox format (",{"type":43,"tag":91,"props":1279,"children":1281},{"className":1280},[],[1282],{"type":48,"value":1283},"inbox-{platform}.yaml",{"type":48,"value":1285},")",{"type":43,"tag":83,"props":1287,"children":1291},{"className":1288,"code":1289,"language":1290,"meta":88,"style":88},"language-yaml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","notifications:\n  - id: \"at:\u002F\u002Fdid:plc:xxx\u002Fapp.bsky.feed.post\u002Fabc\"\n    platform: bsky\n    type: mention          # mention, reply, like, follow, repost, quote\n    author: someone.bsky.social\n    authorId: \"did:plc:xxx\"\n    postId: \"at:\u002F\u002F...\"\n    text: \"Hey, what do you think?\"\n    timestamp: \"2026-03-25T12:00:00Z\"\n    parentPostId: \"at:\u002F\u002F...\"     # for replies\n    parentPostText: \"...\"        # context\n    rootPostId: \"at:\u002F\u002F...\"       # thread root\n    rootPostText: \"...\"\n","yaml",[1292],{"type":43,"tag":91,"props":1293,"children":1294},{"__ignoreMap":88},[1295,1309,1340,1356,1378,1395,1420,1444,1469,1494,1523,1552,1581],{"type":43,"tag":95,"props":1296,"children":1297},{"class":97,"line":98},[1298,1304],{"type":43,"tag":95,"props":1299,"children":1301},{"style":1300},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[1302],{"type":48,"value":1303},"notifications",{"type":43,"tag":95,"props":1305,"children":1306},{"style":233},[1307],{"type":48,"value":1308},":\n",{"type":43,"tag":95,"props":1310,"children":1311},{"class":97,"line":119},[1312,1317,1322,1326,1330,1335],{"type":43,"tag":95,"props":1313,"children":1314},{"style":233},[1315],{"type":48,"value":1316},"  -",{"type":43,"tag":95,"props":1318,"children":1319},{"style":1300},[1320],{"type":48,"value":1321}," id",{"type":43,"tag":95,"props":1323,"children":1324},{"style":233},[1325],{"type":48,"value":205},{"type":43,"tag":95,"props":1327,"children":1328},{"style":233},[1329],{"type":48,"value":633},{"type":43,"tag":95,"props":1331,"children":1332},{"style":108},[1333],{"type":48,"value":1334},"at:\u002F\u002Fdid:plc:xxx\u002Fapp.bsky.feed.post\u002Fabc",{"type":43,"tag":95,"props":1336,"children":1337},{"style":233},[1338],{"type":48,"value":1339},"\"\n",{"type":43,"tag":95,"props":1341,"children":1342},{"class":97,"line":134},[1343,1348,1352],{"type":43,"tag":95,"props":1344,"children":1345},{"style":1300},[1346],{"type":48,"value":1347},"    platform",{"type":43,"tag":95,"props":1349,"children":1350},{"style":233},[1351],{"type":48,"value":205},{"type":43,"tag":95,"props":1353,"children":1354},{"style":108},[1355],{"type":48,"value":653},{"type":43,"tag":95,"props":1357,"children":1358},{"class":97,"line":148},[1359,1364,1368,1373],{"type":43,"tag":95,"props":1360,"children":1361},{"style":1300},[1362],{"type":48,"value":1363},"    type",{"type":43,"tag":95,"props":1365,"children":1366},{"style":233},[1367],{"type":48,"value":205},{"type":43,"tag":95,"props":1369,"children":1370},{"style":108},[1371],{"type":48,"value":1372}," mention",{"type":43,"tag":95,"props":1374,"children":1375},{"style":218},[1376],{"type":48,"value":1377},"          # mention, reply, like, follow, repost, quote\n",{"type":43,"tag":95,"props":1379,"children":1380},{"class":97,"line":283},[1381,1386,1390],{"type":43,"tag":95,"props":1382,"children":1383},{"style":1300},[1384],{"type":48,"value":1385},"    author",{"type":43,"tag":95,"props":1387,"children":1388},{"style":233},[1389],{"type":48,"value":205},{"type":43,"tag":95,"props":1391,"children":1392},{"style":108},[1393],{"type":48,"value":1394}," someone.bsky.social\n",{"type":43,"tag":95,"props":1396,"children":1397},{"class":97,"line":293},[1398,1403,1407,1411,1416],{"type":43,"tag":95,"props":1399,"children":1400},{"style":1300},[1401],{"type":48,"value":1402},"    authorId",{"type":43,"tag":95,"props":1404,"children":1405},{"style":233},[1406],{"type":48,"value":205},{"type":43,"tag":95,"props":1408,"children":1409},{"style":233},[1410],{"type":48,"value":633},{"type":43,"tag":95,"props":1412,"children":1413},{"style":108},[1414],{"type":48,"value":1415},"did:plc:xxx",{"type":43,"tag":95,"props":1417,"children":1418},{"style":233},[1419],{"type":48,"value":1339},{"type":43,"tag":95,"props":1421,"children":1422},{"class":97,"line":302},[1423,1428,1432,1436,1440],{"type":43,"tag":95,"props":1424,"children":1425},{"style":1300},[1426],{"type":48,"value":1427},"    postId",{"type":43,"tag":95,"props":1429,"children":1430},{"style":233},[1431],{"type":48,"value":205},{"type":43,"tag":95,"props":1433,"children":1434},{"style":233},[1435],{"type":48,"value":633},{"type":43,"tag":95,"props":1437,"children":1438},{"style":108},[1439],{"type":48,"value":799},{"type":43,"tag":95,"props":1441,"children":1442},{"style":233},[1443],{"type":48,"value":1339},{"type":43,"tag":95,"props":1445,"children":1446},{"class":97,"line":320},[1447,1452,1456,1460,1465],{"type":43,"tag":95,"props":1448,"children":1449},{"style":1300},[1450],{"type":48,"value":1451},"    text",{"type":43,"tag":95,"props":1453,"children":1454},{"style":233},[1455],{"type":48,"value":205},{"type":43,"tag":95,"props":1457,"children":1458},{"style":233},[1459],{"type":48,"value":633},{"type":43,"tag":95,"props":1461,"children":1462},{"style":108},[1463],{"type":48,"value":1464},"Hey, what do you think?",{"type":43,"tag":95,"props":1466,"children":1467},{"style":233},[1468],{"type":48,"value":1339},{"type":43,"tag":95,"props":1470,"children":1471},{"class":97,"line":337},[1472,1477,1481,1485,1490],{"type":43,"tag":95,"props":1473,"children":1474},{"style":1300},[1475],{"type":48,"value":1476},"    timestamp",{"type":43,"tag":95,"props":1478,"children":1479},{"style":233},[1480],{"type":48,"value":205},{"type":43,"tag":95,"props":1482,"children":1483},{"style":233},[1484],{"type":48,"value":633},{"type":43,"tag":95,"props":1486,"children":1487},{"style":108},[1488],{"type":48,"value":1489},"2026-03-25T12:00:00Z",{"type":43,"tag":95,"props":1491,"children":1492},{"style":233},[1493],{"type":48,"value":1339},{"type":43,"tag":95,"props":1495,"children":1496},{"class":97,"line":354},[1497,1502,1506,1510,1514,1518],{"type":43,"tag":95,"props":1498,"children":1499},{"style":1300},[1500],{"type":48,"value":1501},"    parentPostId",{"type":43,"tag":95,"props":1503,"children":1504},{"style":233},[1505],{"type":48,"value":205},{"type":43,"tag":95,"props":1507,"children":1508},{"style":233},[1509],{"type":48,"value":633},{"type":43,"tag":95,"props":1511,"children":1512},{"style":108},[1513],{"type":48,"value":799},{"type":43,"tag":95,"props":1515,"children":1516},{"style":233},[1517],{"type":48,"value":643},{"type":43,"tag":95,"props":1519,"children":1520},{"style":218},[1521],{"type":48,"value":1522},"     # for replies\n",{"type":43,"tag":95,"props":1524,"children":1525},{"class":97,"line":371},[1526,1531,1535,1539,1543,1547],{"type":43,"tag":95,"props":1527,"children":1528},{"style":1300},[1529],{"type":48,"value":1530},"    parentPostText",{"type":43,"tag":95,"props":1532,"children":1533},{"style":233},[1534],{"type":48,"value":205},{"type":43,"tag":95,"props":1536,"children":1537},{"style":233},[1538],{"type":48,"value":633},{"type":43,"tag":95,"props":1540,"children":1541},{"style":108},[1542],{"type":48,"value":386},{"type":43,"tag":95,"props":1544,"children":1545},{"style":233},[1546],{"type":48,"value":643},{"type":43,"tag":95,"props":1548,"children":1549},{"style":218},[1550],{"type":48,"value":1551},"        # context\n",{"type":43,"tag":95,"props":1553,"children":1554},{"class":97,"line":894},[1555,1560,1564,1568,1572,1576],{"type":43,"tag":95,"props":1556,"children":1557},{"style":1300},[1558],{"type":48,"value":1559},"    rootPostId",{"type":43,"tag":95,"props":1561,"children":1562},{"style":233},[1563],{"type":48,"value":205},{"type":43,"tag":95,"props":1565,"children":1566},{"style":233},[1567],{"type":48,"value":633},{"type":43,"tag":95,"props":1569,"children":1570},{"style":108},[1571],{"type":48,"value":799},{"type":43,"tag":95,"props":1573,"children":1574},{"style":233},[1575],{"type":48,"value":643},{"type":43,"tag":95,"props":1577,"children":1578},{"style":218},[1579],{"type":48,"value":1580},"       # thread root\n",{"type":43,"tag":95,"props":1582,"children":1583},{"class":97,"line":944},[1584,1589,1593,1597,1601],{"type":43,"tag":95,"props":1585,"children":1586},{"style":1300},[1587],{"type":48,"value":1588},"    rootPostText",{"type":43,"tag":95,"props":1590,"children":1591},{"style":233},[1592],{"type":48,"value":205},{"type":43,"tag":95,"props":1594,"children":1595},{"style":233},[1596],{"type":48,"value":633},{"type":43,"tag":95,"props":1598,"children":1599},{"style":108},[1600],{"type":48,"value":386},{"type":43,"tag":95,"props":1602,"children":1603},{"style":233},[1604],{"type":48,"value":1339},{"type":43,"tag":69,"props":1606,"children":1608},{"id":1607},"outbox-format-outbox-platformyaml",[1609,1611,1617],{"type":48,"value":1610},"Outbox format (",{"type":43,"tag":91,"props":1612,"children":1614},{"className":1613},[],[1615],{"type":48,"value":1616},"outbox-{platform}.yaml",{"type":48,"value":1285},{"type":43,"tag":50,"props":1619,"children":1620},{},[1621,1623,1628],{"type":48,"value":1622},"Write decisions as a ",{"type":43,"tag":91,"props":1624,"children":1626},{"className":1625},[],[1627],{"type":48,"value":578},{"type":48,"value":1629}," list. Each entry is a single action.",{"type":43,"tag":83,"props":1631,"children":1633},{"className":1288,"code":1632,"language":1290,"meta":88,"style":88},"dispatch:\n  - reply:\n      platform: bsky\n      id: \"at:\u002F\u002Fdid:plc:xxx\u002Fapp.bsky.feed.post\u002Fabc\"\n      text: \"Thanks for the mention\"\n\n  - post:\n      text: \"Hello from my agent\"\n      platforms: [bsky, x]          # post to both\n\n  - thread:\n      platform: bsky\n      posts:\n        - \"Thread post 1\"\n        - \"Thread post 2\"\n\n  - like:\n      platform: bsky\n      id: \"at:\u002F\u002F...\"\n\n  - annotate:\n      platform: bsky\n      id: \"https:\u002F\u002Fexample.com\u002Farticle\"\n      text: \"Key observation\"\n      motivation: commenting\n      quote: \"exact text to anchor to\"\n\n  - ignore:\n      id: \"notif_003\"\n      reason: \"spam\"\n",[1634],{"type":43,"tag":91,"props":1635,"children":1636},{"__ignoreMap":88},[1637,1648,1663,1679,1703,1728,1735,1750,1774,1816,1823,1838,1853,1865,1886,1906,1913,1928,1944,1968,1975,1991,2007,2032,2057,2075,2101,2109,2126,2151],{"type":43,"tag":95,"props":1638,"children":1639},{"class":97,"line":98},[1640,1644],{"type":43,"tag":95,"props":1641,"children":1642},{"style":1300},[1643],{"type":48,"value":578},{"type":43,"tag":95,"props":1645,"children":1646},{"style":233},[1647],{"type":48,"value":1308},{"type":43,"tag":95,"props":1649,"children":1650},{"class":97,"line":119},[1651,1655,1659],{"type":43,"tag":95,"props":1652,"children":1653},{"style":233},[1654],{"type":48,"value":1316},{"type":43,"tag":95,"props":1656,"children":1657},{"style":1300},[1658],{"type":48,"value":665},{"type":43,"tag":95,"props":1660,"children":1661},{"style":233},[1662],{"type":48,"value":1308},{"type":43,"tag":95,"props":1664,"children":1665},{"class":97,"line":134},[1666,1671,1675],{"type":43,"tag":95,"props":1667,"children":1668},{"style":1300},[1669],{"type":48,"value":1670},"      platform",{"type":43,"tag":95,"props":1672,"children":1673},{"style":233},[1674],{"type":48,"value":205},{"type":43,"tag":95,"props":1676,"children":1677},{"style":108},[1678],{"type":48,"value":653},{"type":43,"tag":95,"props":1680,"children":1681},{"class":97,"line":148},[1682,1687,1691,1695,1699],{"type":43,"tag":95,"props":1683,"children":1684},{"style":1300},[1685],{"type":48,"value":1686},"      id",{"type":43,"tag":95,"props":1688,"children":1689},{"style":233},[1690],{"type":48,"value":205},{"type":43,"tag":95,"props":1692,"children":1693},{"style":233},[1694],{"type":48,"value":633},{"type":43,"tag":95,"props":1696,"children":1697},{"style":108},[1698],{"type":48,"value":1334},{"type":43,"tag":95,"props":1700,"children":1701},{"style":233},[1702],{"type":48,"value":1339},{"type":43,"tag":95,"props":1704,"children":1705},{"class":97,"line":283},[1706,1711,1715,1719,1724],{"type":43,"tag":95,"props":1707,"children":1708},{"style":1300},[1709],{"type":48,"value":1710},"      text",{"type":43,"tag":95,"props":1712,"children":1713},{"style":233},[1714],{"type":48,"value":205},{"type":43,"tag":95,"props":1716,"children":1717},{"style":233},[1718],{"type":48,"value":633},{"type":43,"tag":95,"props":1720,"children":1721},{"style":108},[1722],{"type":48,"value":1723},"Thanks for the mention",{"type":43,"tag":95,"props":1725,"children":1726},{"style":233},[1727],{"type":48,"value":1339},{"type":43,"tag":95,"props":1729,"children":1730},{"class":97,"line":293},[1731],{"type":43,"tag":95,"props":1732,"children":1733},{"emptyLinePlaceholder":287},[1734],{"type":48,"value":290},{"type":43,"tag":95,"props":1736,"children":1737},{"class":97,"line":302},[1738,1742,1746],{"type":43,"tag":95,"props":1739,"children":1740},{"style":233},[1741],{"type":48,"value":1316},{"type":43,"tag":95,"props":1743,"children":1744},{"style":1300},[1745],{"type":48,"value":628},{"type":43,"tag":95,"props":1747,"children":1748},{"style":233},[1749],{"type":48,"value":1308},{"type":43,"tag":95,"props":1751,"children":1752},{"class":97,"line":320},[1753,1757,1761,1765,1770],{"type":43,"tag":95,"props":1754,"children":1755},{"style":1300},[1756],{"type":48,"value":1710},{"type":43,"tag":95,"props":1758,"children":1759},{"style":233},[1760],{"type":48,"value":205},{"type":43,"tag":95,"props":1762,"children":1763},{"style":233},[1764],{"type":48,"value":633},{"type":43,"tag":95,"props":1766,"children":1767},{"style":108},[1768],{"type":48,"value":1769},"Hello from my agent",{"type":43,"tag":95,"props":1771,"children":1772},{"style":233},[1773],{"type":48,"value":1339},{"type":43,"tag":95,"props":1775,"children":1776},{"class":97,"line":337},[1777,1782,1786,1791,1796,1801,1806,1811],{"type":43,"tag":95,"props":1778,"children":1779},{"style":1300},[1780],{"type":48,"value":1781},"      platforms",{"type":43,"tag":95,"props":1783,"children":1784},{"style":233},[1785],{"type":48,"value":205},{"type":43,"tag":95,"props":1787,"children":1788},{"style":233},[1789],{"type":48,"value":1790}," [",{"type":43,"tag":95,"props":1792,"children":1793},{"style":108},[1794],{"type":48,"value":1795},"bsky",{"type":43,"tag":95,"props":1797,"children":1798},{"style":233},[1799],{"type":48,"value":1800},",",{"type":43,"tag":95,"props":1802,"children":1803},{"style":108},[1804],{"type":48,"value":1805}," x",{"type":43,"tag":95,"props":1807,"children":1808},{"style":233},[1809],{"type":48,"value":1810},"]",{"type":43,"tag":95,"props":1812,"children":1813},{"style":218},[1814],{"type":48,"value":1815},"          # post to both\n",{"type":43,"tag":95,"props":1817,"children":1818},{"class":97,"line":354},[1819],{"type":43,"tag":95,"props":1820,"children":1821},{"emptyLinePlaceholder":287},[1822],{"type":48,"value":290},{"type":43,"tag":95,"props":1824,"children":1825},{"class":97,"line":371},[1826,1830,1834],{"type":43,"tag":95,"props":1827,"children":1828},{"style":233},[1829],{"type":48,"value":1316},{"type":43,"tag":95,"props":1831,"children":1832},{"style":1300},[1833],{"type":48,"value":716},{"type":43,"tag":95,"props":1835,"children":1836},{"style":233},[1837],{"type":48,"value":1308},{"type":43,"tag":95,"props":1839,"children":1840},{"class":97,"line":894},[1841,1845,1849],{"type":43,"tag":95,"props":1842,"children":1843},{"style":1300},[1844],{"type":48,"value":1670},{"type":43,"tag":95,"props":1846,"children":1847},{"style":233},[1848],{"type":48,"value":205},{"type":43,"tag":95,"props":1850,"children":1851},{"style":108},[1852],{"type":48,"value":653},{"type":43,"tag":95,"props":1854,"children":1855},{"class":97,"line":944},[1856,1861],{"type":43,"tag":95,"props":1857,"children":1858},{"style":1300},[1859],{"type":48,"value":1860},"      posts",{"type":43,"tag":95,"props":1862,"children":1863},{"style":233},[1864],{"type":48,"value":1308},{"type":43,"tag":95,"props":1866,"children":1867},{"class":97,"line":979},[1868,1873,1877,1882],{"type":43,"tag":95,"props":1869,"children":1870},{"style":233},[1871],{"type":48,"value":1872},"        -",{"type":43,"tag":95,"props":1874,"children":1875},{"style":233},[1876],{"type":48,"value":633},{"type":43,"tag":95,"props":1878,"children":1879},{"style":108},[1880],{"type":48,"value":1881},"Thread post 1",{"type":43,"tag":95,"props":1883,"children":1884},{"style":233},[1885],{"type":48,"value":1339},{"type":43,"tag":95,"props":1887,"children":1888},{"class":97,"line":1022},[1889,1893,1897,1902],{"type":43,"tag":95,"props":1890,"children":1891},{"style":233},[1892],{"type":48,"value":1872},{"type":43,"tag":95,"props":1894,"children":1895},{"style":233},[1896],{"type":48,"value":633},{"type":43,"tag":95,"props":1898,"children":1899},{"style":108},[1900],{"type":48,"value":1901},"Thread post 2",{"type":43,"tag":95,"props":1903,"children":1904},{"style":233},[1905],{"type":48,"value":1339},{"type":43,"tag":95,"props":1907,"children":1908},{"class":97,"line":1055},[1909],{"type":43,"tag":95,"props":1910,"children":1911},{"emptyLinePlaceholder":287},[1912],{"type":48,"value":290},{"type":43,"tag":95,"props":1914,"children":1915},{"class":97,"line":1067},[1916,1920,1924],{"type":43,"tag":95,"props":1917,"children":1918},{"style":233},[1919],{"type":48,"value":1316},{"type":43,"tag":95,"props":1921,"children":1922},{"style":1300},[1923],{"type":48,"value":790},{"type":43,"tag":95,"props":1925,"children":1926},{"style":233},[1927],{"type":48,"value":1308},{"type":43,"tag":95,"props":1929,"children":1931},{"class":97,"line":1930},18,[1932,1936,1940],{"type":43,"tag":95,"props":1933,"children":1934},{"style":1300},[1935],{"type":48,"value":1670},{"type":43,"tag":95,"props":1937,"children":1938},{"style":233},[1939],{"type":48,"value":205},{"type":43,"tag":95,"props":1941,"children":1942},{"style":108},[1943],{"type":48,"value":653},{"type":43,"tag":95,"props":1945,"children":1947},{"class":97,"line":1946},19,[1948,1952,1956,1960,1964],{"type":43,"tag":95,"props":1949,"children":1950},{"style":1300},[1951],{"type":48,"value":1686},{"type":43,"tag":95,"props":1953,"children":1954},{"style":233},[1955],{"type":48,"value":205},{"type":43,"tag":95,"props":1957,"children":1958},{"style":233},[1959],{"type":48,"value":633},{"type":43,"tag":95,"props":1961,"children":1962},{"style":108},[1963],{"type":48,"value":799},{"type":43,"tag":95,"props":1965,"children":1966},{"style":233},[1967],{"type":48,"value":1339},{"type":43,"tag":95,"props":1969,"children":1970},{"class":97,"line":30},[1971],{"type":43,"tag":95,"props":1972,"children":1973},{"emptyLinePlaceholder":287},[1974],{"type":48,"value":290},{"type":43,"tag":95,"props":1976,"children":1978},{"class":97,"line":1977},21,[1979,1983,1987],{"type":43,"tag":95,"props":1980,"children":1981},{"style":233},[1982],{"type":48,"value":1316},{"type":43,"tag":95,"props":1984,"children":1985},{"style":1300},[1986],{"type":48,"value":1122},{"type":43,"tag":95,"props":1988,"children":1989},{"style":233},[1990],{"type":48,"value":1308},{"type":43,"tag":95,"props":1992,"children":1994},{"class":97,"line":1993},22,[1995,1999,2003],{"type":43,"tag":95,"props":1996,"children":1997},{"style":1300},[1998],{"type":48,"value":1670},{"type":43,"tag":95,"props":2000,"children":2001},{"style":233},[2002],{"type":48,"value":205},{"type":43,"tag":95,"props":2004,"children":2005},{"style":108},[2006],{"type":48,"value":653},{"type":43,"tag":95,"props":2008,"children":2010},{"class":97,"line":2009},23,[2011,2015,2019,2023,2028],{"type":43,"tag":95,"props":2012,"children":2013},{"style":1300},[2014],{"type":48,"value":1686},{"type":43,"tag":95,"props":2016,"children":2017},{"style":233},[2018],{"type":48,"value":205},{"type":43,"tag":95,"props":2020,"children":2021},{"style":233},[2022],{"type":48,"value":633},{"type":43,"tag":95,"props":2024,"children":2025},{"style":108},[2026],{"type":48,"value":2027},"https:\u002F\u002Fexample.com\u002Farticle",{"type":43,"tag":95,"props":2029,"children":2030},{"style":233},[2031],{"type":48,"value":1339},{"type":43,"tag":95,"props":2033,"children":2035},{"class":97,"line":2034},24,[2036,2040,2044,2048,2053],{"type":43,"tag":95,"props":2037,"children":2038},{"style":1300},[2039],{"type":48,"value":1710},{"type":43,"tag":95,"props":2041,"children":2042},{"style":233},[2043],{"type":48,"value":205},{"type":43,"tag":95,"props":2045,"children":2046},{"style":233},[2047],{"type":48,"value":633},{"type":43,"tag":95,"props":2049,"children":2050},{"style":108},[2051],{"type":48,"value":2052},"Key observation",{"type":43,"tag":95,"props":2054,"children":2055},{"style":233},[2056],{"type":48,"value":1339},{"type":43,"tag":95,"props":2058,"children":2060},{"class":97,"line":2059},25,[2061,2066,2070],{"type":43,"tag":95,"props":2062,"children":2063},{"style":1300},[2064],{"type":48,"value":2065},"      motivation",{"type":43,"tag":95,"props":2067,"children":2068},{"style":233},[2069],{"type":48,"value":205},{"type":43,"tag":95,"props":2071,"children":2072},{"style":108},[2073],{"type":48,"value":2074}," commenting\n",{"type":43,"tag":95,"props":2076,"children":2078},{"class":97,"line":2077},26,[2079,2084,2088,2092,2097],{"type":43,"tag":95,"props":2080,"children":2081},{"style":1300},[2082],{"type":48,"value":2083},"      quote",{"type":43,"tag":95,"props":2085,"children":2086},{"style":233},[2087],{"type":48,"value":205},{"type":43,"tag":95,"props":2089,"children":2090},{"style":233},[2091],{"type":48,"value":633},{"type":43,"tag":95,"props":2093,"children":2094},{"style":108},[2095],{"type":48,"value":2096},"exact text to anchor to",{"type":43,"tag":95,"props":2098,"children":2099},{"style":233},[2100],{"type":48,"value":1339},{"type":43,"tag":95,"props":2102,"children":2104},{"class":97,"line":2103},27,[2105],{"type":43,"tag":95,"props":2106,"children":2107},{"emptyLinePlaceholder":287},[2108],{"type":48,"value":290},{"type":43,"tag":95,"props":2110,"children":2112},{"class":97,"line":2111},28,[2113,2117,2122],{"type":43,"tag":95,"props":2114,"children":2115},{"style":233},[2116],{"type":48,"value":1316},{"type":43,"tag":95,"props":2118,"children":2119},{"style":1300},[2120],{"type":48,"value":2121}," ignore",{"type":43,"tag":95,"props":2123,"children":2124},{"style":233},[2125],{"type":48,"value":1308},{"type":43,"tag":95,"props":2127,"children":2129},{"class":97,"line":2128},29,[2130,2134,2138,2142,2147],{"type":43,"tag":95,"props":2131,"children":2132},{"style":1300},[2133],{"type":48,"value":1686},{"type":43,"tag":95,"props":2135,"children":2136},{"style":233},[2137],{"type":48,"value":205},{"type":43,"tag":95,"props":2139,"children":2140},{"style":233},[2141],{"type":48,"value":633},{"type":43,"tag":95,"props":2143,"children":2144},{"style":108},[2145],{"type":48,"value":2146},"notif_003",{"type":43,"tag":95,"props":2148,"children":2149},{"style":233},[2150],{"type":48,"value":1339},{"type":43,"tag":95,"props":2152,"children":2154},{"class":97,"line":2153},30,[2155,2160,2164,2168,2173],{"type":43,"tag":95,"props":2156,"children":2157},{"style":1300},[2158],{"type":48,"value":2159},"      reason",{"type":43,"tag":95,"props":2161,"children":2162},{"style":233},[2163],{"type":48,"value":205},{"type":43,"tag":95,"props":2165,"children":2166},{"style":233},[2167],{"type":48,"value":633},{"type":43,"tag":95,"props":2169,"children":2170},{"style":108},[2171],{"type":48,"value":2172},"spam",{"type":43,"tag":95,"props":2174,"children":2175},{"style":233},[2176],{"type":48,"value":1339},{"type":43,"tag":69,"props":2178,"children":2180},{"id":2179},"dispatch-results-and-exit-codes",[2181],{"type":48,"value":2182},"Dispatch results and exit codes",{"type":43,"tag":50,"props":2184,"children":2185},{},[2186,2191],{"type":43,"tag":91,"props":2187,"children":2189},{"className":2188},[],[2190],{"type":48,"value":586},{"type":48,"value":2192}," is written after every dispatch. Exit codes:",{"type":43,"tag":2194,"props":2195,"children":2196},"table",{},[2197,2216],{"type":43,"tag":2198,"props":2199,"children":2200},"thead",{},[2201],{"type":43,"tag":2202,"props":2203,"children":2204},"tr",{},[2205,2211],{"type":43,"tag":2206,"props":2207,"children":2208},"th",{},[2209],{"type":48,"value":2210},"Code",{"type":43,"tag":2206,"props":2212,"children":2213},{},[2214],{"type":48,"value":2215},"Meaning",{"type":43,"tag":2217,"props":2218,"children":2219},"tbody",{},[2220,2234,2247],{"type":43,"tag":2202,"props":2221,"children":2222},{},[2223,2229],{"type":43,"tag":2224,"props":2225,"children":2226},"td",{},[2227],{"type":48,"value":2228},"0",{"type":43,"tag":2224,"props":2230,"children":2231},{},[2232],{"type":48,"value":2233},"All actions succeeded",{"type":43,"tag":2202,"props":2235,"children":2236},{},[2237,2242],{"type":43,"tag":2224,"props":2238,"children":2239},{},[2240],{"type":48,"value":2241},"1",{"type":43,"tag":2224,"props":2243,"children":2244},{},[2245],{"type":48,"value":2246},"Invalid outbox (schema error, missing creds)",{"type":43,"tag":2202,"props":2248,"children":2249},{},[2250,2255],{"type":43,"tag":2224,"props":2251,"children":2252},{},[2253],{"type":48,"value":2254},"2",{"type":43,"tag":2224,"props":2256,"children":2257},{},[2258],{"type":48,"value":2259},"Partial failure (some succeeded, some failed)",{"type":43,"tag":50,"props":2261,"children":2262},{},[2263,2265,2271],{"type":48,"value":2264},"Thread failures include a ",{"type":43,"tag":91,"props":2266,"children":2268},{"className":2267},[],[2269],{"type":48,"value":2270},"resumeFrom",{"type":48,"value":2272}," field with the index and remaining posts so you can retry just the tail.",{"type":43,"tag":69,"props":2274,"children":2276},{"id":2275},"character-limits",[2277],{"type":48,"value":2278},"Character limits",{"type":43,"tag":2194,"props":2280,"children":2281},{},[2282,2298],{"type":43,"tag":2198,"props":2283,"children":2284},{},[2285],{"type":43,"tag":2202,"props":2286,"children":2287},{},[2288,2293],{"type":43,"tag":2206,"props":2289,"children":2290},{},[2291],{"type":48,"value":2292},"Platform",{"type":43,"tag":2206,"props":2294,"children":2295},{},[2296],{"type":48,"value":2297},"Limit",{"type":43,"tag":2217,"props":2299,"children":2300},{},[2301,2314],{"type":43,"tag":2202,"props":2302,"children":2303},{},[2304,2309],{"type":43,"tag":2224,"props":2305,"children":2306},{},[2307],{"type":48,"value":2308},"Bluesky",{"type":43,"tag":2224,"props":2310,"children":2311},{},[2312],{"type":48,"value":2313},"300 chars",{"type":43,"tag":2202,"props":2315,"children":2316},{},[2317,2322],{"type":43,"tag":2224,"props":2318,"children":2319},{},[2320],{"type":48,"value":2321},"X",{"type":43,"tag":2224,"props":2323,"children":2324},{},[2325],{"type":48,"value":2326},"280 chars",{"type":43,"tag":50,"props":2328,"children":2329},{},[2330],{"type":48,"value":2331},"The CLI rejects over-limit posts before hitting the API.",{"type":43,"tag":69,"props":2333,"children":2335},{"id":2334},"platform-differences",[2336],{"type":48,"value":2337},"Platform differences",{"type":43,"tag":2194,"props":2339,"children":2340},{},[2341,2360],{"type":43,"tag":2198,"props":2342,"children":2343},{},[2344],{"type":43,"tag":2202,"props":2345,"children":2346},{},[2347,2352,2356],{"type":43,"tag":2206,"props":2348,"children":2349},{},[2350],{"type":48,"value":2351},"Feature",{"type":43,"tag":2206,"props":2353,"children":2354},{},[2355],{"type":48,"value":2308},{"type":43,"tag":2206,"props":2357,"children":2358},{},[2359],{"type":48,"value":2321},{"type":43,"tag":2217,"props":2361,"children":2362},{},[2363,2387,2403,2421,2437,2455],{"type":43,"tag":2202,"props":2364,"children":2365},{},[2366,2377,2382],{"type":43,"tag":2224,"props":2367,"children":2368},{},[2369,2371,2376],{"type":48,"value":2370},"Annotations (",{"type":43,"tag":91,"props":2372,"children":2374},{"className":2373},[],[2375],{"type":48,"value":1093},{"type":48,"value":1285},{"type":43,"tag":2224,"props":2378,"children":2379},{},[2380],{"type":48,"value":2381},"Yes",{"type":43,"tag":2224,"props":2383,"children":2384},{},[2385],{"type":48,"value":2386},"No",{"type":43,"tag":2202,"props":2388,"children":2389},{},[2390,2395,2399],{"type":43,"tag":2224,"props":2391,"children":2392},{},[2393],{"type":48,"value":2394},"Search",{"type":43,"tag":2224,"props":2396,"children":2397},{},[2398],{"type":48,"value":2381},{"type":43,"tag":2224,"props":2400,"children":2401},{},[2402],{"type":48,"value":2381},{"type":43,"tag":2202,"props":2404,"children":2405},{},[2406,2411,2416],{"type":43,"tag":2224,"props":2407,"children":2408},{},[2409],{"type":48,"value":2410},"Feed",{"type":43,"tag":2224,"props":2412,"children":2413},{},[2414],{"type":48,"value":2415},"Yes (custom feeds)",{"type":43,"tag":2224,"props":2417,"children":2418},{},[2419],{"type":48,"value":2420},"Yes (home\u002Fuser)",{"type":43,"tag":2202,"props":2422,"children":2423},{},[2424,2429,2433],{"type":43,"tag":2224,"props":2425,"children":2426},{},[2427],{"type":48,"value":2428},"Threads",{"type":43,"tag":2224,"props":2430,"children":2431},{},[2432],{"type":48,"value":2381},{"type":43,"tag":2224,"props":2434,"children":2435},{},[2436],{"type":48,"value":2381},{"type":43,"tag":2202,"props":2438,"children":2439},{},[2440,2445,2450],{"type":43,"tag":2224,"props":2441,"children":2442},{},[2443],{"type":48,"value":2444},"Notifications",{"type":43,"tag":2224,"props":2446,"children":2447},{},[2448],{"type":48,"value":2449},"mention, reply, like, follow, repost, quote",{"type":43,"tag":2224,"props":2451,"children":2452},{},[2453],{"type":48,"value":2454},"mentions only",{"type":43,"tag":2202,"props":2456,"children":2457},{},[2458,2463,2467],{"type":43,"tag":2224,"props":2459,"children":2460},{},[2461],{"type":48,"value":2462},"Quote post context",{"type":43,"tag":2224,"props":2464,"children":2465},{},[2466],{"type":48,"value":2381},{"type":43,"tag":2224,"props":2468,"children":2469},{},[2470],{"type":48,"value":2381},{"type":43,"tag":69,"props":2472,"children":2474},{"id":2473},"resilience",[2475],{"type":48,"value":2476},"Resilience",{"type":43,"tag":528,"props":2478,"children":2479},{},[2480,2492,2497,2502,2513],{"type":43,"tag":532,"props":2481,"children":2482},{},[2483,2485,2491],{"type":48,"value":2484},"Retries 3x with exponential backoff on 429s, 5xx, and network errors. Respects ",{"type":43,"tag":91,"props":2486,"children":2488},{"className":2487},[],[2489],{"type":48,"value":2490},"Retry-After",{"type":48,"value":1271},{"type":43,"tag":532,"props":2493,"children":2494},{},[2495],{"type":48,"value":2496},"Bluesky session auto-refreshes on token expiry.",{"type":43,"tag":532,"props":2498,"children":2499},{},[2500],{"type":48,"value":2501},"Atomic file writes (tmp + rename) — no partial inbox\u002Foutbox corruption.",{"type":43,"tag":532,"props":2503,"children":2504},{},[2505,2507,2512],{"type":48,"value":2506},"Thread resume on partial failure via ",{"type":43,"tag":91,"props":2508,"children":2510},{"className":2509},[],[2511],{"type":48,"value":2270},{"type":48,"value":1271},{"type":43,"tag":532,"props":2514,"children":2515},{},[2516,2521],{"type":43,"tag":91,"props":2517,"children":2519},{"className":2518},[],[2520],{"type":48,"value":548},{"type":48,"value":2522}," prevents duplicate dispatch across runs.",{"type":43,"tag":69,"props":2524,"children":2526},{"id":2525},"working-directory-layout",[2527],{"type":48,"value":2528},"Working directory layout",{"type":43,"tag":50,"props":2530,"children":2531},{},[2532],{"type":48,"value":2533},"Everything is scoped to your current working directory, so you can run multiple agents with isolated state:",{"type":43,"tag":83,"props":2535,"children":2539},{"className":2536,"code":2538,"language":48},[2537],"language-text",".\u002F\n├── .env\n├── inbox-bsky.yaml          # sync output\n├── inbox-x.yaml\n├── outbox-bsky.yaml         # your decisions\n├── outbox-x.yaml\n├── dispatch_result-bsky.yaml  # last dispatch outcome\n├── dispatch_result-x.yaml\n├── sent_ledger-bsky.yaml      # replay protection\n├── sent_ledger-x.yaml\n└── feed.yaml                  # optional feed snapshots\n",[2540],{"type":43,"tag":91,"props":2541,"children":2542},{"__ignoreMap":88},[2543],{"type":48,"value":2538},{"type":43,"tag":69,"props":2545,"children":2547},{"id":2546},"references",[2548],{"type":48,"value":2549},"References",{"type":43,"tag":528,"props":2551,"children":2552},{},[2553,2564,2575],{"type":43,"tag":532,"props":2554,"children":2555},{},[2556,2562],{"type":43,"tag":91,"props":2557,"children":2559},{"className":2558},[],[2560],{"type":48,"value":2561},"references\u002Fcommands.md",{"type":48,"value":2563},": full command map with all flags",{"type":43,"tag":532,"props":2565,"children":2566},{},[2567,2573],{"type":43,"tag":91,"props":2568,"children":2570},{"className":2569},[],[2571],{"type":48,"value":2572},"references\u002Foutbox-schema.md",{"type":48,"value":2574},": complete outbox YAML schema",{"type":43,"tag":532,"props":2576,"children":2577},{},[2578,2584],{"type":43,"tag":91,"props":2579,"children":2581},{"className":2580},[],[2582],{"type":48,"value":2583},"references\u002Fagent-loop.md",{"type":48,"value":2585},": patterns for cron\u002Fsystemd automation loops",{"type":43,"tag":2587,"props":2588,"children":2589},"style",{},[2590],{"type":48,"value":2591},"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":2593,"total":2750},[2594,2610,2625,2637,2649,2663,2673,2684,2696,2712,2723,2735],{"slug":2595,"name":2595,"fn":2596,"description":2597,"org":2598,"tags":2599,"stars":2607,"repoUrl":2608,"updatedAt":2609},"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},[2600,2603,2604],{"name":2601,"slug":2602,"type":16},"Agents","agents",{"name":14,"slug":15,"type":16},{"name":2605,"slug":2606,"type":16},"GitHub","github",2831,"https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fletta-code","2026-07-13T06:22:58.45767",{"slug":2611,"name":2612,"fn":2613,"description":2614,"org":2615,"tags":2616,"stars":2607,"repoUrl":2608,"updatedAt":2624},"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},[2617,2618,2621],{"name":2601,"slug":2602,"type":16},{"name":2619,"slug":2620,"type":16},"AI Context","ai-context",{"name":2622,"slug":2623,"type":16},"Debugging","debugging","2026-07-13T06:22:50.151002",{"slug":2626,"name":2626,"fn":2627,"description":2628,"org":2629,"tags":2630,"stars":2607,"repoUrl":2608,"updatedAt":2636},"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},[2631,2632,2633],{"name":2601,"slug":2602,"type":16},{"name":14,"slug":15,"type":16},{"name":2634,"slug":2635,"type":16},"MCP","mcp","2026-07-13T06:23:37.646079",{"slug":2638,"name":2638,"fn":2639,"description":2640,"org":2641,"tags":2642,"stars":2607,"repoUrl":2608,"updatedAt":2648},"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},[2643,2644,2645],{"name":2601,"slug":2602,"type":16},{"name":14,"slug":15,"type":16},{"name":2646,"slug":2647,"type":16},"Coding","coding","2026-07-23T05:42:38.133565",{"slug":2650,"name":2650,"fn":2651,"description":2652,"org":2653,"tags":2654,"stars":2607,"repoUrl":2608,"updatedAt":2662},"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},[2655,2656,2659],{"name":2601,"slug":2602,"type":16},{"name":2657,"slug":2658,"type":16},"Documentation","documentation",{"name":2660,"slug":2661,"type":16},"Plugin Development","plugin-development","2026-07-13T06:22:56.998659",{"slug":2664,"name":2664,"fn":2665,"description":2666,"org":2667,"tags":2668,"stars":2607,"repoUrl":2608,"updatedAt":2672},"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},[2669,2670,2671],{"name":2601,"slug":2602,"type":16},{"name":14,"slug":15,"type":16},{"name":18,"slug":19,"type":16},"2026-07-13T06:23:18.266798",{"slug":2674,"name":2674,"fn":2675,"description":2676,"org":2677,"tags":2678,"stars":2607,"repoUrl":2608,"updatedAt":2683},"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},[2679,2680],{"name":18,"slug":19,"type":16},{"name":2681,"slug":2682,"type":16},"Engineering","engineering","2026-07-13T06:23:27.465985",{"slug":2685,"name":2685,"fn":2686,"description":2687,"org":2688,"tags":2689,"stars":2607,"repoUrl":2608,"updatedAt":2695},"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},[2690,2691,2692],{"name":2601,"slug":2602,"type":16},{"name":2646,"slug":2647,"type":16},{"name":2693,"slug":2694,"type":16},"Multi-Agent","multi-agent","2026-07-26T05:46:56.388845",{"slug":2697,"name":2697,"fn":2698,"description":2699,"org":2700,"tags":2701,"stars":2607,"repoUrl":2608,"updatedAt":2711},"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},[2702,2705,2708],{"name":2703,"slug":2704,"type":16},"Configuration","configuration",{"name":2706,"slug":2707,"type":16},"Desktop","desktop",{"name":2709,"slug":2710,"type":16},"Themes","themes","2026-07-13T06:23:41.407811",{"slug":2713,"name":2713,"fn":2714,"description":2715,"org":2716,"tags":2717,"stars":2607,"repoUrl":2608,"updatedAt":2722},"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},[2718,2719],{"name":2601,"slug":2602,"type":16},{"name":2720,"slug":2721,"type":16},"Management","management","2026-07-16T06:02:17.297841",{"slug":2724,"name":2724,"fn":2725,"description":2726,"org":2727,"tags":2728,"stars":2607,"repoUrl":2608,"updatedAt":2734},"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},[2729,2730,2733],{"name":2601,"slug":2602,"type":16},{"name":2731,"slug":2732,"type":16},"AI Infrastructure","ai-infrastructure",{"name":2703,"slug":2704,"type":16},"2026-07-13T06:23:08.838181",{"slug":2736,"name":2736,"fn":2737,"description":2738,"org":2739,"tags":2740,"stars":2607,"repoUrl":2608,"updatedAt":2749},"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},[2741,2744,2747],{"name":2742,"slug":2743,"type":16},"Creative","creative",{"name":2745,"slug":2746,"type":16},"Graphics","graphics",{"name":2748,"slug":2736,"type":16},"Image Generation","2026-07-13T06:23:06.189403",69,{"items":2752,"total":2862},[2753,2767,2780,2799,2812,2833,2843],{"slug":2754,"name":2754,"fn":2755,"description":2756,"org":2757,"tags":2758,"stars":26,"repoUrl":27,"updatedAt":2766},"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},[2759,2762,2763],{"name":2760,"slug":2761,"type":16},"Authentication","authentication",{"name":18,"slug":19,"type":16},{"name":2764,"slug":2765,"type":16},"Security","security","2026-07-13T06:24:39.504387",{"slug":2768,"name":2768,"fn":2769,"description":2770,"org":2771,"tags":2772,"stars":26,"repoUrl":27,"updatedAt":2779},"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},[2773,2774,2775,2776],{"name":14,"slug":15,"type":16},{"name":18,"slug":19,"type":16},{"name":24,"slug":25,"type":16},{"name":2777,"slug":2778,"type":16},"Slack","slack","2026-07-13T06:23:51.908511",{"slug":2781,"name":2781,"fn":2782,"description":2783,"org":2784,"tags":2785,"stars":26,"repoUrl":27,"updatedAt":2798},"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},[2786,2789,2792,2795],{"name":2787,"slug":2788,"type":16},"Communications","communications",{"name":2790,"slug":2791,"type":16},"LLM","llm",{"name":2793,"slug":2794,"type":16},"Research","research",{"name":2796,"slug":2797,"type":16},"Summarization","summarization","2026-07-13T06:24:20.520223",{"slug":2800,"name":2800,"fn":2801,"description":2802,"org":2803,"tags":2804,"stars":26,"repoUrl":27,"updatedAt":2811},"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},[2805,2806,2809,2810],{"name":2601,"slug":2602,"type":16},{"name":2807,"slug":2808,"type":16},"API Development","api-development",{"name":24,"slug":25,"type":16},{"name":2777,"slug":2778,"type":16},"2026-07-13T06:25:55.843495",{"slug":2813,"name":2813,"fn":2814,"description":2815,"org":2816,"tags":2817,"stars":26,"repoUrl":27,"updatedAt":2832},"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},[2818,2820,2823,2826,2829],{"name":2819,"slug":2813,"type":16},"Datadog",{"name":2821,"slug":2822,"type":16},"Logs","logs",{"name":2824,"slug":2825,"type":16},"Metrics","metrics",{"name":2827,"slug":2828,"type":16},"Monitoring","monitoring",{"name":2830,"slug":2831,"type":16},"Observability","observability","2026-07-13T06:24:27.990605",{"slug":2834,"name":2834,"fn":2835,"description":2836,"org":2837,"tags":2838,"stars":26,"repoUrl":27,"updatedAt":2842},"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},[2839,2840,2841],{"name":14,"slug":15,"type":16},{"name":18,"slug":19,"type":16},{"name":24,"slug":25,"type":16},"2026-07-13T06:24:26.62387",{"slug":2844,"name":2844,"fn":2845,"description":2846,"org":2847,"tags":2848,"stars":26,"repoUrl":27,"updatedAt":2861},"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},[2849,2852,2855,2858],{"name":2850,"slug":2851,"type":16},"Documents","documents",{"name":2853,"slug":2854,"type":16},"DOCX","docx",{"name":2856,"slug":2857,"type":16},"Office","office",{"name":2859,"slug":2860,"type":16},"Word","word","2026-07-13T06:23:44.299568",45]