{
  "schemaVersion": "1.0",
  "item": {
    "slug": "neomutt-commander",
    "name": "Neomutt Commander",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/elmoyeldo/neomutt-commander",
    "canonicalUrl": "https://clawhub.ai/elmoyeldo/neomutt-commander",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/neomutt-commander",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=neomutt-commander",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/neomutt-commander"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/neomutt-commander",
    "agentPageUrl": "https://openagent3.xyz/skills/neomutt-commander/agent",
    "manifestUrl": "https://openagent3.xyz/skills/neomutt-commander/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/neomutt-commander/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Neomutt Commander",
        "body": "Use when the user wants to read, search, or organise their email inbox, read message content, manage folders, archive messages, or draft a reply or new message — all from the terminal via IMAP. Works with Gmail, Fastmail, Outlook, and any IMAP provider.\n\nIf sending is not explicitly enabled or approved by the user, always save outgoing messages as a draft instead of sending."
      },
      {
        "title": "Prerequisites",
        "body": "Install neomutt and w3m (HTML email renderer):\n\n# macOS\nbrew install neomutt w3m\n\n# Ubuntu / Debian\nsudo apt install neomutt w3m"
      },
      {
        "title": "Configuration",
        "body": "Create ~/.config/neomutt/neomuttrc (or ~/.neomuttrc):\n\nset imap_user = \"user@gmail.com\"\nset imap_pass = \"*****\"\n\nset folder = \"imaps://imap.gmail.com:993\"\nset spoolfile = \"+INBOX\"\nset ssl_force_tls = yes\nset imap_keepalive = 300\nset mail_check = 60\nset postponed = \"+[Gmail]/Drafts\"\n\nset sort = reverse-date\n\n# HTML handling\nauto_view text/html\nalternative_order text/plain text/html\n\nFor other providers change imap.gmail.com:993 and [Gmail]/Drafts to match your server. For Gmail, imap_pass should be an App Password (Google Account → Security → 2-Step Verification → App Passwords).\n\nCreate ~/.config/neomutt/mailcap so w3m renders HTML parts:\n\ntext/html; w3m -I %{charset} -T text/html; copiousoutput;"
      },
      {
        "title": "Open neomutt",
        "body": "neomutt\n\nOpens the inbox. To open a specific folder directly:\n\nneomutt -f imaps://imap.gmail.com/INBOX\nneomutt -f imaps://imap.gmail.com/[Gmail]/All%20Mail   # Gmail — All Mail\nneomutt -f imaps://imap.fastmail.com/INBOX             # Fastmail example"
      },
      {
        "title": "Navigate the inbox",
        "body": "KeyActionj / kMove down / upEnterOpen messageqBack / quit?Full keybinding help"
      },
      {
        "title": "Search messages",
        "body": "KeyPatternExample/Search visible list by subject/sender/invoicelLimit view to a patternl ~f boss@example.coml .Clear limit (show all)\n\nSearch pattern syntax: ~f <from> · ~s <subject> · ~b <body> · ~d <date>"
      },
      {
        "title": "Read a message",
        "body": "Press Enter on a message. HTML parts render automatically via w3m.\n\nKeyActionSpace / -Page down / uphToggle headersvView MIME attachmentsqReturn to index"
      },
      {
        "title": "Mark as read / unread",
        "body": "KeyActionAutomaticMessage is marked read when openedNToggle unread on selected messagetTag message; then ;N to mark tagged set"
      },
      {
        "title": "Archive a message",
        "body": "Move the message out of INBOX into your archive folder:\n\ns  →  type folder name  →  Enter\n\nOn Gmail the archive folder is [Gmail]/All Mail. Add a macro for one-key archiving:\n\nmacro index A \"<save-message>=[Gmail]/All Mail<enter><enter>\" \"Archive\""
      },
      {
        "title": "Manage folders / labels",
        "body": "Folders in IMAP, labels in Gmail — same thing. Move or copy a message:\n\nC  →  type folder name  →  Enter   # Copy (message stays in current folder too)\ns  →  type folder name  →  Enter   # Move (removes from current folder)"
      },
      {
        "title": "Compose a new message",
        "body": "m\n\nFill in To:, Subject:, write body, then:\n\nKeyActionCtrl-X (in editor)Finish editing and go to send screenySend (only if sending is approved)PPostpone — saves to the drafts folderqAbort / discard\n\nDefault behaviour: press P to postpone (save draft) unless the user has explicitly asked to send."
      },
      {
        "title": "Resume a draft",
        "body": "neomutt -f imaps://imap.gmail.com/[Gmail]/Drafts   # Gmail\nneomutt -f imaps://imap.fastmail.com/Drafts        # Fastmail / generic\n\nOpen the draft and press e to edit, then y to send or P to re-postpone."
      },
      {
        "title": "Quit",
        "body": "q  →  confirm with y"
      }
    ],
    "body": "Neomutt Commander\n\nUse when the user wants to read, search, or organise their email inbox, read message content, manage folders, archive messages, or draft a reply or new message — all from the terminal via IMAP. Works with Gmail, Fastmail, Outlook, and any IMAP provider.\n\nIf sending is not explicitly enabled or approved by the user, always save outgoing messages as a draft instead of sending.\n\nPrerequisites\n\nInstall neomutt and w3m (HTML email renderer):\n\n# macOS\nbrew install neomutt w3m\n\n# Ubuntu / Debian\nsudo apt install neomutt w3m\n\nConfiguration\n\nCreate ~/.config/neomutt/neomuttrc (or ~/.neomuttrc):\n\nset imap_user = \"user@gmail.com\"\nset imap_pass = \"*****\"\n\nset folder = \"imaps://imap.gmail.com:993\"\nset spoolfile = \"+INBOX\"\nset ssl_force_tls = yes\nset imap_keepalive = 300\nset mail_check = 60\nset postponed = \"+[Gmail]/Drafts\"\n\nset sort = reverse-date\n\n# HTML handling\nauto_view text/html\nalternative_order text/plain text/html\n\n\nFor other providers change imap.gmail.com:993 and [Gmail]/Drafts to match your server. For Gmail, imap_pass should be an App Password (Google Account → Security → 2-Step Verification → App Passwords).\n\nCreate ~/.config/neomutt/mailcap so w3m renders HTML parts:\n\ntext/html; w3m -I %{charset} -T text/html; copiousoutput;\n\nOpen neomutt\nneomutt\n\n\nOpens the inbox. To open a specific folder directly:\n\nneomutt -f imaps://imap.gmail.com/INBOX\nneomutt -f imaps://imap.gmail.com/[Gmail]/All%20Mail   # Gmail — All Mail\nneomutt -f imaps://imap.fastmail.com/INBOX             # Fastmail example\n\nNavigate the inbox\nKey\tAction\nj / k\tMove down / up\nEnter\tOpen message\nq\tBack / quit\n?\tFull keybinding help\nSearch messages\nKey\tPattern\tExample\n/\tSearch visible list by subject/sender\t/invoice\nl\tLimit view to a pattern\tl ~f boss@example.com\nl .\tClear limit (show all)\t\n\nSearch pattern syntax: ~f <from> · ~s <subject> · ~b <body> · ~d <date>\n\nRead a message\n\nPress Enter on a message. HTML parts render automatically via w3m.\n\nKey\tAction\nSpace / -\tPage down / up\nh\tToggle headers\nv\tView MIME attachments\nq\tReturn to index\nMark as read / unread\nKey\tAction\nAutomatic\tMessage is marked read when opened\nN\tToggle unread on selected message\nt\tTag message; then ;N to mark tagged set\nArchive a message\n\nMove the message out of INBOX into your archive folder:\n\ns  →  type folder name  →  Enter\n\n\nOn Gmail the archive folder is [Gmail]/All Mail. Add a macro for one-key archiving:\n\nmacro index A \"<save-message>=[Gmail]/All Mail<enter><enter>\" \"Archive\"\n\nManage folders / labels\n\nFolders in IMAP, labels in Gmail — same thing. Move or copy a message:\n\nC  →  type folder name  →  Enter   # Copy (message stays in current folder too)\ns  →  type folder name  →  Enter   # Move (removes from current folder)\n\nCompose a new message\nm\n\n\nFill in To:, Subject:, write body, then:\n\nKey\tAction\nCtrl-X (in editor)\tFinish editing and go to send screen\ny\tSend (only if sending is approved)\nP\tPostpone — saves to the drafts folder\nq\tAbort / discard\n\nDefault behaviour: press P to postpone (save draft) unless the user has explicitly asked to send.\n\nResume a draft\nneomutt -f imaps://imap.gmail.com/[Gmail]/Drafts   # Gmail\nneomutt -f imaps://imap.fastmail.com/Drafts        # Fastmail / generic\n\n\nOpen the draft and press e to edit, then y to send or P to re-postpone.\n\nQuit\nq  →  confirm with y"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/elmoyeldo/neomutt-commander",
    "publisherUrl": "https://clawhub.ai/elmoyeldo/neomutt-commander",
    "owner": "elmoyeldo",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/neomutt-commander",
    "downloadUrl": "https://openagent3.xyz/downloads/neomutt-commander",
    "agentUrl": "https://openagent3.xyz/skills/neomutt-commander/agent",
    "manifestUrl": "https://openagent3.xyz/skills/neomutt-commander/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/neomutt-commander/agent.md"
  }
}