[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-letta-gog":3,"mdc-zmd9h-key":46,"related-repo-letta-gog":982,"related-org-letta-gog":1100},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":35,"repoUrl":36,"updatedAt":37,"license":38,"forks":39,"topics":40,"repo":41,"sourceUrl":44,"mdContent":45},"gog","manage Google Workspace via CLI","Google Workspace CLI for Gmail, Calendar, Drive, Contacts, Sheets, and Docs.",{"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,26,29,32],{"name":14,"slug":15,"type":16},"Google Sheets","google-sheets","tag",{"name":18,"slug":19,"type":16},"Gmail","gmail",{"name":21,"slug":22,"type":16},"Google Drive","google-drive",{"name":24,"slug":25,"type":16},"Google Workspace","google-workspace",{"name":27,"slug":28,"type":16},"CLI","cli",{"name":30,"slug":31,"type":16},"Google Calendar","google-calendar",{"name":33,"slug":34,"type":16},"Google Docs","google-docs",127,"https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fskills","2026-07-13T06:23:49.339036",null,20,[],{"repoUrl":36,"stars":35,"forks":39,"topics":42,"description":43},[],"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\u002Fgog","---\nname: gog\ndescription: Google Workspace CLI for Gmail, Calendar, Drive, Contacts, Sheets, and Docs.\nhomepage: https:\u002F\u002Fgogcli.sh\n\n---\n\n# gog\n\nUse `gog` for Gmail\u002FCalendar\u002FDrive\u002FContacts\u002FSheets\u002FDocs. Requires OAuth setup.\n\nSetup (once)\n\n- `gog auth credentials \u002Fpath\u002Fto\u002Fclient_secret.json`\n- `gog auth add you@gmail.com --services gmail,calendar,drive,contacts,docs,sheets`\n- `gog auth list`\n\nCommon commands\n\n- Gmail search: `gog gmail search 'newer_than:7d' --max 10`\n- Gmail messages search (per email, ignores threading): `gog gmail messages search \"in:inbox from:ryanair.com\" --max 20 --account you@example.com`\n- Gmail send (plain): `gog gmail send --to a@b.com --subject \"Hi\" --body \"Hello\"`\n- Gmail send (multi-line): `gog gmail send --to a@b.com --subject \"Hi\" --body-file .\u002Fmessage.txt`\n- Gmail send (stdin): `gog gmail send --to a@b.com --subject \"Hi\" --body-file -`\n- Gmail send (HTML): `gog gmail send --to a@b.com --subject \"Hi\" --body-html \"\u003Cp>Hello\u003C\u002Fp>\"`\n- Gmail draft: `gog gmail drafts create --to a@b.com --subject \"Hi\" --body-file .\u002Fmessage.txt`\n- Gmail send draft: `gog gmail drafts send \u003CdraftId>`\n- Gmail reply: `gog gmail send --to a@b.com --subject \"Re: Hi\" --body \"Reply\" --reply-to-message-id \u003CmsgId>`\n- Calendar list events: `gog calendar events \u003CcalendarId> --from \u003Ciso> --to \u003Ciso>`\n- Calendar create event: `gog calendar create \u003CcalendarId> --summary \"Title\" --from \u003Ciso> --to \u003Ciso>`\n- Calendar create with color: `gog calendar create \u003CcalendarId> --summary \"Title\" --from \u003Ciso> --to \u003Ciso> --event-color 7`\n- Calendar update event: `gog calendar update \u003CcalendarId> \u003CeventId> --summary \"New Title\" --event-color 4`\n- Calendar show colors: `gog calendar colors`\n- Drive search: `gog drive search \"query\" --max 10`\n- Contacts: `gog contacts list --max 20`\n- Sheets get: `gog sheets get \u003CsheetId> \"Tab!A1:D10\" --json`\n- Sheets update: `gog sheets update \u003CsheetId> \"Tab!A1:B2\" --values-json '[[\"A\",\"B\"],[\"1\",\"2\"]]' --input USER_ENTERED`\n- Sheets append: `gog sheets append \u003CsheetId> \"Tab!A:C\" --values-json '[[\"x\",\"y\",\"z\"]]' --insert INSERT_ROWS`\n- Sheets clear: `gog sheets clear \u003CsheetId> \"Tab!A2:Z\"`\n- Sheets metadata: `gog sheets metadata \u003CsheetId> --json`\n- Docs export: `gog docs export \u003CdocId> --format txt --out \u002Ftmp\u002Fdoc.txt`\n- Docs cat: `gog docs cat \u003CdocId>`\n\nCalendar Colors\n\n- Use `gog calendar colors` to see all available event colors (IDs 1-11)\n- Add colors to events with `--event-color \u003Cid>` flag\n- Event color IDs (from `gog calendar colors` output):\n  - 1: #a4bdfc\n  - 2: #7ae7bf\n  - 3: #dbadff\n  - 4: #ff887c\n  - 5: #fbd75b\n  - 6: #ffb878\n  - 7: #46d6db\n  - 8: #e1e1e1\n  - 9: #5484ed\n  - 10: #51b749\n  - 11: #dc2127\n\nEmail Formatting\n\n- Prefer plain text. Use `--body-file` for multi-paragraph messages (or `--body-file -` for stdin).\n- Same `--body-file` pattern works for drafts and replies.\n- `--body` does not unescape `\\n`. If you need inline newlines, use a heredoc or `$'Line 1\\n\\nLine 2'`.\n- Use `--body-html` only when you need rich formatting.\n- HTML tags: `\u003Cp>` for paragraphs, `\u003Cbr>` for line breaks, `\u003Cstrong>` for bold, `\u003Cem>` for italic, `\u003Ca href=\"url\">` for links, `\u003Cul>`\u002F`\u003Cli>` for lists.\n- Example (plain text via stdin):\n\n  ```bash\n  gog gmail send --to recipient@example.com \\\n    --subject \"Meeting Follow-up\" \\\n    --body-file - \u003C\u003C'EOF'\n  Hi Name,\n\n  Thanks for meeting today. Next steps:\n  - Item one\n  - Item two\n\n  Best regards,\n  Your Name\n  EOF\n  ```\n\n- Example (HTML list):\n  ```bash\n  gog gmail send --to recipient@example.com \\\n    --subject \"Meeting Follow-up\" \\\n    --body-html \"\u003Cp>Hi Name,\u003C\u002Fp>\u003Cp>Thanks for meeting today. Here are the next steps:\u003C\u002Fp>\u003Cul>\u003Cli>Item one\u003C\u002Fli>\u003Cli>Item two\u003C\u002Fli>\u003C\u002Ful>\u003Cp>Best regards,\u003Cbr>Your Name\u003C\u002Fp>\"\n  ```\n\nNotes\n\n- Set `GOG_ACCOUNT=you@gmail.com` to avoid repeating `--account`.\n- For scripting, prefer `--json` plus `--no-input`.\n- Sheets values can be passed via `--values-json` (recommended) or as inline rows.\n- Docs supports export\u002Fcat\u002Fcopy. In-place edits require a Docs API client (not in gog).\n- Confirm before sending mail or creating events.\n- `gog gmail search` returns one row per thread; use `gog gmail messages search` when you need every individual email returned separately.\n",{"data":47,"body":49},{"name":4,"description":6,"homepage":48},"https:\u002F\u002Fgogcli.sh",{"type":50,"children":51},"root",[52,59,73,78,110,115,371,376,473,478,886,891,976],{"type":53,"tag":54,"props":55,"children":56},"element","h1",{"id":4},[57],{"type":58,"value":4},"text",{"type":53,"tag":60,"props":61,"children":62},"p",{},[63,65,71],{"type":58,"value":64},"Use ",{"type":53,"tag":66,"props":67,"children":69},"code",{"className":68},[],[70],{"type":58,"value":4},{"type":58,"value":72}," for Gmail\u002FCalendar\u002FDrive\u002FContacts\u002FSheets\u002FDocs. Requires OAuth setup.",{"type":53,"tag":60,"props":74,"children":75},{},[76],{"type":58,"value":77},"Setup (once)",{"type":53,"tag":79,"props":80,"children":81},"ul",{},[82,92,101],{"type":53,"tag":83,"props":84,"children":85},"li",{},[86],{"type":53,"tag":66,"props":87,"children":89},{"className":88},[],[90],{"type":58,"value":91},"gog auth credentials \u002Fpath\u002Fto\u002Fclient_secret.json",{"type":53,"tag":83,"props":93,"children":94},{},[95],{"type":53,"tag":66,"props":96,"children":98},{"className":97},[],[99],{"type":58,"value":100},"gog auth add you@gmail.com --services gmail,calendar,drive,contacts,docs,sheets",{"type":53,"tag":83,"props":102,"children":103},{},[104],{"type":53,"tag":66,"props":105,"children":107},{"className":106},[],[108],{"type":58,"value":109},"gog auth list",{"type":53,"tag":60,"props":111,"children":112},{},[113],{"type":58,"value":114},"Common commands",{"type":53,"tag":79,"props":116,"children":117},{},[118,129,140,151,162,173,184,195,206,217,228,239,250,261,272,283,294,305,316,327,338,349,360],{"type":53,"tag":83,"props":119,"children":120},{},[121,123],{"type":58,"value":122},"Gmail search: ",{"type":53,"tag":66,"props":124,"children":126},{"className":125},[],[127],{"type":58,"value":128},"gog gmail search 'newer_than:7d' --max 10",{"type":53,"tag":83,"props":130,"children":131},{},[132,134],{"type":58,"value":133},"Gmail messages search (per email, ignores threading): ",{"type":53,"tag":66,"props":135,"children":137},{"className":136},[],[138],{"type":58,"value":139},"gog gmail messages search \"in:inbox from:ryanair.com\" --max 20 --account you@example.com",{"type":53,"tag":83,"props":141,"children":142},{},[143,145],{"type":58,"value":144},"Gmail send (plain): ",{"type":53,"tag":66,"props":146,"children":148},{"className":147},[],[149],{"type":58,"value":150},"gog gmail send --to a@b.com --subject \"Hi\" --body \"Hello\"",{"type":53,"tag":83,"props":152,"children":153},{},[154,156],{"type":58,"value":155},"Gmail send (multi-line): ",{"type":53,"tag":66,"props":157,"children":159},{"className":158},[],[160],{"type":58,"value":161},"gog gmail send --to a@b.com --subject \"Hi\" --body-file .\u002Fmessage.txt",{"type":53,"tag":83,"props":163,"children":164},{},[165,167],{"type":58,"value":166},"Gmail send (stdin): ",{"type":53,"tag":66,"props":168,"children":170},{"className":169},[],[171],{"type":58,"value":172},"gog gmail send --to a@b.com --subject \"Hi\" --body-file -",{"type":53,"tag":83,"props":174,"children":175},{},[176,178],{"type":58,"value":177},"Gmail send (HTML): ",{"type":53,"tag":66,"props":179,"children":181},{"className":180},[],[182],{"type":58,"value":183},"gog gmail send --to a@b.com --subject \"Hi\" --body-html \"\u003Cp>Hello\u003C\u002Fp>\"",{"type":53,"tag":83,"props":185,"children":186},{},[187,189],{"type":58,"value":188},"Gmail draft: ",{"type":53,"tag":66,"props":190,"children":192},{"className":191},[],[193],{"type":58,"value":194},"gog gmail drafts create --to a@b.com --subject \"Hi\" --body-file .\u002Fmessage.txt",{"type":53,"tag":83,"props":196,"children":197},{},[198,200],{"type":58,"value":199},"Gmail send draft: ",{"type":53,"tag":66,"props":201,"children":203},{"className":202},[],[204],{"type":58,"value":205},"gog gmail drafts send \u003CdraftId>",{"type":53,"tag":83,"props":207,"children":208},{},[209,211],{"type":58,"value":210},"Gmail reply: ",{"type":53,"tag":66,"props":212,"children":214},{"className":213},[],[215],{"type":58,"value":216},"gog gmail send --to a@b.com --subject \"Re: Hi\" --body \"Reply\" --reply-to-message-id \u003CmsgId>",{"type":53,"tag":83,"props":218,"children":219},{},[220,222],{"type":58,"value":221},"Calendar list events: ",{"type":53,"tag":66,"props":223,"children":225},{"className":224},[],[226],{"type":58,"value":227},"gog calendar events \u003CcalendarId> --from \u003Ciso> --to \u003Ciso>",{"type":53,"tag":83,"props":229,"children":230},{},[231,233],{"type":58,"value":232},"Calendar create event: ",{"type":53,"tag":66,"props":234,"children":236},{"className":235},[],[237],{"type":58,"value":238},"gog calendar create \u003CcalendarId> --summary \"Title\" --from \u003Ciso> --to \u003Ciso>",{"type":53,"tag":83,"props":240,"children":241},{},[242,244],{"type":58,"value":243},"Calendar create with color: ",{"type":53,"tag":66,"props":245,"children":247},{"className":246},[],[248],{"type":58,"value":249},"gog calendar create \u003CcalendarId> --summary \"Title\" --from \u003Ciso> --to \u003Ciso> --event-color 7",{"type":53,"tag":83,"props":251,"children":252},{},[253,255],{"type":58,"value":254},"Calendar update event: ",{"type":53,"tag":66,"props":256,"children":258},{"className":257},[],[259],{"type":58,"value":260},"gog calendar update \u003CcalendarId> \u003CeventId> --summary \"New Title\" --event-color 4",{"type":53,"tag":83,"props":262,"children":263},{},[264,266],{"type":58,"value":265},"Calendar show colors: ",{"type":53,"tag":66,"props":267,"children":269},{"className":268},[],[270],{"type":58,"value":271},"gog calendar colors",{"type":53,"tag":83,"props":273,"children":274},{},[275,277],{"type":58,"value":276},"Drive search: ",{"type":53,"tag":66,"props":278,"children":280},{"className":279},[],[281],{"type":58,"value":282},"gog drive search \"query\" --max 10",{"type":53,"tag":83,"props":284,"children":285},{},[286,288],{"type":58,"value":287},"Contacts: ",{"type":53,"tag":66,"props":289,"children":291},{"className":290},[],[292],{"type":58,"value":293},"gog contacts list --max 20",{"type":53,"tag":83,"props":295,"children":296},{},[297,299],{"type":58,"value":298},"Sheets get: ",{"type":53,"tag":66,"props":300,"children":302},{"className":301},[],[303],{"type":58,"value":304},"gog sheets get \u003CsheetId> \"Tab!A1:D10\" --json",{"type":53,"tag":83,"props":306,"children":307},{},[308,310],{"type":58,"value":309},"Sheets update: ",{"type":53,"tag":66,"props":311,"children":313},{"className":312},[],[314],{"type":58,"value":315},"gog sheets update \u003CsheetId> \"Tab!A1:B2\" --values-json '[[\"A\",\"B\"],[\"1\",\"2\"]]' --input USER_ENTERED",{"type":53,"tag":83,"props":317,"children":318},{},[319,321],{"type":58,"value":320},"Sheets append: ",{"type":53,"tag":66,"props":322,"children":324},{"className":323},[],[325],{"type":58,"value":326},"gog sheets append \u003CsheetId> \"Tab!A:C\" --values-json '[[\"x\",\"y\",\"z\"]]' --insert INSERT_ROWS",{"type":53,"tag":83,"props":328,"children":329},{},[330,332],{"type":58,"value":331},"Sheets clear: ",{"type":53,"tag":66,"props":333,"children":335},{"className":334},[],[336],{"type":58,"value":337},"gog sheets clear \u003CsheetId> \"Tab!A2:Z\"",{"type":53,"tag":83,"props":339,"children":340},{},[341,343],{"type":58,"value":342},"Sheets metadata: ",{"type":53,"tag":66,"props":344,"children":346},{"className":345},[],[347],{"type":58,"value":348},"gog sheets metadata \u003CsheetId> --json",{"type":53,"tag":83,"props":350,"children":351},{},[352,354],{"type":58,"value":353},"Docs export: ",{"type":53,"tag":66,"props":355,"children":357},{"className":356},[],[358],{"type":58,"value":359},"gog docs export \u003CdocId> --format txt --out \u002Ftmp\u002Fdoc.txt",{"type":53,"tag":83,"props":361,"children":362},{},[363,365],{"type":58,"value":364},"Docs cat: ",{"type":53,"tag":66,"props":366,"children":368},{"className":367},[],[369],{"type":58,"value":370},"gog docs cat \u003CdocId>",{"type":53,"tag":60,"props":372,"children":373},{},[374],{"type":58,"value":375},"Calendar Colors",{"type":53,"tag":79,"props":377,"children":378},{},[379,390,403],{"type":53,"tag":83,"props":380,"children":381},{},[382,383,388],{"type":58,"value":64},{"type":53,"tag":66,"props":384,"children":386},{"className":385},[],[387],{"type":58,"value":271},{"type":58,"value":389}," to see all available event colors (IDs 1-11)",{"type":53,"tag":83,"props":391,"children":392},{},[393,395,401],{"type":58,"value":394},"Add colors to events with ",{"type":53,"tag":66,"props":396,"children":398},{"className":397},[],[399],{"type":58,"value":400},"--event-color \u003Cid>",{"type":58,"value":402}," flag",{"type":53,"tag":83,"props":404,"children":405},{},[406,408,413,415],{"type":58,"value":407},"Event color IDs (from ",{"type":53,"tag":66,"props":409,"children":411},{"className":410},[],[412],{"type":58,"value":271},{"type":58,"value":414}," output):\n",{"type":53,"tag":79,"props":416,"children":417},{},[418,423,428,433,438,443,448,453,458,463,468],{"type":53,"tag":83,"props":419,"children":420},{},[421],{"type":58,"value":422},"1: #a4bdfc",{"type":53,"tag":83,"props":424,"children":425},{},[426],{"type":58,"value":427},"2: #7ae7bf",{"type":53,"tag":83,"props":429,"children":430},{},[431],{"type":58,"value":432},"3: #dbadff",{"type":53,"tag":83,"props":434,"children":435},{},[436],{"type":58,"value":437},"4: #ff887c",{"type":53,"tag":83,"props":439,"children":440},{},[441],{"type":58,"value":442},"5: #fbd75b",{"type":53,"tag":83,"props":444,"children":445},{},[446],{"type":58,"value":447},"6: #ffb878",{"type":53,"tag":83,"props":449,"children":450},{},[451],{"type":58,"value":452},"7: #46d6db",{"type":53,"tag":83,"props":454,"children":455},{},[456],{"type":58,"value":457},"8: #e1e1e1",{"type":53,"tag":83,"props":459,"children":460},{},[461],{"type":58,"value":462},"9: #5484ed",{"type":53,"tag":83,"props":464,"children":465},{},[466],{"type":58,"value":467},"10: #51b749",{"type":53,"tag":83,"props":469,"children":470},{},[471],{"type":58,"value":472},"11: #dc2127",{"type":53,"tag":60,"props":474,"children":475},{},[476],{"type":58,"value":477},"Email Formatting",{"type":53,"tag":79,"props":479,"children":480},{},[481,502,514,541,553,614,802],{"type":53,"tag":83,"props":482,"children":483},{},[484,486,492,494,500],{"type":58,"value":485},"Prefer plain text. Use ",{"type":53,"tag":66,"props":487,"children":489},{"className":488},[],[490],{"type":58,"value":491},"--body-file",{"type":58,"value":493}," for multi-paragraph messages (or ",{"type":53,"tag":66,"props":495,"children":497},{"className":496},[],[498],{"type":58,"value":499},"--body-file -",{"type":58,"value":501}," for stdin).",{"type":53,"tag":83,"props":503,"children":504},{},[505,507,512],{"type":58,"value":506},"Same ",{"type":53,"tag":66,"props":508,"children":510},{"className":509},[],[511],{"type":58,"value":491},{"type":58,"value":513}," pattern works for drafts and replies.",{"type":53,"tag":83,"props":515,"children":516},{},[517,523,525,531,533,539],{"type":53,"tag":66,"props":518,"children":520},{"className":519},[],[521],{"type":58,"value":522},"--body",{"type":58,"value":524}," does not unescape ",{"type":53,"tag":66,"props":526,"children":528},{"className":527},[],[529],{"type":58,"value":530},"\\n",{"type":58,"value":532},". If you need inline newlines, use a heredoc or ",{"type":53,"tag":66,"props":534,"children":536},{"className":535},[],[537],{"type":58,"value":538},"$'Line 1\\n\\nLine 2'",{"type":58,"value":540},".",{"type":53,"tag":83,"props":542,"children":543},{},[544,545,551],{"type":58,"value":64},{"type":53,"tag":66,"props":546,"children":548},{"className":547},[],[549],{"type":58,"value":550},"--body-html",{"type":58,"value":552}," only when you need rich formatting.",{"type":53,"tag":83,"props":554,"children":555},{},[556,558,564,566,572,574,580,582,588,590,596,598,604,606,612],{"type":58,"value":557},"HTML tags: ",{"type":53,"tag":66,"props":559,"children":561},{"className":560},[],[562],{"type":58,"value":563},"\u003Cp>",{"type":58,"value":565}," for paragraphs, ",{"type":53,"tag":66,"props":567,"children":569},{"className":568},[],[570],{"type":58,"value":571},"\u003Cbr>",{"type":58,"value":573}," for line breaks, ",{"type":53,"tag":66,"props":575,"children":577},{"className":576},[],[578],{"type":58,"value":579},"\u003Cstrong>",{"type":58,"value":581}," for bold, ",{"type":53,"tag":66,"props":583,"children":585},{"className":584},[],[586],{"type":58,"value":587},"\u003Cem>",{"type":58,"value":589}," for italic, ",{"type":53,"tag":66,"props":591,"children":593},{"className":592},[],[594],{"type":58,"value":595},"\u003Ca href=\"url\">",{"type":58,"value":597}," for links, ",{"type":53,"tag":66,"props":599,"children":601},{"className":600},[],[602],{"type":58,"value":603},"\u003Cul>",{"type":58,"value":605},"\u002F",{"type":53,"tag":66,"props":607,"children":609},{"className":608},[],[610],{"type":58,"value":611},"\u003Cli>",{"type":58,"value":613}," for lists.",{"type":53,"tag":83,"props":615,"children":616},{},[617,619],{"type":58,"value":618},"Example (plain text via stdin):",{"type":53,"tag":620,"props":621,"children":626},"pre",{"className":622,"code":623,"language":624,"meta":625,"style":625},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","gog gmail send --to recipient@example.com \\\n  --subject \"Meeting Follow-up\" \\\n  --body-file - \u003C\u003C'EOF'\nHi Name,\n\nThanks for meeting today. Next steps:\n- Item one\n- Item two\n\nBest regards,\nYour Name\nEOF\n","bash","",[627],{"type":53,"tag":66,"props":628,"children":629},{"__ignoreMap":625},[630,668,697,721,730,740,749,758,767,775,784,793],{"type":53,"tag":631,"props":632,"children":635},"span",{"class":633,"line":634},"line",1,[636,641,647,652,657,662],{"type":53,"tag":631,"props":637,"children":639},{"style":638},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[640],{"type":58,"value":4},{"type":53,"tag":631,"props":642,"children":644},{"style":643},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[645],{"type":58,"value":646}," gmail",{"type":53,"tag":631,"props":648,"children":649},{"style":643},[650],{"type":58,"value":651}," send",{"type":53,"tag":631,"props":653,"children":654},{"style":643},[655],{"type":58,"value":656}," --to",{"type":53,"tag":631,"props":658,"children":659},{"style":643},[660],{"type":58,"value":661}," recipient@example.com",{"type":53,"tag":631,"props":663,"children":665},{"style":664},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[666],{"type":58,"value":667}," \\\n",{"type":53,"tag":631,"props":669,"children":671},{"class":633,"line":670},2,[672,677,683,688,693],{"type":53,"tag":631,"props":673,"children":674},{"style":643},[675],{"type":58,"value":676},"  --subject",{"type":53,"tag":631,"props":678,"children":680},{"style":679},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[681],{"type":58,"value":682}," \"",{"type":53,"tag":631,"props":684,"children":685},{"style":643},[686],{"type":58,"value":687},"Meeting Follow-up",{"type":53,"tag":631,"props":689,"children":690},{"style":679},[691],{"type":58,"value":692},"\"",{"type":53,"tag":631,"props":694,"children":695},{"style":664},[696],{"type":58,"value":667},{"type":53,"tag":631,"props":698,"children":700},{"class":633,"line":699},3,[701,706,711,716],{"type":53,"tag":631,"props":702,"children":703},{"style":643},[704],{"type":58,"value":705},"  --body-file",{"type":53,"tag":631,"props":707,"children":708},{"style":643},[709],{"type":58,"value":710}," -",{"type":53,"tag":631,"props":712,"children":713},{"style":679},[714],{"type":58,"value":715}," \u003C\u003C",{"type":53,"tag":631,"props":717,"children":718},{"style":679},[719],{"type":58,"value":720},"'EOF'\n",{"type":53,"tag":631,"props":722,"children":724},{"class":633,"line":723},4,[725],{"type":53,"tag":631,"props":726,"children":727},{"style":643},[728],{"type":58,"value":729},"Hi Name,\n",{"type":53,"tag":631,"props":731,"children":733},{"class":633,"line":732},5,[734],{"type":53,"tag":631,"props":735,"children":737},{"emptyLinePlaceholder":736},true,[738],{"type":58,"value":739},"\n",{"type":53,"tag":631,"props":741,"children":743},{"class":633,"line":742},6,[744],{"type":53,"tag":631,"props":745,"children":746},{"style":643},[747],{"type":58,"value":748},"Thanks for meeting today. Next steps:\n",{"type":53,"tag":631,"props":750,"children":752},{"class":633,"line":751},7,[753],{"type":53,"tag":631,"props":754,"children":755},{"style":643},[756],{"type":58,"value":757},"- Item one\n",{"type":53,"tag":631,"props":759,"children":761},{"class":633,"line":760},8,[762],{"type":53,"tag":631,"props":763,"children":764},{"style":643},[765],{"type":58,"value":766},"- Item two\n",{"type":53,"tag":631,"props":768,"children":770},{"class":633,"line":769},9,[771],{"type":53,"tag":631,"props":772,"children":773},{"emptyLinePlaceholder":736},[774],{"type":58,"value":739},{"type":53,"tag":631,"props":776,"children":778},{"class":633,"line":777},10,[779],{"type":53,"tag":631,"props":780,"children":781},{"style":643},[782],{"type":58,"value":783},"Best regards,\n",{"type":53,"tag":631,"props":785,"children":787},{"class":633,"line":786},11,[788],{"type":53,"tag":631,"props":789,"children":790},{"style":643},[791],{"type":58,"value":792},"Your Name\n",{"type":53,"tag":631,"props":794,"children":796},{"class":633,"line":795},12,[797],{"type":53,"tag":631,"props":798,"children":799},{"style":679},[800],{"type":58,"value":801},"EOF\n",{"type":53,"tag":83,"props":803,"children":804},{},[805,807],{"type":58,"value":806},"Example (HTML list):",{"type":53,"tag":620,"props":808,"children":810},{"className":622,"code":809,"language":624,"meta":625,"style":625},"gog gmail send --to recipient@example.com \\\n  --subject \"Meeting Follow-up\" \\\n  --body-html \"\u003Cp>Hi Name,\u003C\u002Fp>\u003Cp>Thanks for meeting today. Here are the next steps:\u003C\u002Fp>\u003Cul>\u003Cli>Item one\u003C\u002Fli>\u003Cli>Item two\u003C\u002Fli>\u003C\u002Ful>\u003Cp>Best regards,\u003Cbr>Your Name\u003C\u002Fp>\"\n",[811],{"type":53,"tag":66,"props":812,"children":813},{"__ignoreMap":625},[814,841,864],{"type":53,"tag":631,"props":815,"children":816},{"class":633,"line":634},[817,821,825,829,833,837],{"type":53,"tag":631,"props":818,"children":819},{"style":638},[820],{"type":58,"value":4},{"type":53,"tag":631,"props":822,"children":823},{"style":643},[824],{"type":58,"value":646},{"type":53,"tag":631,"props":826,"children":827},{"style":643},[828],{"type":58,"value":651},{"type":53,"tag":631,"props":830,"children":831},{"style":643},[832],{"type":58,"value":656},{"type":53,"tag":631,"props":834,"children":835},{"style":643},[836],{"type":58,"value":661},{"type":53,"tag":631,"props":838,"children":839},{"style":664},[840],{"type":58,"value":667},{"type":53,"tag":631,"props":842,"children":843},{"class":633,"line":670},[844,848,852,856,860],{"type":53,"tag":631,"props":845,"children":846},{"style":643},[847],{"type":58,"value":676},{"type":53,"tag":631,"props":849,"children":850},{"style":679},[851],{"type":58,"value":682},{"type":53,"tag":631,"props":853,"children":854},{"style":643},[855],{"type":58,"value":687},{"type":53,"tag":631,"props":857,"children":858},{"style":679},[859],{"type":58,"value":692},{"type":53,"tag":631,"props":861,"children":862},{"style":664},[863],{"type":58,"value":667},{"type":53,"tag":631,"props":865,"children":866},{"class":633,"line":699},[867,872,876,881],{"type":53,"tag":631,"props":868,"children":869},{"style":643},[870],{"type":58,"value":871},"  --body-html",{"type":53,"tag":631,"props":873,"children":874},{"style":679},[875],{"type":58,"value":682},{"type":53,"tag":631,"props":877,"children":878},{"style":643},[879],{"type":58,"value":880},"\u003Cp>Hi Name,\u003C\u002Fp>\u003Cp>Thanks for meeting today. Here are the next steps:\u003C\u002Fp>\u003Cul>\u003Cli>Item one\u003C\u002Fli>\u003Cli>Item two\u003C\u002Fli>\u003C\u002Ful>\u003Cp>Best regards,\u003Cbr>Your Name\u003C\u002Fp>",{"type":53,"tag":631,"props":882,"children":883},{"style":679},[884],{"type":58,"value":885},"\"\n",{"type":53,"tag":60,"props":887,"children":888},{},[889],{"type":58,"value":890},"Notes",{"type":53,"tag":79,"props":892,"children":893},{},[894,914,934,947,952,957],{"type":53,"tag":83,"props":895,"children":896},{},[897,899,905,907,913],{"type":58,"value":898},"Set ",{"type":53,"tag":66,"props":900,"children":902},{"className":901},[],[903],{"type":58,"value":904},"GOG_ACCOUNT=you@gmail.com",{"type":58,"value":906}," to avoid repeating ",{"type":53,"tag":66,"props":908,"children":910},{"className":909},[],[911],{"type":58,"value":912},"--account",{"type":58,"value":540},{"type":53,"tag":83,"props":915,"children":916},{},[917,919,925,927,933],{"type":58,"value":918},"For scripting, prefer ",{"type":53,"tag":66,"props":920,"children":922},{"className":921},[],[923],{"type":58,"value":924},"--json",{"type":58,"value":926}," plus ",{"type":53,"tag":66,"props":928,"children":930},{"className":929},[],[931],{"type":58,"value":932},"--no-input",{"type":58,"value":540},{"type":53,"tag":83,"props":935,"children":936},{},[937,939,945],{"type":58,"value":938},"Sheets values can be passed via ",{"type":53,"tag":66,"props":940,"children":942},{"className":941},[],[943],{"type":58,"value":944},"--values-json",{"type":58,"value":946}," (recommended) or as inline rows.",{"type":53,"tag":83,"props":948,"children":949},{},[950],{"type":58,"value":951},"Docs supports export\u002Fcat\u002Fcopy. In-place edits require a Docs API client (not in gog).",{"type":53,"tag":83,"props":953,"children":954},{},[955],{"type":58,"value":956},"Confirm before sending mail or creating events.",{"type":53,"tag":83,"props":958,"children":959},{},[960,966,968,974],{"type":53,"tag":66,"props":961,"children":963},{"className":962},[],[964],{"type":58,"value":965},"gog gmail search",{"type":58,"value":967}," returns one row per thread; use ",{"type":53,"tag":66,"props":969,"children":971},{"className":970},[],[972],{"type":58,"value":973},"gog gmail messages search",{"type":58,"value":975}," when you need every individual email returned separately.",{"type":53,"tag":977,"props":978,"children":979},"style",{},[980],{"type":58,"value":981},"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":983,"total":1099},[984,998,1015,1034,1049,1070,1080],{"slug":985,"name":985,"fn":986,"description":987,"org":988,"tags":989,"stars":35,"repoUrl":36,"updatedAt":997},"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},[990,993,994],{"name":991,"slug":992,"type":16},"Authentication","authentication",{"name":27,"slug":28,"type":16},{"name":995,"slug":996,"type":16},"Security","security","2026-07-13T06:24:39.504387",{"slug":999,"name":999,"fn":1000,"description":1001,"org":1002,"tags":1003,"stars":35,"repoUrl":36,"updatedAt":1014},"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},[1004,1007,1008,1011],{"name":1005,"slug":1006,"type":16},"Automation","automation",{"name":27,"slug":28,"type":16},{"name":1009,"slug":1010,"type":16},"Messaging","messaging",{"name":1012,"slug":1013,"type":16},"Slack","slack","2026-07-13T06:23:51.908511",{"slug":1016,"name":1016,"fn":1017,"description":1018,"org":1019,"tags":1020,"stars":35,"repoUrl":36,"updatedAt":1033},"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},[1021,1024,1027,1030],{"name":1022,"slug":1023,"type":16},"Communications","communications",{"name":1025,"slug":1026,"type":16},"LLM","llm",{"name":1028,"slug":1029,"type":16},"Research","research",{"name":1031,"slug":1032,"type":16},"Summarization","summarization","2026-07-13T06:24:20.520223",{"slug":1035,"name":1035,"fn":1036,"description":1037,"org":1038,"tags":1039,"stars":35,"repoUrl":36,"updatedAt":1048},"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},[1040,1043,1046,1047],{"name":1041,"slug":1042,"type":16},"Agents","agents",{"name":1044,"slug":1045,"type":16},"API Development","api-development",{"name":1009,"slug":1010,"type":16},{"name":1012,"slug":1013,"type":16},"2026-07-13T06:25:55.843495",{"slug":1050,"name":1050,"fn":1051,"description":1052,"org":1053,"tags":1054,"stars":35,"repoUrl":36,"updatedAt":1069},"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},[1055,1057,1060,1063,1066],{"name":1056,"slug":1050,"type":16},"Datadog",{"name":1058,"slug":1059,"type":16},"Logs","logs",{"name":1061,"slug":1062,"type":16},"Metrics","metrics",{"name":1064,"slug":1065,"type":16},"Monitoring","monitoring",{"name":1067,"slug":1068,"type":16},"Observability","observability","2026-07-13T06:24:27.990605",{"slug":1071,"name":1071,"fn":1072,"description":1073,"org":1074,"tags":1075,"stars":35,"repoUrl":36,"updatedAt":1079},"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},[1076,1077,1078],{"name":1005,"slug":1006,"type":16},{"name":27,"slug":28,"type":16},{"name":1009,"slug":1010,"type":16},"2026-07-13T06:24:26.62387",{"slug":1081,"name":1081,"fn":1082,"description":1083,"org":1084,"tags":1085,"stars":35,"repoUrl":36,"updatedAt":1098},"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},[1086,1089,1092,1095],{"name":1087,"slug":1088,"type":16},"Documents","documents",{"name":1090,"slug":1091,"type":16},"DOCX","docx",{"name":1093,"slug":1094,"type":16},"Office","office",{"name":1096,"slug":1097,"type":16},"Word","word","2026-07-13T06:23:44.299568",45,{"items":1101,"total":1256},[1102,1116,1131,1143,1155,1169,1179,1190,1202,1218,1229,1241],{"slug":1103,"name":1103,"fn":1104,"description":1105,"org":1106,"tags":1107,"stars":1113,"repoUrl":1114,"updatedAt":1115},"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},[1108,1109,1110],{"name":1041,"slug":1042,"type":16},{"name":1005,"slug":1006,"type":16},{"name":1111,"slug":1112,"type":16},"GitHub","github",2831,"https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fletta-code","2026-07-13T06:22:58.45767",{"slug":1117,"name":1118,"fn":1119,"description":1120,"org":1121,"tags":1122,"stars":1113,"repoUrl":1114,"updatedAt":1130},"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},[1123,1124,1127],{"name":1041,"slug":1042,"type":16},{"name":1125,"slug":1126,"type":16},"AI Context","ai-context",{"name":1128,"slug":1129,"type":16},"Debugging","debugging","2026-07-13T06:22:50.151002",{"slug":1132,"name":1132,"fn":1133,"description":1134,"org":1135,"tags":1136,"stars":1113,"repoUrl":1114,"updatedAt":1142},"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},[1137,1138,1139],{"name":1041,"slug":1042,"type":16},{"name":1005,"slug":1006,"type":16},{"name":1140,"slug":1141,"type":16},"MCP","mcp","2026-07-13T06:23:37.646079",{"slug":1144,"name":1144,"fn":1145,"description":1146,"org":1147,"tags":1148,"stars":1113,"repoUrl":1114,"updatedAt":1154},"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},[1149,1150,1151],{"name":1041,"slug":1042,"type":16},{"name":1005,"slug":1006,"type":16},{"name":1152,"slug":1153,"type":16},"Coding","coding","2026-07-23T05:42:38.133565",{"slug":1156,"name":1156,"fn":1157,"description":1158,"org":1159,"tags":1160,"stars":1113,"repoUrl":1114,"updatedAt":1168},"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},[1161,1162,1165],{"name":1041,"slug":1042,"type":16},{"name":1163,"slug":1164,"type":16},"Documentation","documentation",{"name":1166,"slug":1167,"type":16},"Plugin Development","plugin-development","2026-07-13T06:22:56.998659",{"slug":1170,"name":1170,"fn":1171,"description":1172,"org":1173,"tags":1174,"stars":1113,"repoUrl":1114,"updatedAt":1178},"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},[1175,1176,1177],{"name":1041,"slug":1042,"type":16},{"name":1005,"slug":1006,"type":16},{"name":27,"slug":28,"type":16},"2026-07-13T06:23:18.266798",{"slug":1180,"name":1180,"fn":1181,"description":1182,"org":1183,"tags":1184,"stars":1113,"repoUrl":1114,"updatedAt":1189},"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},[1185,1186],{"name":27,"slug":28,"type":16},{"name":1187,"slug":1188,"type":16},"Engineering","engineering","2026-07-13T06:23:27.465985",{"slug":1191,"name":1191,"fn":1192,"description":1193,"org":1194,"tags":1195,"stars":1113,"repoUrl":1114,"updatedAt":1201},"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},[1196,1197,1198],{"name":1041,"slug":1042,"type":16},{"name":1152,"slug":1153,"type":16},{"name":1199,"slug":1200,"type":16},"Multi-Agent","multi-agent","2026-07-26T05:46:56.388845",{"slug":1203,"name":1203,"fn":1204,"description":1205,"org":1206,"tags":1207,"stars":1113,"repoUrl":1114,"updatedAt":1217},"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},[1208,1211,1214],{"name":1209,"slug":1210,"type":16},"Configuration","configuration",{"name":1212,"slug":1213,"type":16},"Desktop","desktop",{"name":1215,"slug":1216,"type":16},"Themes","themes","2026-07-13T06:23:41.407811",{"slug":1219,"name":1219,"fn":1220,"description":1221,"org":1222,"tags":1223,"stars":1113,"repoUrl":1114,"updatedAt":1228},"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},[1224,1225],{"name":1041,"slug":1042,"type":16},{"name":1226,"slug":1227,"type":16},"Management","management","2026-07-16T06:02:17.297841",{"slug":1230,"name":1230,"fn":1231,"description":1232,"org":1233,"tags":1234,"stars":1113,"repoUrl":1114,"updatedAt":1240},"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},[1235,1236,1239],{"name":1041,"slug":1042,"type":16},{"name":1237,"slug":1238,"type":16},"AI Infrastructure","ai-infrastructure",{"name":1209,"slug":1210,"type":16},"2026-07-13T06:23:08.838181",{"slug":1242,"name":1242,"fn":1243,"description":1244,"org":1245,"tags":1246,"stars":1113,"repoUrl":1114,"updatedAt":1255},"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},[1247,1250,1253],{"name":1248,"slug":1249,"type":16},"Creative","creative",{"name":1251,"slug":1252,"type":16},"Graphics","graphics",{"name":1254,"slug":1242,"type":16},"Image Generation","2026-07-13T06:23:06.189403",69]