一键导入
notmuch
Search and read local email with the `notmuch` CLI. Use when the user asks to find messages, inspect threads, or review email tags.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Search and read local email with the `notmuch` CLI. Use when the user asks to find messages, inspect threads, or review email tags.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use tmux instead of background bash for long-running, interactive, inspectable, or user-attachable terminal processes. Use for development servers, watch-mode tests, REPLs, debuggers, interactive CLIs, log tailing, and commands that may run indefinitely or need later input/inspection.
Use Jujutsu (`jj`) for version control operations including status, history, diffs, commits, rebases, splits, squashes, and Git interop. Use when a repository is initialized for jj or the user asks for jj/Jujutsu workflows.
Create and maintain AGENTS.md files that provide AI coding agents with project context, commands, code style, and boundaries. Use when updating an existing AGENTS.md, creating a new AGENTS.md for a repository, or improving agent instructions for a codebase.
Manage tasks with the `task` (Taskwarrior) CLI. Use when the user asks to review tasks, get task summaries, add work items, or complete tasks.
Convert public ChatGPT share links into clean Markdown transcripts for agent context. Use when a user provides a https://chatgpt.com/share/... URL and wants the conversation summarized, archived, or reused as input context.
Search the web with DuckDuckGo using the `ddgr` CLI. Use when the user asks to look something up online, verify facts, or gather source links.
| name | notmuch |
| description | Search and read local email with the `notmuch` CLI. Use when the user asks to find messages, inspect threads, or review email tags. |
Search local email and inspect message threads with notmuch.
notmuch search --format=json --limit=20 'tag:unread'
Preferred command (machine-readable JSON):
notmuch search --format=json --limit=20 'from:alice subject:"design review" date:2026-02-01..'
Common query terms:
from:<email-or-name>to:<email-or-name>subject:<term>tag:<tag-name>date:YYYY-MM-DD..YYYY-MM-DDthread:<thread-id>Headers-only summary for a thread/query:
notmuch show --format=json --body=false 'thread:0000000000000123'
Full text output:
notmuch show --format=text 'thread:0000000000000123'
Structured output with bodies:
notmuch show --format=json 'thread:0000000000000123'
notmuch search --output=tags '*'
Prefer read-only commands in this skill:
notmuch search ...notmuch show ...Avoid mutating commands unless the user explicitly requests them (for example notmuch new, notmuch tag, notmuch insert).