Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计通过

himalaya-skill喜马拉雅技能

Agent Skill

himalaya-skill 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,080

周安装

170

GitHub Stars

公开资料未说明

下载量

1,360
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:himalaya-skill(喜马拉雅技能)
来源仓库:https://github.com/bird-frank/himalaya-skill
安装命令:
openclaw skills install himalaya-skill
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install himalaya-skill

简介

使用“喜马拉雅” CLI 查询、编写和管理电子邮件的专家指南。每当用户想要列出电子邮件、搜索信封等时,请使用此技能。

SKILL.md

name
himalaya
description
|

Himalaya CLI Expert

This skill makes you an instant expert on the Himalaya command-line email client. Himalaya is a stateless CLI (not a TUI) that lets users manage emails via shell commands.

When this skill applies

Use this skill for ANY task involving:

  • Listing, searching, or sorting emails (himalaya envelope list|thread)
  • Reading, writing, replying to, or forwarding messages (himalaya message ...)
  • Managing flags (himalaya flag ...)
  • Managing folders/mailboxes (himalaya folder ...)
  • Message templates and attachments (himalaya template ..., himalaya attachment ...)
  • Interpreting or constructing Himalaya query DSL strings

Architecture overview

Himalaya CLI is organized around nouns:

himalaya <noun> <verb> [args...]

Key nouns:

  • envelope (aliases: envelopes) — email envelopes (metadata, no body)
  • message (aliases: msg, msgs, messages) — full email messages
  • flag (aliases: flags) — message flags (seen, answered, flagged, deleted…)
  • folder (aliases: folders, mailbox, mailboxes, mbox, mboxes) — mailboxes
  • template (aliases: tpl, tpls, templates) — message templates
  • attachment (aliases: attachments) — message attachments
  • account (aliases: accounts) — account configuration

Global flags (available on all commands):

  • --config <PATH> — override config file path
  • --output json / --output plain — choose output format
  • --quiet, --debug, --trace — logging levels

Common per-command flags:

  • -a <NAME> / --account <NAME> — target a specific configured account
  • -f <NAME> / --folder <NAME> — target a specific folder

Querying emails: envelope commands

The most common operation is listing envelopes. Read the full Query DSL reference (references/query_dsl.md) whenever the user asks anything about search, filter, sort, or list queries.

Essential commands

# List all envelopes in the default folder
himalaya envelope list

# List envelopes in a specific folder, page 2, 20 per page
himalaya envelope list -f Archives.FOSS --page 2 --page-size 20

# Thread view for envelopes matching a query
himalaya envelope thread subject "product requirement"

Query DSL quick reference

A query string has the form:

[filter-query] [order by sort-query]

Filter conditions:

  • date <yyyy-mm-dd> — exact date match
  • before <yyyy-mm-dd> — strictly before date
  • after <yyyy-mm-dd> — strictly after date
  • from <pattern> — sender pattern match
  • to <pattern> — recipient pattern match
  • subject <pattern> — subject pattern match
  • body <pattern> — body text match (slower)
  • flag <flag> — flag match (e.g., seen, deleted)

Operators (precedence: not > and > or):

  • not <condition>
  • <condition> and <condition>
  • <condition> or <condition>

Sort query:

  • order by date [asc|desc]
  • order by from [asc|desc]
  • order by to [asc|desc]
  • order by subject [asc|desc]
  • Multiple fields are allowed: order by from asc date desc

Quoting and escaping:

  • Use double quotes for values containing spaces: subject "meeting notes"
  • Or escape with backslash: subject meeting\ notes
  • In shell, the entire query may need to be passed as a single string or joined args.

Query examples (detailed)

# Unread emails, newest first
himalaya envelope list "not flag seen order by date desc"

# From boss or CEO, sorted by date desc
himalaya envelope list "from boss@example.com or from ceo@example.com order by date desc"

# Subject contains "周报" AND body contains "进度"
himalaya envelope list "subject 周报 and body 进度"

# Date range: after March 31 and before April 11, 2025
himalaya envelope list "after 2025-03-31 and before 2025-04-11"

# Complex grouped condition: (subject urgent OR body error) AND from ops
himalaya envelope list '(subject 紧急 or body 报错) and from ops@example.com'

# Specific folder + pagination + query
himalaya envelope list -f INBOX --page 2 --page-size 20 'subject "release plan" order by date desc'
Performance tip: Prefer from, to, subject over body because body triggers a server-side full-text scan.
Reference: For the complete Query DSL specification, IMAP mapping, and compatibility notes, read references/query_dsl.md.

Writing and sending emails: message commands

Composing a new message

Himalaya uses your $EDITOR to compose messages from a template.

# Compose a new message interactively
himalaya message write

# Pre-fill headers via CLI arguments
himalaya message write --to "team@example.com" --subject "Sprint review"

# Compose using a saved template
himalaya message write --template /path/to/template.eml

Reply and forward

# Reply to message ID 42
himalaya message reply 42

# Reply-all
himalaya message reply 42 --all

# Forward message ID 42
himalaya message forward 42 --to "someone@example.com"

Reading, saving, and exporting

# Read raw message content
himalaya message read 42

# Save message to local .eml file
himalaya message save 42 --path ./message42.eml

# Export message(s)
himalaya message export 42 --path ./exports/

Message template format

A template is a set of headers followed by a blank line and then the body:

From: alice@example.com
To: Bob <bob@example.com>
Subject: Hello from Himalaya

Hello, world!

Valid headers include: From, To, Cc, Bcc, Reply-To, Subject, Date, Message-ID, In-Reply-To.

Addresses can be:

  • Plain: user@domain
  • Named: Name <user@domain>
  • Quoted named: "Name" <user@domain>
  • Multiple addresses separated by commas.

Attachments

Attachments are handled via the attachment noun or MML syntax in templates.

# Download attachments from message 42
himalaya attachment download 42 --path ./downloads/

MML attachment example inside a template body:

From: alice@example.com
To: bob@example.com
Subject: Attaching a doc

<#part filename=/path/to/file.pdf><#/part>

Managing emails: flags and folders

Flags

# Add flag(s) to envelope(s)
himalaya flag add 42,43 flagged answered

# Remove flag(s)
himalaya flag remove 42 flagged

# Set exact flags (replaces existing)
himalaya flag set 42 seen

Common flags: seen, answered, flagged, deleted, draft.

Folders

# List folders
himalaya folder list

# Add a folder
himalaya folder add MyFolder

# Delete a folder
himalaya folder delete MyFolder

# Purge deleted messages from a folder
himalaya folder purge MyFolder

# Expunge a folder
himalaya folder expunge MyFolder

Multi-account workflows

Himalaya supports multiple accounts via TOML config. Target a non-default account with -a:

himalaya envelope list -a work -f INBOX
himalaya message write -a personal --to "friend@example.com"

Output format tips

  • Use --output json when you need structured data for piping into jq or scripts.
  • Use --output plain (default) for human-readable tables and text.

Common gotchas

  1. Trailing query args: himalaya envelope list accepts the query as trailing arguments.

Shell escaping matters. If the query has spaces, quote the entire query string.

  1. Page numbering: --page starts at 1 (not 0).
  2. Date boundaries: before 2025-04-01 excludes April 1; after 2025-04-01 also excludes

April 1 (Himalaya adjusts internally by adding a day to use SENTSINCE).

  1. Config location: Default is ~/.config/himalaya/config.toml. Run himalaya account configure <name>

for the wizard.

External resources

  • Repository: https://github.com/pimalaya/himalaya
  • Query DSL reference (bundled): references/query_dsl.md

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

78.07%
按下载量换算1,062

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install himalaya-skill 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills