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

clawhub-thunderbird-skillClawHub thunderbird 技能

Agent Skill

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

总安装

8,185

周安装

348

GitHub Stars

公开资料未说明

下载量

2,868
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install clawhub-thunderbird-skill

简介

该技能用于读取和搜索本地 Mozilla Thunderbird 邮件存储,支持从配置文件、本地文件夹或 IMAP 缓存中提取邮件。

  • 适用于需要访问本地邮箱数据、进行邮件内容检索或分析的场景。
  • 通过命令行安装并配置,需确保 OpenClaw 环境已正确设置。
  • 使用前请确认 Thunderbird 数据存储路径及权限,避免影响现有邮件访问。
  • clawhub-thunderbird-skill 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
thunderbird
description
Read and search local Mozilla Thunderbird mail storage on disk. Use when working with Thunderbird profiles, extracting emails from local folders or IMAP cache, locating messages by sender/recipient/subject/body, checking which account a mailbox belongs to, or answering inbox questions for a specific Thunderbird account such as "do I have unread mail today?" or "search mail for user@example.com".

Thunderbird

Use Thunderbird's local profile data as the source of truth for offline mail inspection. Prefer read-only access and search the raw local storage directly rather than relying on UI automation.

Run the bundled script from the skill directory, or use an absolute path resolved from the skill root:

  • python scripts/search_thunderbird.py ...

If the current working directory is not the skill directory, resolve scripts/search_thunderbird.py relative to this SKILL.md location before running it.

Quick start

  1. Detect available profiles:

- python scripts/search_thunderbird.py --list-profiles

  1. List accounts in one profile:

- python scripts/search_thunderbird.py --profile default-release --list-accounts

  1. Search one mailbox account directly:

- python scripts/search_thunderbird.py --profile default-release --account user@example.com --folder inbox --query invoice --limit 10

  1. Narrow content search when needed:

- --subject-only to search only the subject line - --body-only to search only the body/preview text - --exclude <text> to remove noisy matches

  1. Return only unread inbox messages when needed:

- python scripts/search_thunderbird.py --profile default-release --account user@example.com --folder inbox --unread-only --limit 20

  1. Extract, filter, or sort more when needed:

- --show-body - --unread-only - --subject-only - --body-only - --exclude wordpress - --has-attachment - --attachment-name invoice - --list-attachments - --save-attachments ./out - --today - --yesterday - --since 2026-03-11 - --until 2026-03-12T08:00:00+01:00 - --sort-by date|from|subject|to - --sort-order asc|desc - --json

Workflow

1. Pick the profile

Use --list-profiles first if the profile is unknown. The script now checks common Thunderbird profile roots on Windows and Linux automatically. Accept either:

  • absolute profile path
  • exact profile directory name
  • unique profile-name fragment

If multiple profiles match, stop and choose explicitly.

2. Pick the account when possible

For account-specific requests, do not scan every mailbox first.

Use:

  • --list-accounts to inspect the profile
  • --account <email-or-fragment> to restrict work to one Thunderbird account
  • --folder inbox|sent|archive|drafts|junk|trash|spam to narrow further

This is usually both faster and easier than scanning the whole profile.

3. Search local storage

Use scripts/search_thunderbird.py for most tasks. It scans common Thunderbird storage roots:

  • Mail/
  • ImapMail/

It supports:

  • mbox folders such as Inbox, Sent, Archives
  • Maildir folders containing cur/ and new/
  • common profile discovery on Windows and Linux (%APPDATA%/Thunderbird/Profiles, ~/.thunderbird, ~/.mozilla/thunderbird)

4. Return useful results

By default, summarize:

  • source mailbox path
  • date
  • from
  • to
  • subject
  • body preview

Prefer focused summaries for the user. Use --show-body only when the full message text is necessary.

Common tasks

List profiles

python scripts/search_thunderbird.py --list-profiles

List accounts inside a profile

python scripts/search_thunderbird.py --profile default-release --list-accounts

Search one account inbox by keyword

python scripts/search_thunderbird.py --profile default-release --account user@example.com --folder inbox --query contract --limit 20

Find messages from a sender inside one account

python scripts/search_thunderbird.py --profile default-release --account user@example.com --from billing@example.com --limit 20

Find messages by subject fragment and return JSON

python scripts/search_thunderbird.py --profile default-release --account user@example.com --subject invoice --json --limit 20

Return only unread inbox messages

python scripts/search_thunderbird.py --profile default-release --account user@example.com --folder inbox --unread-only --limit 20

Search only in subject or only in body

python scripts/search_thunderbird.py --profile default-release --account user@example.com --folder inbox --query invoice --subject-only --limit 20
python scripts/search_thunderbird.py --profile default-release --account user@example.com --folder inbox --query password --body-only --limit 20

Exclude noisy matches

python scripts/search_thunderbird.py --profile default-release --account user@example.com --folder inbox --query update --exclude wordpress --limit 20

Find messages with attachments or save them

python scripts/search_thunderbird.py --profile default-release --account user@example.com --folder inbox --has-attachment --list-attachments --limit 20
python scripts/search_thunderbird.py --profile default-release --account user@example.com --attachment-name invoice --save-attachments .\out --limit 20

Sort messages by sender or subject

python scripts/search_thunderbird.py --profile default-release --account user@example.com --folder inbox --sort-by from --sort-order asc --limit 20

Filter messages by time range

python scripts/search_thunderbird.py --profile default-release --account user@example.com --folder inbox --since 2026-01-01 --until 2026-01-02T08:00:00+01:00 --sort-by date --sort-order desc --limit 20

Use day shortcuts

python scripts/search_thunderbird.py --profile default-release --account user@example.com --folder inbox --yesterday --sort-by date --sort-order desc --limit 20

Extract full body text for a narrow match

python scripts/search_thunderbird.py --profile default-release --account user@example.com --query "reset password" --show-body --limit 5

Interpretation rules

  • Treat .msf files as indexes, not message sources.
  • Prefer the raw mbox file when a mailbox file and .msf both exist.
  • Remember that IMAP results reflect cached local messages, not necessarily the full server mailbox.
  • If a message is not found, mention that local Thunderbird storage may not contain it or may not have synced it.
  • When the user names an email address, prefer --account before broader searches.
  • --unread-only depends on Thunderbird folder indexes (.msf) for mbox folders; if unread state is unavailable, say so instead of guessing.
  • --since and --until accept YYYY-MM-DD or ISO-8601 timestamps. Bare --since dates are interpreted as UTC midnight, while bare --until dates are interpreted as UTC end-of-day.
  • --today and --yesterday are UTC-based shortcuts and cannot be combined with --since or --until.
  • --subject-only and --body-only only change how --query is matched; do not combine them with each other.
  • --has-attachment filters to messages with attachments; --attachment-name filters by attachment filename.
  • --save-attachments <dir> writes matching attachments to disk and implicitly enables attachment-aware filtering when needed.

Attachment interaction policy

When the user asks for an attachment, do not save or open it immediately unless they already said what they want done.

Default follow-up:

  • Should I save it or open it?

If the user says save:

  • ask where to save it if they did not already specify a location
  • then use --save-attachments <dir>
  • return the final saved path(s)

If the user says open:

  • first extract the attachment to a temporary or user-requested location
  • then open it with the system default app from the CLI
  • prefer the platform default opener instead of inventing app-specific commands
  • mention the file path you opened

If the attachment is text-like and the user likely wants contents rather than launching an external app, it is also acceptable to read or summarize it directly after asking.

Reference

Read references/storage-layout.md when you need a quick map of Thunderbird's on-disk structure.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

74.39%
按下载量换算2,134

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills