[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-deepgram-himalaya":3,"mdc-c9n63x-key":32,"related-repo-deepgram-himalaya":1601,"related-org-deepgram-himalaya":1693},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":28,"sourceUrl":30,"mdContent":31},"himalaya","manage emails via Himalaya CLI","CLI to manage emails via IMAP\u002FSMTP. Use `himalaya` to list, read, write, reply, forward, search, and organize emails from the terminal. Supports multiple accounts and message composition with MML (MIME Meta Language).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"deepgram","Deepgram","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fdeepgram.png",[12,16,19],{"name":13,"slug":14,"type":15},"CLI","cli","tag",{"name":17,"slug":18,"type":15},"Email","email",{"name":20,"slug":21,"type":15},"Communications","communications",23,"https:\u002F\u002Fgithub.com\u002Fdeepgram\u002Fdglabs-deepclaw","2026-07-12T08:28:36.821503",null,9,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":25},[],"https:\u002F\u002Fgithub.com\u002Fdeepgram\u002Fdglabs-deepclaw\u002Ftree\u002FHEAD\u002Fskills\u002Fhimalaya","---\nname: himalaya\ndescription: \"CLI to manage emails via IMAP\u002FSMTP. Use `himalaya` to list, read, write, reply, forward, search, and organize emails from the terminal. Supports multiple accounts and message composition with MML (MIME Meta Language).\"\nhomepage: https:\u002F\u002Fgithub.com\u002Fpimalaya\u002Fhimalaya\nmetadata:\n  {\n    \"openclaw\":\n      {\n        \"emoji\": \"📧\",\n        \"requires\": { \"bins\": [\"himalaya\"] },\n        \"install\":\n          [\n            {\n              \"id\": \"brew\",\n              \"kind\": \"brew\",\n              \"formula\": \"himalaya\",\n              \"bins\": [\"himalaya\"],\n              \"label\": \"Install Himalaya (brew)\",\n            },\n          ],\n      },\n  }\n---\n\n# Himalaya Email CLI\n\nHimalaya is a CLI email client that lets you manage emails from the terminal using IMAP, SMTP, Notmuch, or Sendmail backends.\n\n## References\n\n- `references\u002Fconfiguration.md` (config file setup + IMAP\u002FSMTP authentication)\n- `references\u002Fmessage-composition.md` (MML syntax for composing emails)\n\n## Prerequisites\n\n1. Himalaya CLI installed (`himalaya --version` to verify)\n2. A configuration file at `~\u002F.config\u002Fhimalaya\u002Fconfig.toml`\n3. IMAP\u002FSMTP credentials configured (password stored securely)\n\n## Configuration Setup\n\nRun the interactive wizard to set up an account:\n\n```bash\nhimalaya account configure\n```\n\nOr create `~\u002F.config\u002Fhimalaya\u002Fconfig.toml` manually:\n\n```toml\n[accounts.personal]\nemail = \"you@example.com\"\ndisplay-name = \"Your Name\"\ndefault = true\n\nbackend.type = \"imap\"\nbackend.host = \"imap.example.com\"\nbackend.port = 993\nbackend.encryption.type = \"tls\"\nbackend.login = \"you@example.com\"\nbackend.auth.type = \"password\"\nbackend.auth.cmd = \"pass show email\u002Fimap\"  # or use keyring\n\nmessage.send.backend.type = \"smtp\"\nmessage.send.backend.host = \"smtp.example.com\"\nmessage.send.backend.port = 587\nmessage.send.backend.encryption.type = \"start-tls\"\nmessage.send.backend.login = \"you@example.com\"\nmessage.send.backend.auth.type = \"password\"\nmessage.send.backend.auth.cmd = \"pass show email\u002Fsmtp\"\n```\n\n## Common Operations\n\n### List Folders\n\n```bash\nhimalaya folder list\n```\n\n### List Emails\n\nList emails in INBOX (default):\n\n```bash\nhimalaya envelope list\n```\n\nList emails in a specific folder:\n\n```bash\nhimalaya envelope list --folder \"Sent\"\n```\n\nList with pagination:\n\n```bash\nhimalaya envelope list --page 1 --page-size 20\n```\n\n### Search Emails\n\n```bash\nhimalaya envelope list from john@example.com subject meeting\n```\n\n### Read an Email\n\nRead email by ID (shows plain text):\n\n```bash\nhimalaya message read 42\n```\n\nExport raw MIME:\n\n```bash\nhimalaya message export 42 --full\n```\n\n### Reply to an Email\n\nInteractive reply (opens $EDITOR):\n\n```bash\nhimalaya message reply 42\n```\n\nReply-all:\n\n```bash\nhimalaya message reply 42 --all\n```\n\n### Forward an Email\n\n```bash\nhimalaya message forward 42\n```\n\n### Write a New Email\n\nInteractive compose (opens $EDITOR):\n\n```bash\nhimalaya message write\n```\n\nSend directly using template:\n\n```bash\ncat \u003C\u003C 'EOF' | himalaya template send\nFrom: you@example.com\nTo: recipient@example.com\nSubject: Test Message\n\nHello from Himalaya!\nEOF\n```\n\nOr with headers flag:\n\n```bash\nhimalaya message write -H \"To:recipient@example.com\" -H \"Subject:Test\" \"Message body here\"\n```\n\n### Move\u002FCopy Emails\n\nMove to folder:\n\n```bash\nhimalaya message move 42 \"Archive\"\n```\n\nCopy to folder:\n\n```bash\nhimalaya message copy 42 \"Important\"\n```\n\n### Delete an Email\n\n```bash\nhimalaya message delete 42\n```\n\n### Manage Flags\n\nAdd flag:\n\n```bash\nhimalaya flag add 42 --flag seen\n```\n\nRemove flag:\n\n```bash\nhimalaya flag remove 42 --flag seen\n```\n\n## Multiple Accounts\n\nList accounts:\n\n```bash\nhimalaya account list\n```\n\nUse a specific account:\n\n```bash\nhimalaya --account work envelope list\n```\n\n## Attachments\n\nSave attachments from a message:\n\n```bash\nhimalaya attachment download 42\n```\n\nSave to specific directory:\n\n```bash\nhimalaya attachment download 42 --dir ~\u002FDownloads\n```\n\n## Output Formats\n\nMost commands support `--output` for structured output:\n\n```bash\nhimalaya envelope list --output json\nhimalaya envelope list --output plain\n```\n\n## Debugging\n\nEnable debug logging:\n\n```bash\nRUST_LOG=debug himalaya envelope list\n```\n\nFull trace with backtrace:\n\n```bash\nRUST_LOG=trace RUST_BACKTRACE=1 himalaya envelope list\n```\n\n## Tips\n\n- Use `himalaya --help` or `himalaya \u003Ccommand> --help` for detailed usage.\n- Message IDs are relative to the current folder; re-list after folder changes.\n- For composing rich emails with attachments, use MML syntax (see `references\u002Fmessage-composition.md`).\n- Store passwords securely using `pass`, system keyring, or a command that outputs the password.\n",{"data":33,"body":45},{"name":4,"description":6,"homepage":34,"metadata":35},"https:\u002F\u002Fgithub.com\u002Fpimalaya\u002Fhimalaya",{"openclaw":36},{"emoji":37,"requires":38,"install":40},"📧",{"bins":39},[4],[41],{"id":42,"kind":42,"formula":4,"bins":43,"label":44},"brew",[4],"Install Himalaya (brew)",{"type":46,"children":47},"root",[48,57,63,70,98,104,137,143,148,181,193,380,386,393,417,423,428,451,456,500,505,548,554,596,602,607,636,641,674,680,685,712,717,748,754,781,787,792,815,820,912,917,989,995,1000,1040,1045,1085,1091,1118,1124,1129,1167,1172,1207,1213,1218,1240,1245,1277,1283,1288,1316,1321,1357,1363,1376,1432,1438,1443,1481,1486,1535,1541,1595],{"type":49,"tag":50,"props":51,"children":53},"element","h1",{"id":52},"himalaya-email-cli",[54],{"type":55,"value":56},"text","Himalaya Email CLI",{"type":49,"tag":58,"props":59,"children":60},"p",{},[61],{"type":55,"value":62},"Himalaya is a CLI email client that lets you manage emails from the terminal using IMAP, SMTP, Notmuch, or Sendmail backends.",{"type":49,"tag":64,"props":65,"children":67},"h2",{"id":66},"references",[68],{"type":55,"value":69},"References",{"type":49,"tag":71,"props":72,"children":73},"ul",{},[74,87],{"type":49,"tag":75,"props":76,"children":77},"li",{},[78,85],{"type":49,"tag":79,"props":80,"children":82},"code",{"className":81},[],[83],{"type":55,"value":84},"references\u002Fconfiguration.md",{"type":55,"value":86}," (config file setup + IMAP\u002FSMTP authentication)",{"type":49,"tag":75,"props":88,"children":89},{},[90,96],{"type":49,"tag":79,"props":91,"children":93},{"className":92},[],[94],{"type":55,"value":95},"references\u002Fmessage-composition.md",{"type":55,"value":97}," (MML syntax for composing emails)",{"type":49,"tag":64,"props":99,"children":101},{"id":100},"prerequisites",[102],{"type":55,"value":103},"Prerequisites",{"type":49,"tag":105,"props":106,"children":107},"ol",{},[108,121,132],{"type":49,"tag":75,"props":109,"children":110},{},[111,113,119],{"type":55,"value":112},"Himalaya CLI installed (",{"type":49,"tag":79,"props":114,"children":116},{"className":115},[],[117],{"type":55,"value":118},"himalaya --version",{"type":55,"value":120}," to verify)",{"type":49,"tag":75,"props":122,"children":123},{},[124,126],{"type":55,"value":125},"A configuration file at ",{"type":49,"tag":79,"props":127,"children":129},{"className":128},[],[130],{"type":55,"value":131},"~\u002F.config\u002Fhimalaya\u002Fconfig.toml",{"type":49,"tag":75,"props":133,"children":134},{},[135],{"type":55,"value":136},"IMAP\u002FSMTP credentials configured (password stored securely)",{"type":49,"tag":64,"props":138,"children":140},{"id":139},"configuration-setup",[141],{"type":55,"value":142},"Configuration Setup",{"type":49,"tag":58,"props":144,"children":145},{},[146],{"type":55,"value":147},"Run the interactive wizard to set up an account:",{"type":49,"tag":149,"props":150,"children":155},"pre",{"className":151,"code":152,"language":153,"meta":154,"style":154},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","himalaya account configure\n","bash","",[156],{"type":49,"tag":79,"props":157,"children":158},{"__ignoreMap":154},[159],{"type":49,"tag":160,"props":161,"children":164},"span",{"class":162,"line":163},"line",1,[165,170,176],{"type":49,"tag":160,"props":166,"children":168},{"style":167},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[169],{"type":55,"value":4},{"type":49,"tag":160,"props":171,"children":173},{"style":172},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[174],{"type":55,"value":175}," account",{"type":49,"tag":160,"props":177,"children":178},{"style":172},[179],{"type":55,"value":180}," configure\n",{"type":49,"tag":58,"props":182,"children":183},{},[184,186,191],{"type":55,"value":185},"Or create ",{"type":49,"tag":79,"props":187,"children":189},{"className":188},[],[190],{"type":55,"value":131},{"type":55,"value":192}," manually:",{"type":49,"tag":149,"props":194,"children":198},{"className":195,"code":196,"language":197,"meta":154,"style":154},"language-toml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","[accounts.personal]\nemail = \"you@example.com\"\ndisplay-name = \"Your Name\"\ndefault = true\n\nbackend.type = \"imap\"\nbackend.host = \"imap.example.com\"\nbackend.port = 993\nbackend.encryption.type = \"tls\"\nbackend.login = \"you@example.com\"\nbackend.auth.type = \"password\"\nbackend.auth.cmd = \"pass show email\u002Fimap\"  # or use keyring\n\nmessage.send.backend.type = \"smtp\"\nmessage.send.backend.host = \"smtp.example.com\"\nmessage.send.backend.port = 587\nmessage.send.backend.encryption.type = \"start-tls\"\nmessage.send.backend.login = \"you@example.com\"\nmessage.send.backend.auth.type = \"password\"\nmessage.send.backend.auth.cmd = \"pass show email\u002Fsmtp\"\n","toml",[199],{"type":49,"tag":79,"props":200,"children":201},{"__ignoreMap":154},[202,210,219,228,237,247,256,265,274,282,291,300,309,317,326,335,344,353,362,371],{"type":49,"tag":160,"props":203,"children":204},{"class":162,"line":163},[205],{"type":49,"tag":160,"props":206,"children":207},{},[208],{"type":55,"value":209},"[accounts.personal]\n",{"type":49,"tag":160,"props":211,"children":213},{"class":162,"line":212},2,[214],{"type":49,"tag":160,"props":215,"children":216},{},[217],{"type":55,"value":218},"email = \"you@example.com\"\n",{"type":49,"tag":160,"props":220,"children":222},{"class":162,"line":221},3,[223],{"type":49,"tag":160,"props":224,"children":225},{},[226],{"type":55,"value":227},"display-name = \"Your Name\"\n",{"type":49,"tag":160,"props":229,"children":231},{"class":162,"line":230},4,[232],{"type":49,"tag":160,"props":233,"children":234},{},[235],{"type":55,"value":236},"default = true\n",{"type":49,"tag":160,"props":238,"children":240},{"class":162,"line":239},5,[241],{"type":49,"tag":160,"props":242,"children":244},{"emptyLinePlaceholder":243},true,[245],{"type":55,"value":246},"\n",{"type":49,"tag":160,"props":248,"children":250},{"class":162,"line":249},6,[251],{"type":49,"tag":160,"props":252,"children":253},{},[254],{"type":55,"value":255},"backend.type = \"imap\"\n",{"type":49,"tag":160,"props":257,"children":259},{"class":162,"line":258},7,[260],{"type":49,"tag":160,"props":261,"children":262},{},[263],{"type":55,"value":264},"backend.host = \"imap.example.com\"\n",{"type":49,"tag":160,"props":266,"children":268},{"class":162,"line":267},8,[269],{"type":49,"tag":160,"props":270,"children":271},{},[272],{"type":55,"value":273},"backend.port = 993\n",{"type":49,"tag":160,"props":275,"children":276},{"class":162,"line":26},[277],{"type":49,"tag":160,"props":278,"children":279},{},[280],{"type":55,"value":281},"backend.encryption.type = \"tls\"\n",{"type":49,"tag":160,"props":283,"children":285},{"class":162,"line":284},10,[286],{"type":49,"tag":160,"props":287,"children":288},{},[289],{"type":55,"value":290},"backend.login = \"you@example.com\"\n",{"type":49,"tag":160,"props":292,"children":294},{"class":162,"line":293},11,[295],{"type":49,"tag":160,"props":296,"children":297},{},[298],{"type":55,"value":299},"backend.auth.type = \"password\"\n",{"type":49,"tag":160,"props":301,"children":303},{"class":162,"line":302},12,[304],{"type":49,"tag":160,"props":305,"children":306},{},[307],{"type":55,"value":308},"backend.auth.cmd = \"pass show email\u002Fimap\"  # or use keyring\n",{"type":49,"tag":160,"props":310,"children":312},{"class":162,"line":311},13,[313],{"type":49,"tag":160,"props":314,"children":315},{"emptyLinePlaceholder":243},[316],{"type":55,"value":246},{"type":49,"tag":160,"props":318,"children":320},{"class":162,"line":319},14,[321],{"type":49,"tag":160,"props":322,"children":323},{},[324],{"type":55,"value":325},"message.send.backend.type = \"smtp\"\n",{"type":49,"tag":160,"props":327,"children":329},{"class":162,"line":328},15,[330],{"type":49,"tag":160,"props":331,"children":332},{},[333],{"type":55,"value":334},"message.send.backend.host = \"smtp.example.com\"\n",{"type":49,"tag":160,"props":336,"children":338},{"class":162,"line":337},16,[339],{"type":49,"tag":160,"props":340,"children":341},{},[342],{"type":55,"value":343},"message.send.backend.port = 587\n",{"type":49,"tag":160,"props":345,"children":347},{"class":162,"line":346},17,[348],{"type":49,"tag":160,"props":349,"children":350},{},[351],{"type":55,"value":352},"message.send.backend.encryption.type = \"start-tls\"\n",{"type":49,"tag":160,"props":354,"children":356},{"class":162,"line":355},18,[357],{"type":49,"tag":160,"props":358,"children":359},{},[360],{"type":55,"value":361},"message.send.backend.login = \"you@example.com\"\n",{"type":49,"tag":160,"props":363,"children":365},{"class":162,"line":364},19,[366],{"type":49,"tag":160,"props":367,"children":368},{},[369],{"type":55,"value":370},"message.send.backend.auth.type = \"password\"\n",{"type":49,"tag":160,"props":372,"children":374},{"class":162,"line":373},20,[375],{"type":49,"tag":160,"props":376,"children":377},{},[378],{"type":55,"value":379},"message.send.backend.auth.cmd = \"pass show email\u002Fsmtp\"\n",{"type":49,"tag":64,"props":381,"children":383},{"id":382},"common-operations",[384],{"type":55,"value":385},"Common Operations",{"type":49,"tag":387,"props":388,"children":390},"h3",{"id":389},"list-folders",[391],{"type":55,"value":392},"List Folders",{"type":49,"tag":149,"props":394,"children":396},{"className":151,"code":395,"language":153,"meta":154,"style":154},"himalaya folder list\n",[397],{"type":49,"tag":79,"props":398,"children":399},{"__ignoreMap":154},[400],{"type":49,"tag":160,"props":401,"children":402},{"class":162,"line":163},[403,407,412],{"type":49,"tag":160,"props":404,"children":405},{"style":167},[406],{"type":55,"value":4},{"type":49,"tag":160,"props":408,"children":409},{"style":172},[410],{"type":55,"value":411}," folder",{"type":49,"tag":160,"props":413,"children":414},{"style":172},[415],{"type":55,"value":416}," list\n",{"type":49,"tag":387,"props":418,"children":420},{"id":419},"list-emails",[421],{"type":55,"value":422},"List Emails",{"type":49,"tag":58,"props":424,"children":425},{},[426],{"type":55,"value":427},"List emails in INBOX (default):",{"type":49,"tag":149,"props":429,"children":431},{"className":151,"code":430,"language":153,"meta":154,"style":154},"himalaya envelope list\n",[432],{"type":49,"tag":79,"props":433,"children":434},{"__ignoreMap":154},[435],{"type":49,"tag":160,"props":436,"children":437},{"class":162,"line":163},[438,442,447],{"type":49,"tag":160,"props":439,"children":440},{"style":167},[441],{"type":55,"value":4},{"type":49,"tag":160,"props":443,"children":444},{"style":172},[445],{"type":55,"value":446}," envelope",{"type":49,"tag":160,"props":448,"children":449},{"style":172},[450],{"type":55,"value":416},{"type":49,"tag":58,"props":452,"children":453},{},[454],{"type":55,"value":455},"List emails in a specific folder:",{"type":49,"tag":149,"props":457,"children":459},{"className":151,"code":458,"language":153,"meta":154,"style":154},"himalaya envelope list --folder \"Sent\"\n",[460],{"type":49,"tag":79,"props":461,"children":462},{"__ignoreMap":154},[463],{"type":49,"tag":160,"props":464,"children":465},{"class":162,"line":163},[466,470,474,479,484,490,495],{"type":49,"tag":160,"props":467,"children":468},{"style":167},[469],{"type":55,"value":4},{"type":49,"tag":160,"props":471,"children":472},{"style":172},[473],{"type":55,"value":446},{"type":49,"tag":160,"props":475,"children":476},{"style":172},[477],{"type":55,"value":478}," list",{"type":49,"tag":160,"props":480,"children":481},{"style":172},[482],{"type":55,"value":483}," --folder",{"type":49,"tag":160,"props":485,"children":487},{"style":486},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[488],{"type":55,"value":489}," \"",{"type":49,"tag":160,"props":491,"children":492},{"style":172},[493],{"type":55,"value":494},"Sent",{"type":49,"tag":160,"props":496,"children":497},{"style":486},[498],{"type":55,"value":499},"\"\n",{"type":49,"tag":58,"props":501,"children":502},{},[503],{"type":55,"value":504},"List with pagination:",{"type":49,"tag":149,"props":506,"children":508},{"className":151,"code":507,"language":153,"meta":154,"style":154},"himalaya envelope list --page 1 --page-size 20\n",[509],{"type":49,"tag":79,"props":510,"children":511},{"__ignoreMap":154},[512],{"type":49,"tag":160,"props":513,"children":514},{"class":162,"line":163},[515,519,523,527,532,538,543],{"type":49,"tag":160,"props":516,"children":517},{"style":167},[518],{"type":55,"value":4},{"type":49,"tag":160,"props":520,"children":521},{"style":172},[522],{"type":55,"value":446},{"type":49,"tag":160,"props":524,"children":525},{"style":172},[526],{"type":55,"value":478},{"type":49,"tag":160,"props":528,"children":529},{"style":172},[530],{"type":55,"value":531}," --page",{"type":49,"tag":160,"props":533,"children":535},{"style":534},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[536],{"type":55,"value":537}," 1",{"type":49,"tag":160,"props":539,"children":540},{"style":172},[541],{"type":55,"value":542}," --page-size",{"type":49,"tag":160,"props":544,"children":545},{"style":534},[546],{"type":55,"value":547}," 20\n",{"type":49,"tag":387,"props":549,"children":551},{"id":550},"search-emails",[552],{"type":55,"value":553},"Search Emails",{"type":49,"tag":149,"props":555,"children":557},{"className":151,"code":556,"language":153,"meta":154,"style":154},"himalaya envelope list from john@example.com subject meeting\n",[558],{"type":49,"tag":79,"props":559,"children":560},{"__ignoreMap":154},[561],{"type":49,"tag":160,"props":562,"children":563},{"class":162,"line":163},[564,568,572,576,581,586,591],{"type":49,"tag":160,"props":565,"children":566},{"style":167},[567],{"type":55,"value":4},{"type":49,"tag":160,"props":569,"children":570},{"style":172},[571],{"type":55,"value":446},{"type":49,"tag":160,"props":573,"children":574},{"style":172},[575],{"type":55,"value":478},{"type":49,"tag":160,"props":577,"children":578},{"style":172},[579],{"type":55,"value":580}," from",{"type":49,"tag":160,"props":582,"children":583},{"style":172},[584],{"type":55,"value":585}," john@example.com",{"type":49,"tag":160,"props":587,"children":588},{"style":172},[589],{"type":55,"value":590}," subject",{"type":49,"tag":160,"props":592,"children":593},{"style":172},[594],{"type":55,"value":595}," meeting\n",{"type":49,"tag":387,"props":597,"children":599},{"id":598},"read-an-email",[600],{"type":55,"value":601},"Read an Email",{"type":49,"tag":58,"props":603,"children":604},{},[605],{"type":55,"value":606},"Read email by ID (shows plain text):",{"type":49,"tag":149,"props":608,"children":610},{"className":151,"code":609,"language":153,"meta":154,"style":154},"himalaya message read 42\n",[611],{"type":49,"tag":79,"props":612,"children":613},{"__ignoreMap":154},[614],{"type":49,"tag":160,"props":615,"children":616},{"class":162,"line":163},[617,621,626,631],{"type":49,"tag":160,"props":618,"children":619},{"style":167},[620],{"type":55,"value":4},{"type":49,"tag":160,"props":622,"children":623},{"style":172},[624],{"type":55,"value":625}," message",{"type":49,"tag":160,"props":627,"children":628},{"style":172},[629],{"type":55,"value":630}," read",{"type":49,"tag":160,"props":632,"children":633},{"style":534},[634],{"type":55,"value":635}," 42\n",{"type":49,"tag":58,"props":637,"children":638},{},[639],{"type":55,"value":640},"Export raw MIME:",{"type":49,"tag":149,"props":642,"children":644},{"className":151,"code":643,"language":153,"meta":154,"style":154},"himalaya message export 42 --full\n",[645],{"type":49,"tag":79,"props":646,"children":647},{"__ignoreMap":154},[648],{"type":49,"tag":160,"props":649,"children":650},{"class":162,"line":163},[651,655,659,664,669],{"type":49,"tag":160,"props":652,"children":653},{"style":167},[654],{"type":55,"value":4},{"type":49,"tag":160,"props":656,"children":657},{"style":172},[658],{"type":55,"value":625},{"type":49,"tag":160,"props":660,"children":661},{"style":172},[662],{"type":55,"value":663}," export",{"type":49,"tag":160,"props":665,"children":666},{"style":534},[667],{"type":55,"value":668}," 42",{"type":49,"tag":160,"props":670,"children":671},{"style":172},[672],{"type":55,"value":673}," --full\n",{"type":49,"tag":387,"props":675,"children":677},{"id":676},"reply-to-an-email",[678],{"type":55,"value":679},"Reply to an Email",{"type":49,"tag":58,"props":681,"children":682},{},[683],{"type":55,"value":684},"Interactive reply (opens $EDITOR):",{"type":49,"tag":149,"props":686,"children":688},{"className":151,"code":687,"language":153,"meta":154,"style":154},"himalaya message reply 42\n",[689],{"type":49,"tag":79,"props":690,"children":691},{"__ignoreMap":154},[692],{"type":49,"tag":160,"props":693,"children":694},{"class":162,"line":163},[695,699,703,708],{"type":49,"tag":160,"props":696,"children":697},{"style":167},[698],{"type":55,"value":4},{"type":49,"tag":160,"props":700,"children":701},{"style":172},[702],{"type":55,"value":625},{"type":49,"tag":160,"props":704,"children":705},{"style":172},[706],{"type":55,"value":707}," reply",{"type":49,"tag":160,"props":709,"children":710},{"style":534},[711],{"type":55,"value":635},{"type":49,"tag":58,"props":713,"children":714},{},[715],{"type":55,"value":716},"Reply-all:",{"type":49,"tag":149,"props":718,"children":720},{"className":151,"code":719,"language":153,"meta":154,"style":154},"himalaya message reply 42 --all\n",[721],{"type":49,"tag":79,"props":722,"children":723},{"__ignoreMap":154},[724],{"type":49,"tag":160,"props":725,"children":726},{"class":162,"line":163},[727,731,735,739,743],{"type":49,"tag":160,"props":728,"children":729},{"style":167},[730],{"type":55,"value":4},{"type":49,"tag":160,"props":732,"children":733},{"style":172},[734],{"type":55,"value":625},{"type":49,"tag":160,"props":736,"children":737},{"style":172},[738],{"type":55,"value":707},{"type":49,"tag":160,"props":740,"children":741},{"style":534},[742],{"type":55,"value":668},{"type":49,"tag":160,"props":744,"children":745},{"style":172},[746],{"type":55,"value":747}," --all\n",{"type":49,"tag":387,"props":749,"children":751},{"id":750},"forward-an-email",[752],{"type":55,"value":753},"Forward an Email",{"type":49,"tag":149,"props":755,"children":757},{"className":151,"code":756,"language":153,"meta":154,"style":154},"himalaya message forward 42\n",[758],{"type":49,"tag":79,"props":759,"children":760},{"__ignoreMap":154},[761],{"type":49,"tag":160,"props":762,"children":763},{"class":162,"line":163},[764,768,772,777],{"type":49,"tag":160,"props":765,"children":766},{"style":167},[767],{"type":55,"value":4},{"type":49,"tag":160,"props":769,"children":770},{"style":172},[771],{"type":55,"value":625},{"type":49,"tag":160,"props":773,"children":774},{"style":172},[775],{"type":55,"value":776}," forward",{"type":49,"tag":160,"props":778,"children":779},{"style":534},[780],{"type":55,"value":635},{"type":49,"tag":387,"props":782,"children":784},{"id":783},"write-a-new-email",[785],{"type":55,"value":786},"Write a New Email",{"type":49,"tag":58,"props":788,"children":789},{},[790],{"type":55,"value":791},"Interactive compose (opens $EDITOR):",{"type":49,"tag":149,"props":793,"children":795},{"className":151,"code":794,"language":153,"meta":154,"style":154},"himalaya message write\n",[796],{"type":49,"tag":79,"props":797,"children":798},{"__ignoreMap":154},[799],{"type":49,"tag":160,"props":800,"children":801},{"class":162,"line":163},[802,806,810],{"type":49,"tag":160,"props":803,"children":804},{"style":167},[805],{"type":55,"value":4},{"type":49,"tag":160,"props":807,"children":808},{"style":172},[809],{"type":55,"value":625},{"type":49,"tag":160,"props":811,"children":812},{"style":172},[813],{"type":55,"value":814}," write\n",{"type":49,"tag":58,"props":816,"children":817},{},[818],{"type":55,"value":819},"Send directly using template:",{"type":49,"tag":149,"props":821,"children":823},{"className":151,"code":822,"language":153,"meta":154,"style":154},"cat \u003C\u003C 'EOF' | himalaya template send\nFrom: you@example.com\nTo: recipient@example.com\nSubject: Test Message\n\nHello from Himalaya!\nEOF\n",[824],{"type":49,"tag":79,"props":825,"children":826},{"__ignoreMap":154},[827,865,873,881,889,896,904],{"type":49,"tag":160,"props":828,"children":829},{"class":162,"line":163},[830,835,840,845,850,855,860],{"type":49,"tag":160,"props":831,"children":832},{"style":167},[833],{"type":55,"value":834},"cat",{"type":49,"tag":160,"props":836,"children":837},{"style":486},[838],{"type":55,"value":839}," \u003C\u003C",{"type":49,"tag":160,"props":841,"children":842},{"style":486},[843],{"type":55,"value":844}," 'EOF'",{"type":49,"tag":160,"props":846,"children":847},{"style":486},[848],{"type":55,"value":849}," |",{"type":49,"tag":160,"props":851,"children":852},{"style":167},[853],{"type":55,"value":854}," himalaya",{"type":49,"tag":160,"props":856,"children":857},{"style":172},[858],{"type":55,"value":859}," template",{"type":49,"tag":160,"props":861,"children":862},{"style":172},[863],{"type":55,"value":864}," send\n",{"type":49,"tag":160,"props":866,"children":867},{"class":162,"line":212},[868],{"type":49,"tag":160,"props":869,"children":870},{"style":172},[871],{"type":55,"value":872},"From: you@example.com\n",{"type":49,"tag":160,"props":874,"children":875},{"class":162,"line":221},[876],{"type":49,"tag":160,"props":877,"children":878},{"style":172},[879],{"type":55,"value":880},"To: recipient@example.com\n",{"type":49,"tag":160,"props":882,"children":883},{"class":162,"line":230},[884],{"type":49,"tag":160,"props":885,"children":886},{"style":172},[887],{"type":55,"value":888},"Subject: Test Message\n",{"type":49,"tag":160,"props":890,"children":891},{"class":162,"line":239},[892],{"type":49,"tag":160,"props":893,"children":894},{"emptyLinePlaceholder":243},[895],{"type":55,"value":246},{"type":49,"tag":160,"props":897,"children":898},{"class":162,"line":249},[899],{"type":49,"tag":160,"props":900,"children":901},{"style":172},[902],{"type":55,"value":903},"Hello from Himalaya!\n",{"type":49,"tag":160,"props":905,"children":906},{"class":162,"line":258},[907],{"type":49,"tag":160,"props":908,"children":909},{"style":486},[910],{"type":55,"value":911},"EOF\n",{"type":49,"tag":58,"props":913,"children":914},{},[915],{"type":55,"value":916},"Or with headers flag:",{"type":49,"tag":149,"props":918,"children":920},{"className":151,"code":919,"language":153,"meta":154,"style":154},"himalaya message write -H \"To:recipient@example.com\" -H \"Subject:Test\" \"Message body here\"\n",[921],{"type":49,"tag":79,"props":922,"children":923},{"__ignoreMap":154},[924],{"type":49,"tag":160,"props":925,"children":926},{"class":162,"line":163},[927,931,935,940,945,949,954,959,963,967,972,976,980,985],{"type":49,"tag":160,"props":928,"children":929},{"style":167},[930],{"type":55,"value":4},{"type":49,"tag":160,"props":932,"children":933},{"style":172},[934],{"type":55,"value":625},{"type":49,"tag":160,"props":936,"children":937},{"style":172},[938],{"type":55,"value":939}," write",{"type":49,"tag":160,"props":941,"children":942},{"style":172},[943],{"type":55,"value":944}," -H",{"type":49,"tag":160,"props":946,"children":947},{"style":486},[948],{"type":55,"value":489},{"type":49,"tag":160,"props":950,"children":951},{"style":172},[952],{"type":55,"value":953},"To:recipient@example.com",{"type":49,"tag":160,"props":955,"children":956},{"style":486},[957],{"type":55,"value":958},"\"",{"type":49,"tag":160,"props":960,"children":961},{"style":172},[962],{"type":55,"value":944},{"type":49,"tag":160,"props":964,"children":965},{"style":486},[966],{"type":55,"value":489},{"type":49,"tag":160,"props":968,"children":969},{"style":172},[970],{"type":55,"value":971},"Subject:Test",{"type":49,"tag":160,"props":973,"children":974},{"style":486},[975],{"type":55,"value":958},{"type":49,"tag":160,"props":977,"children":978},{"style":486},[979],{"type":55,"value":489},{"type":49,"tag":160,"props":981,"children":982},{"style":172},[983],{"type":55,"value":984},"Message body here",{"type":49,"tag":160,"props":986,"children":987},{"style":486},[988],{"type":55,"value":499},{"type":49,"tag":387,"props":990,"children":992},{"id":991},"movecopy-emails",[993],{"type":55,"value":994},"Move\u002FCopy Emails",{"type":49,"tag":58,"props":996,"children":997},{},[998],{"type":55,"value":999},"Move to folder:",{"type":49,"tag":149,"props":1001,"children":1003},{"className":151,"code":1002,"language":153,"meta":154,"style":154},"himalaya message move 42 \"Archive\"\n",[1004],{"type":49,"tag":79,"props":1005,"children":1006},{"__ignoreMap":154},[1007],{"type":49,"tag":160,"props":1008,"children":1009},{"class":162,"line":163},[1010,1014,1018,1023,1027,1031,1036],{"type":49,"tag":160,"props":1011,"children":1012},{"style":167},[1013],{"type":55,"value":4},{"type":49,"tag":160,"props":1015,"children":1016},{"style":172},[1017],{"type":55,"value":625},{"type":49,"tag":160,"props":1019,"children":1020},{"style":172},[1021],{"type":55,"value":1022}," move",{"type":49,"tag":160,"props":1024,"children":1025},{"style":534},[1026],{"type":55,"value":668},{"type":49,"tag":160,"props":1028,"children":1029},{"style":486},[1030],{"type":55,"value":489},{"type":49,"tag":160,"props":1032,"children":1033},{"style":172},[1034],{"type":55,"value":1035},"Archive",{"type":49,"tag":160,"props":1037,"children":1038},{"style":486},[1039],{"type":55,"value":499},{"type":49,"tag":58,"props":1041,"children":1042},{},[1043],{"type":55,"value":1044},"Copy to folder:",{"type":49,"tag":149,"props":1046,"children":1048},{"className":151,"code":1047,"language":153,"meta":154,"style":154},"himalaya message copy 42 \"Important\"\n",[1049],{"type":49,"tag":79,"props":1050,"children":1051},{"__ignoreMap":154},[1052],{"type":49,"tag":160,"props":1053,"children":1054},{"class":162,"line":163},[1055,1059,1063,1068,1072,1076,1081],{"type":49,"tag":160,"props":1056,"children":1057},{"style":167},[1058],{"type":55,"value":4},{"type":49,"tag":160,"props":1060,"children":1061},{"style":172},[1062],{"type":55,"value":625},{"type":49,"tag":160,"props":1064,"children":1065},{"style":172},[1066],{"type":55,"value":1067}," copy",{"type":49,"tag":160,"props":1069,"children":1070},{"style":534},[1071],{"type":55,"value":668},{"type":49,"tag":160,"props":1073,"children":1074},{"style":486},[1075],{"type":55,"value":489},{"type":49,"tag":160,"props":1077,"children":1078},{"style":172},[1079],{"type":55,"value":1080},"Important",{"type":49,"tag":160,"props":1082,"children":1083},{"style":486},[1084],{"type":55,"value":499},{"type":49,"tag":387,"props":1086,"children":1088},{"id":1087},"delete-an-email",[1089],{"type":55,"value":1090},"Delete an Email",{"type":49,"tag":149,"props":1092,"children":1094},{"className":151,"code":1093,"language":153,"meta":154,"style":154},"himalaya message delete 42\n",[1095],{"type":49,"tag":79,"props":1096,"children":1097},{"__ignoreMap":154},[1098],{"type":49,"tag":160,"props":1099,"children":1100},{"class":162,"line":163},[1101,1105,1109,1114],{"type":49,"tag":160,"props":1102,"children":1103},{"style":167},[1104],{"type":55,"value":4},{"type":49,"tag":160,"props":1106,"children":1107},{"style":172},[1108],{"type":55,"value":625},{"type":49,"tag":160,"props":1110,"children":1111},{"style":172},[1112],{"type":55,"value":1113}," delete",{"type":49,"tag":160,"props":1115,"children":1116},{"style":534},[1117],{"type":55,"value":635},{"type":49,"tag":387,"props":1119,"children":1121},{"id":1120},"manage-flags",[1122],{"type":55,"value":1123},"Manage Flags",{"type":49,"tag":58,"props":1125,"children":1126},{},[1127],{"type":55,"value":1128},"Add flag:",{"type":49,"tag":149,"props":1130,"children":1132},{"className":151,"code":1131,"language":153,"meta":154,"style":154},"himalaya flag add 42 --flag seen\n",[1133],{"type":49,"tag":79,"props":1134,"children":1135},{"__ignoreMap":154},[1136],{"type":49,"tag":160,"props":1137,"children":1138},{"class":162,"line":163},[1139,1143,1148,1153,1157,1162],{"type":49,"tag":160,"props":1140,"children":1141},{"style":167},[1142],{"type":55,"value":4},{"type":49,"tag":160,"props":1144,"children":1145},{"style":172},[1146],{"type":55,"value":1147}," flag",{"type":49,"tag":160,"props":1149,"children":1150},{"style":172},[1151],{"type":55,"value":1152}," add",{"type":49,"tag":160,"props":1154,"children":1155},{"style":534},[1156],{"type":55,"value":668},{"type":49,"tag":160,"props":1158,"children":1159},{"style":172},[1160],{"type":55,"value":1161}," --flag",{"type":49,"tag":160,"props":1163,"children":1164},{"style":172},[1165],{"type":55,"value":1166}," seen\n",{"type":49,"tag":58,"props":1168,"children":1169},{},[1170],{"type":55,"value":1171},"Remove flag:",{"type":49,"tag":149,"props":1173,"children":1175},{"className":151,"code":1174,"language":153,"meta":154,"style":154},"himalaya flag remove 42 --flag seen\n",[1176],{"type":49,"tag":79,"props":1177,"children":1178},{"__ignoreMap":154},[1179],{"type":49,"tag":160,"props":1180,"children":1181},{"class":162,"line":163},[1182,1186,1190,1195,1199,1203],{"type":49,"tag":160,"props":1183,"children":1184},{"style":167},[1185],{"type":55,"value":4},{"type":49,"tag":160,"props":1187,"children":1188},{"style":172},[1189],{"type":55,"value":1147},{"type":49,"tag":160,"props":1191,"children":1192},{"style":172},[1193],{"type":55,"value":1194}," remove",{"type":49,"tag":160,"props":1196,"children":1197},{"style":534},[1198],{"type":55,"value":668},{"type":49,"tag":160,"props":1200,"children":1201},{"style":172},[1202],{"type":55,"value":1161},{"type":49,"tag":160,"props":1204,"children":1205},{"style":172},[1206],{"type":55,"value":1166},{"type":49,"tag":64,"props":1208,"children":1210},{"id":1209},"multiple-accounts",[1211],{"type":55,"value":1212},"Multiple Accounts",{"type":49,"tag":58,"props":1214,"children":1215},{},[1216],{"type":55,"value":1217},"List accounts:",{"type":49,"tag":149,"props":1219,"children":1221},{"className":151,"code":1220,"language":153,"meta":154,"style":154},"himalaya account list\n",[1222],{"type":49,"tag":79,"props":1223,"children":1224},{"__ignoreMap":154},[1225],{"type":49,"tag":160,"props":1226,"children":1227},{"class":162,"line":163},[1228,1232,1236],{"type":49,"tag":160,"props":1229,"children":1230},{"style":167},[1231],{"type":55,"value":4},{"type":49,"tag":160,"props":1233,"children":1234},{"style":172},[1235],{"type":55,"value":175},{"type":49,"tag":160,"props":1237,"children":1238},{"style":172},[1239],{"type":55,"value":416},{"type":49,"tag":58,"props":1241,"children":1242},{},[1243],{"type":55,"value":1244},"Use a specific account:",{"type":49,"tag":149,"props":1246,"children":1248},{"className":151,"code":1247,"language":153,"meta":154,"style":154},"himalaya --account work envelope list\n",[1249],{"type":49,"tag":79,"props":1250,"children":1251},{"__ignoreMap":154},[1252],{"type":49,"tag":160,"props":1253,"children":1254},{"class":162,"line":163},[1255,1259,1264,1269,1273],{"type":49,"tag":160,"props":1256,"children":1257},{"style":167},[1258],{"type":55,"value":4},{"type":49,"tag":160,"props":1260,"children":1261},{"style":172},[1262],{"type":55,"value":1263}," --account",{"type":49,"tag":160,"props":1265,"children":1266},{"style":172},[1267],{"type":55,"value":1268}," work",{"type":49,"tag":160,"props":1270,"children":1271},{"style":172},[1272],{"type":55,"value":446},{"type":49,"tag":160,"props":1274,"children":1275},{"style":172},[1276],{"type":55,"value":416},{"type":49,"tag":64,"props":1278,"children":1280},{"id":1279},"attachments",[1281],{"type":55,"value":1282},"Attachments",{"type":49,"tag":58,"props":1284,"children":1285},{},[1286],{"type":55,"value":1287},"Save attachments from a message:",{"type":49,"tag":149,"props":1289,"children":1291},{"className":151,"code":1290,"language":153,"meta":154,"style":154},"himalaya attachment download 42\n",[1292],{"type":49,"tag":79,"props":1293,"children":1294},{"__ignoreMap":154},[1295],{"type":49,"tag":160,"props":1296,"children":1297},{"class":162,"line":163},[1298,1302,1307,1312],{"type":49,"tag":160,"props":1299,"children":1300},{"style":167},[1301],{"type":55,"value":4},{"type":49,"tag":160,"props":1303,"children":1304},{"style":172},[1305],{"type":55,"value":1306}," attachment",{"type":49,"tag":160,"props":1308,"children":1309},{"style":172},[1310],{"type":55,"value":1311}," download",{"type":49,"tag":160,"props":1313,"children":1314},{"style":534},[1315],{"type":55,"value":635},{"type":49,"tag":58,"props":1317,"children":1318},{},[1319],{"type":55,"value":1320},"Save to specific directory:",{"type":49,"tag":149,"props":1322,"children":1324},{"className":151,"code":1323,"language":153,"meta":154,"style":154},"himalaya attachment download 42 --dir ~\u002FDownloads\n",[1325],{"type":49,"tag":79,"props":1326,"children":1327},{"__ignoreMap":154},[1328],{"type":49,"tag":160,"props":1329,"children":1330},{"class":162,"line":163},[1331,1335,1339,1343,1347,1352],{"type":49,"tag":160,"props":1332,"children":1333},{"style":167},[1334],{"type":55,"value":4},{"type":49,"tag":160,"props":1336,"children":1337},{"style":172},[1338],{"type":55,"value":1306},{"type":49,"tag":160,"props":1340,"children":1341},{"style":172},[1342],{"type":55,"value":1311},{"type":49,"tag":160,"props":1344,"children":1345},{"style":534},[1346],{"type":55,"value":668},{"type":49,"tag":160,"props":1348,"children":1349},{"style":172},[1350],{"type":55,"value":1351}," --dir",{"type":49,"tag":160,"props":1353,"children":1354},{"style":172},[1355],{"type":55,"value":1356}," ~\u002FDownloads\n",{"type":49,"tag":64,"props":1358,"children":1360},{"id":1359},"output-formats",[1361],{"type":55,"value":1362},"Output Formats",{"type":49,"tag":58,"props":1364,"children":1365},{},[1366,1368,1374],{"type":55,"value":1367},"Most commands support ",{"type":49,"tag":79,"props":1369,"children":1371},{"className":1370},[],[1372],{"type":55,"value":1373},"--output",{"type":55,"value":1375}," for structured output:",{"type":49,"tag":149,"props":1377,"children":1379},{"className":151,"code":1378,"language":153,"meta":154,"style":154},"himalaya envelope list --output json\nhimalaya envelope list --output plain\n",[1380],{"type":49,"tag":79,"props":1381,"children":1382},{"__ignoreMap":154},[1383,1408],{"type":49,"tag":160,"props":1384,"children":1385},{"class":162,"line":163},[1386,1390,1394,1398,1403],{"type":49,"tag":160,"props":1387,"children":1388},{"style":167},[1389],{"type":55,"value":4},{"type":49,"tag":160,"props":1391,"children":1392},{"style":172},[1393],{"type":55,"value":446},{"type":49,"tag":160,"props":1395,"children":1396},{"style":172},[1397],{"type":55,"value":478},{"type":49,"tag":160,"props":1399,"children":1400},{"style":172},[1401],{"type":55,"value":1402}," --output",{"type":49,"tag":160,"props":1404,"children":1405},{"style":172},[1406],{"type":55,"value":1407}," json\n",{"type":49,"tag":160,"props":1409,"children":1410},{"class":162,"line":212},[1411,1415,1419,1423,1427],{"type":49,"tag":160,"props":1412,"children":1413},{"style":167},[1414],{"type":55,"value":4},{"type":49,"tag":160,"props":1416,"children":1417},{"style":172},[1418],{"type":55,"value":446},{"type":49,"tag":160,"props":1420,"children":1421},{"style":172},[1422],{"type":55,"value":478},{"type":49,"tag":160,"props":1424,"children":1425},{"style":172},[1426],{"type":55,"value":1402},{"type":49,"tag":160,"props":1428,"children":1429},{"style":172},[1430],{"type":55,"value":1431}," plain\n",{"type":49,"tag":64,"props":1433,"children":1435},{"id":1434},"debugging",[1436],{"type":55,"value":1437},"Debugging",{"type":49,"tag":58,"props":1439,"children":1440},{},[1441],{"type":55,"value":1442},"Enable debug logging:",{"type":49,"tag":149,"props":1444,"children":1446},{"className":151,"code":1445,"language":153,"meta":154,"style":154},"RUST_LOG=debug himalaya envelope list\n",[1447],{"type":49,"tag":79,"props":1448,"children":1449},{"__ignoreMap":154},[1450],{"type":49,"tag":160,"props":1451,"children":1452},{"class":162,"line":163},[1453,1459,1464,1469,1473,1477],{"type":49,"tag":160,"props":1454,"children":1456},{"style":1455},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[1457],{"type":55,"value":1458},"RUST_LOG",{"type":49,"tag":160,"props":1460,"children":1461},{"style":486},[1462],{"type":55,"value":1463},"=",{"type":49,"tag":160,"props":1465,"children":1466},{"style":172},[1467],{"type":55,"value":1468},"debug",{"type":49,"tag":160,"props":1470,"children":1471},{"style":167},[1472],{"type":55,"value":854},{"type":49,"tag":160,"props":1474,"children":1475},{"style":172},[1476],{"type":55,"value":446},{"type":49,"tag":160,"props":1478,"children":1479},{"style":172},[1480],{"type":55,"value":416},{"type":49,"tag":58,"props":1482,"children":1483},{},[1484],{"type":55,"value":1485},"Full trace with backtrace:",{"type":49,"tag":149,"props":1487,"children":1489},{"className":151,"code":1488,"language":153,"meta":154,"style":154},"RUST_LOG=trace RUST_BACKTRACE=1 himalaya envelope list\n",[1490],{"type":49,"tag":79,"props":1491,"children":1492},{"__ignoreMap":154},[1493],{"type":49,"tag":160,"props":1494,"children":1495},{"class":162,"line":163},[1496,1500,1504,1509,1514,1518,1523,1527,1531],{"type":49,"tag":160,"props":1497,"children":1498},{"style":1455},[1499],{"type":55,"value":1458},{"type":49,"tag":160,"props":1501,"children":1502},{"style":486},[1503],{"type":55,"value":1463},{"type":49,"tag":160,"props":1505,"children":1506},{"style":172},[1507],{"type":55,"value":1508},"trace",{"type":49,"tag":160,"props":1510,"children":1511},{"style":1455},[1512],{"type":55,"value":1513}," RUST_BACKTRACE",{"type":49,"tag":160,"props":1515,"children":1516},{"style":486},[1517],{"type":55,"value":1463},{"type":49,"tag":160,"props":1519,"children":1520},{"style":172},[1521],{"type":55,"value":1522},"1",{"type":49,"tag":160,"props":1524,"children":1525},{"style":167},[1526],{"type":55,"value":854},{"type":49,"tag":160,"props":1528,"children":1529},{"style":172},[1530],{"type":55,"value":446},{"type":49,"tag":160,"props":1532,"children":1533},{"style":172},[1534],{"type":55,"value":416},{"type":49,"tag":64,"props":1536,"children":1538},{"id":1537},"tips",[1539],{"type":55,"value":1540},"Tips",{"type":49,"tag":71,"props":1542,"children":1543},{},[1544,1565,1570,1582],{"type":49,"tag":75,"props":1545,"children":1546},{},[1547,1549,1555,1557,1563],{"type":55,"value":1548},"Use ",{"type":49,"tag":79,"props":1550,"children":1552},{"className":1551},[],[1553],{"type":55,"value":1554},"himalaya --help",{"type":55,"value":1556}," or ",{"type":49,"tag":79,"props":1558,"children":1560},{"className":1559},[],[1561],{"type":55,"value":1562},"himalaya \u003Ccommand> --help",{"type":55,"value":1564}," for detailed usage.",{"type":49,"tag":75,"props":1566,"children":1567},{},[1568],{"type":55,"value":1569},"Message IDs are relative to the current folder; re-list after folder changes.",{"type":49,"tag":75,"props":1571,"children":1572},{},[1573,1575,1580],{"type":55,"value":1574},"For composing rich emails with attachments, use MML syntax (see ",{"type":49,"tag":79,"props":1576,"children":1578},{"className":1577},[],[1579],{"type":55,"value":95},{"type":55,"value":1581},").",{"type":49,"tag":75,"props":1583,"children":1584},{},[1585,1587,1593],{"type":55,"value":1586},"Store passwords securely using ",{"type":49,"tag":79,"props":1588,"children":1590},{"className":1589},[],[1591],{"type":55,"value":1592},"pass",{"type":55,"value":1594},", system keyring, or a command that outputs the password.",{"type":49,"tag":1596,"props":1597,"children":1598},"style",{},[1599],{"type":55,"value":1600},"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":1602,"total":1692},[1603,1617,1631,1643,1655,1667,1678],{"slug":1604,"name":1604,"fn":1605,"description":1606,"org":1607,"tags":1608,"stars":22,"repoUrl":23,"updatedAt":1616},"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":8},[1609,1612,1613],{"name":1610,"slug":1611,"type":15},"Automation","automation",{"name":13,"slug":14,"type":15},{"name":1614,"slug":1615,"type":15},"Security","security","2026-07-12T08:28:49.991939",{"slug":1618,"name":1618,"fn":1619,"description":1620,"org":1621,"tags":1622,"stars":22,"repoUrl":23,"updatedAt":1630},"apple-notes","manage Apple Notes on macOS","Manage Apple Notes via the `memo` CLI on macOS (create, view, edit, delete, search, move, and export notes). Use when a user asks OpenClaw to add a note, list notes, search notes, or manage note folders.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1623,1624,1627],{"name":13,"slug":14,"type":15},{"name":1625,"slug":1626,"type":15},"Knowledge Management","knowledge-management",{"name":1628,"slug":1629,"type":15},"macOS","macos","2026-07-12T08:29:01.538106",{"slug":1632,"name":1632,"fn":1633,"description":1634,"org":1635,"tags":1636,"stars":22,"repoUrl":23,"updatedAt":1642},"apple-reminders","manage Apple Reminders via CLI","Manage Apple Reminders via the `remindctl` CLI on macOS (list, add, edit, complete, delete). Supports lists, date filters, and JSON\u002Fplain output.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1637,1638,1639],{"name":13,"slug":14,"type":15},{"name":1628,"slug":1629,"type":15},{"name":1640,"slug":1641,"type":15},"Task Management","task-management","2026-07-12T08:29:14.035414",{"slug":1644,"name":1644,"fn":1645,"description":1646,"org":1647,"tags":1648,"stars":22,"repoUrl":23,"updatedAt":1654},"bear-notes","manage Bear notes via CLI","Create, search, and manage Bear notes via grizzly CLI.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1649,1650,1651],{"name":13,"slug":14,"type":15},{"name":1625,"slug":1626,"type":15},{"name":1652,"slug":1653,"type":15},"Notes","notes","2026-07-12T08:28:51.246011",{"slug":1656,"name":1656,"fn":1657,"description":1658,"org":1659,"tags":1660,"stars":22,"repoUrl":23,"updatedAt":1666},"blogwatcher","monitor blogs and RSS feeds","Monitor blogs and RSS\u002FAtom feeds for updates using the blogwatcher CLI.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1661,1662,1663],{"name":1610,"slug":1611,"type":15},{"name":13,"slug":14,"type":15},{"name":1664,"slug":1665,"type":15},"Monitoring","monitoring","2026-07-12T08:29:02.762321",{"slug":1668,"name":1668,"fn":1669,"description":1670,"org":1671,"tags":1672,"stars":22,"repoUrl":23,"updatedAt":1677},"blucli","control BluOS audio playback","BluOS CLI (blu) for discovery, playback, grouping, and volume.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1673,1676],{"name":1674,"slug":1675,"type":15},"Audio","audio",{"name":13,"slug":14,"type":15},"2026-07-12T08:28:21.009637",{"slug":1679,"name":1679,"fn":1680,"description":1681,"org":1682,"tags":1683,"stars":22,"repoUrl":23,"updatedAt":1691},"bluebubbles","send and manage iMessages","Use when you need to send or manage iMessages via BlueBubbles (recommended iMessage integration). Calls go through the generic message tool with channel=\"bluebubbles\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1684,1685,1688],{"name":20,"slug":21,"type":15},{"name":1686,"slug":1687,"type":15},"iMessage","imessage",{"name":1689,"slug":1690,"type":15},"Messaging","messaging","2026-07-12T08:28:57.517914",54,{"items":1694,"total":1801},[1695,1711,1717,1723,1729,1735,1741,1746,1752,1766,1778,1790],{"slug":1696,"name":1696,"fn":1697,"description":1698,"org":1699,"tags":1700,"stars":1708,"repoUrl":1709,"updatedAt":1710},"deepclaw-voice","configure phone calls with Deepgram Voice","Set up phone calling to OpenClaw using Deepgram Voice Agent API",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1701,1704,1705],{"name":1702,"slug":1703,"type":15},"API Development","api-development",{"name":9,"slug":8,"type":15},{"name":1706,"slug":1707,"type":15},"Voice","voice",78,"https:\u002F\u002Fgithub.com\u002Fdeepgram\u002Fdeepclaw","2026-07-12T08:29:25.371332",{"slug":1604,"name":1604,"fn":1605,"description":1606,"org":1712,"tags":1713,"stars":22,"repoUrl":23,"updatedAt":1616},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1714,1715,1716],{"name":1610,"slug":1611,"type":15},{"name":13,"slug":14,"type":15},{"name":1614,"slug":1615,"type":15},{"slug":1618,"name":1618,"fn":1619,"description":1620,"org":1718,"tags":1719,"stars":22,"repoUrl":23,"updatedAt":1630},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1720,1721,1722],{"name":13,"slug":14,"type":15},{"name":1625,"slug":1626,"type":15},{"name":1628,"slug":1629,"type":15},{"slug":1632,"name":1632,"fn":1633,"description":1634,"org":1724,"tags":1725,"stars":22,"repoUrl":23,"updatedAt":1642},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1726,1727,1728],{"name":13,"slug":14,"type":15},{"name":1628,"slug":1629,"type":15},{"name":1640,"slug":1641,"type":15},{"slug":1644,"name":1644,"fn":1645,"description":1646,"org":1730,"tags":1731,"stars":22,"repoUrl":23,"updatedAt":1654},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1732,1733,1734],{"name":13,"slug":14,"type":15},{"name":1625,"slug":1626,"type":15},{"name":1652,"slug":1653,"type":15},{"slug":1656,"name":1656,"fn":1657,"description":1658,"org":1736,"tags":1737,"stars":22,"repoUrl":23,"updatedAt":1666},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1738,1739,1740],{"name":1610,"slug":1611,"type":15},{"name":13,"slug":14,"type":15},{"name":1664,"slug":1665,"type":15},{"slug":1668,"name":1668,"fn":1669,"description":1670,"org":1742,"tags":1743,"stars":22,"repoUrl":23,"updatedAt":1677},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1744,1745],{"name":1674,"slug":1675,"type":15},{"name":13,"slug":14,"type":15},{"slug":1679,"name":1679,"fn":1680,"description":1681,"org":1747,"tags":1748,"stars":22,"repoUrl":23,"updatedAt":1691},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1749,1750,1751],{"name":20,"slug":21,"type":15},{"name":1686,"slug":1687,"type":15},{"name":1689,"slug":1690,"type":15},{"slug":1753,"name":1753,"fn":1754,"description":1755,"org":1756,"tags":1757,"stars":22,"repoUrl":23,"updatedAt":1765},"camsnap","capture frames and clips from cameras","Capture frames or clips from RTSP\u002FONVIF cameras.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1758,1759,1762],{"name":1610,"slug":1611,"type":15},{"name":1760,"slug":1761,"type":15},"Camera","camera",{"name":1763,"slug":1764,"type":15},"Media","media","2026-07-12T08:28:28.096134",{"slug":1767,"name":1767,"fn":1768,"description":1769,"org":1770,"tags":1771,"stars":22,"repoUrl":23,"updatedAt":1777},"clawhub","manage agent skills with ClawHub","Use the ClawHub CLI to search, install, update, and publish agent skills from clawhub.com. Use when you need to fetch new skills on the fly, sync installed skills to latest or a specific version, or publish new\u002Fupdated skill folders with the npm-installed clawhub CLI.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1772,1775,1776],{"name":1773,"slug":1774,"type":15},"Agents","agents",{"name":1610,"slug":1611,"type":15},{"name":13,"slug":14,"type":15},"2026-07-12T08:28:30.589001",{"slug":1779,"name":1779,"fn":1780,"description":1781,"org":1782,"tags":1783,"stars":22,"repoUrl":23,"updatedAt":1789},"coding-agent","run coding agents for programmatic control","Run Codex CLI, Claude Code, OpenCode, or Pi Coding Agent via background process for programmatic control.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1784,1785,1786],{"name":1773,"slug":1774,"type":15},{"name":1610,"slug":1611,"type":15},{"name":1787,"slug":1788,"type":15},"Coding","coding","2026-07-12T08:29:08.6658",{"slug":1791,"name":1791,"fn":1792,"description":1793,"org":1794,"tags":1795,"stars":22,"repoUrl":23,"updatedAt":1800},"eightctl","control Eight Sleep pod settings","Control Eight Sleep pods (status, temperature, alarms, schedules).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1796,1797],{"name":1610,"slug":1611,"type":15},{"name":1798,"slug":1799,"type":15},"Hardware","hardware","2026-07-12T08:28:39.322181",73]