원클릭으로
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 직업 분류 기준
| 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).
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.