jpskill.com
💬 コミュニケーション コミュニティ

email-himalaya

Manage emails using the himalaya CLI client. This skill should be used when the user wants to read, list, search, send, reply to, or manage emails across their configured accounts.

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o email-himalaya.zip https://jpskill.com/download/10170.zip && unzip -o email-himalaya.zip && rm email-himalaya.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/10170.zip -OutFile "$d\email-himalaya.zip"; Expand-Archive "$d\email-himalaya.zip" -DestinationPath $d -Force; ri "$d\email-himalaya.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して email-himalaya.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → email-himalaya フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
1
📖 Claude が読む原文 SKILL.md(中身を展開)

この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。

Email Management with Himalaya

This skill provides email management capabilities using the himalaya CLI email client.

Configured Accounts

Configure your accounts in ~/.config/himalaya/config.toml. Example:

Account Name Email Purpose
Work work@example.com Work - Default
Personal personal@gmail.com Personal

Core Commands

Listing Emails

# List inbox (default account)
himalaya envelope list --page-size 10

# List from specific account
himalaya envelope list --account "Personal" --page-size 10

# List from specific folder
himalaya envelope list --folder "[Gmail]/Important" --page-size 10

# JSON output for parsing
himalaya envelope list --output json --page-size 10

Reading Emails

# Read email by ID
himalaya message read <id>

# Read in plain text
himalaya message read <id> --header "From,To,Subject,Date"

IMPORTANT: Keeping Emails Unread

When reading emails, himalaya marks them as read. To preserve the unread status for the user:

# After reading, mark back as unread
himalaya flag remove <id> Seen

Always mark emails back as unread after reading unless the user explicitly says they've read it or asks to mark it as read.

Sending Emails

# Send using heredoc
himalaya message send --account "Account Name" <<'EOF'
From: Display Name <email@example.com>
To: recipient@example.com
Subject: Subject Line

Email body here.

Signature
EOF

Replying to Emails

# Reply to an email
himalaya message reply <id> <<'EOF'
Reply body here.
EOF

Managing Flags

# Mark as read
himalaya flag add <id> Seen

# Mark as unread
himalaya flag remove <id> Seen

# Star/flag email
himalaya flag add <id> Flagged

# Remove star
himalaya flag remove <id> Flagged

Searching Emails

# Search by subject
himalaya envelope list --query "subject:keyword"

# Search by sender
himalaya envelope list --query "from:sender@example.com"

Folders

# List folders
himalaya folder list

# Common Gmail folders
# - INBOX
# - [Gmail]/Sent Mail
# - [Gmail]/Drafts
# - [Gmail]/Trash
# - [Gmail]/Important
# - [Gmail]/Starred

Workflow Guidelines

  1. Listing emails: Use envelope list - this does NOT mark emails as read
  2. Reading emails: After reading with message read, immediately run flag remove <id> Seen to keep unread unless user indicates otherwise
  3. Multiple accounts: Always specify --account "Account Name" when working with non-default account
  4. Sending emails: Draft the email content and show to user for approval before sending
  5. Replying: Read the original email first to understand context, then draft reply for user approval

Common Tasks

Check unread emails across both accounts

himalaya envelope list --account "Work" --page-size 10
himalaya envelope list --account "Personal" --page-size 10

Read and keep unread

himalaya message read <id>
himalaya flag remove <id> Seen

Send from personal account

himalaya message send --account "Personal" <<'EOF'
From: Your Name <personal@gmail.com>
To: recipient@example.com
Subject: Subject

Body
EOF