Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/jacobrask/claude-skillsnpx agentmods add skills/jacobrask/claude-skills/jmap-emailWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/jacobrask/claude-skills/jmap-email)<a href="https://agentmods.dev/skills/jacobrask/claude-skills/jmap-email"><img src="https://agentmods.dev/badge/skills/jacobrask/claude-skills/jmap-email/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/jacobrask/claude-skills/jmap-email"><img src="https://agentmods.dev/badge/skills/jacobrask/claude-skills/jmap-email.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00057 | $0.01025 |
| Opus 5 | $0.00028 | $0.00513 |
| Sonnet 5 | $0.00011 | $0.00205 |
| Haiku 4.5 | $0.00006 | $0.00103 |
Grade A, and why
jmap-email scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 116 lines — stays where its author put it; the contents beside it link to each section on GitHub.
JMAP Email Access
Access JMAP email servers (FastMail, Cyrus IMAP, Stalwart) using pre-built scripts.
Prerequisites
Environment variables must be set before launching Claude Code:
JMAP_SESSION_URL- JMAP server session URLJMAP_BEARER_TOKEN- Authentication bearer tokenJMAP_ACCOUNT_ID- Account ID (optional, auto-detected)
Available Scripts
Choose the right script:
- Browse recent emails? → Use
list-emails.ts(supports --unread, --flagged, --mailbox, --from, --limit filters) - Search by sender? → Use
list-emails.ts --from "[email protected]" - Search for multiple keywords? → Use
search-keywords.ts keyword1 keyword2 ... - Get full email content? → Use
get-email.tswith email ID - View folder structure? → Use
list-mailboxes.ts - Move emails by ID? → Use
move-by-ids.ts --mailbox <name> <id1> <id2> ... - Delete emails? → Use
delete-emails.ts <id1> <id2> ...
All scripts support --help for detailed usage.
Common Tasks
Browse unread emails
node scripts/list-emails.ts --unread
node scripts/list-emails.ts --unread --limit 50
Find emails from specific sender
node scripts/list-emails.ts --from "[email protected]"
node scripts/list-emails.ts --from "[email protected]" --unread
Search for receipts or specific content
node scripts/search-keywords.ts "invoice" "receipt" "order confirmation"
node scripts/search-keywords.ts --mailbox "Archive" --limit 10 "meeting" "agenda"
Note: Search shows previews only. For full email content, use get-email.ts with the email ID.
Get full email content
node scripts/get-email.ts <email-id>
Organize emails (classification workflow)
- Search for candidates:
search-keywords.ts "keyword1" "keyword2" - Review previews and identify relevant email IDs
- (Optional) View full content:
get-email.ts <email-id> - Move to target mailbox:
move-by-ids.ts --mailbox @MailboxName id1 id2 id3
Interactive email triage
Workflow for processing new emails with learning:
What ships with it
60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- DEVELOPMENT.md 3.6 KB
- node_modules/.package-lock.json 1.6 KB
- node_modules/@types/node/assert.d.ts 46 KB runs code
- node_modules/@types/node/assert/strict.d.ts 2.9 KB runs code
- node_modules/@types/node/async_hooks.d.ts 26 KB runs code
- node_modules/@types/node/buffer.buffer.d.ts 22 KB runs code
- node_modules/@types/node/buffer.d.ts 86 KB runs code
- node_modules/@types/node/child_process.d.ts 65 KB runs code
- node_modules/@types/node/cluster.d.ts 27 KB runs code
- node_modules/@types/node/compatibility/iterators.d.ts 1.3 KB runs code
- node_modules/@types/node/console.d.ts 21 KB runs code
- node_modules/@types/node/constants.d.ts 816 B runs code
- node_modules/@types/node/crypto.d.ts 220 KB runs code
- node_modules/@types/node/dgram.d.ts 27 KB runs code
- node_modules/@types/node/diagnostics_channel.d.ts 24 KB runs code
- node_modules/@types/node/dns.d.ts 36 KB runs code
- node_modules/@types/node/dns/promises.d.ts 21 KB runs code
- node_modules/@types/node/domain.d.ts 7.6 KB runs code
- node_modules/@types/node/events.d.ts 43 KB runs code
- node_modules/@types/node/fs.d.ts 197 KB runs code
- node_modules/@types/node/fs/promises.d.ts 56 KB runs code
- node_modules/@types/node/globals.d.ts 5.8 KB runs code
- node_modules/@types/node/globals.typedarray.d.ts 2.0 KB runs code
- node_modules/@types/node/http.d.ts 93 KB runs code
- node_modules/@types/node/http2.d.ts 129 KB runs code
- node_modules/@types/node/https.d.ts 25 KB runs code
- node_modules/@types/node/index.d.ts 4.3 KB runs code
- node_modules/@types/node/inspector.d.ts 12 KB runs code
- node_modules/@types/node/inspector.generated.d.ts 209 KB runs code
- node_modules/@types/node/LICENSE 1.1 KB
- node_modules/@types/node/module.d.ts 39 KB runs code
- node_modules/@types/node/net.d.ts 47 KB runs code
- node_modules/@types/node/os.d.ts 19 KB runs code
- node_modules/@types/node/package.json 4.4 KB
- node_modules/@types/node/path.d.ts 8.1 KB runs code
- node_modules/@types/node/perf_hooks.d.ts 38 KB runs code
- node_modules/@types/node/process.d.ts 105 KB runs code
- node_modules/@types/node/punycode.d.ts 5.4 KB runs code
- node_modules/@types/node/querystring.d.ts 7.0 KB runs code
- node_modules/@types/node/readline.d.ts 25 KB runs code
- node_modules/@types/node/readline/promises.d.ts 6.3 KB runs code
- node_modules/@types/node/README.md 1.5 KB
- node_modules/@types/node/repl.d.ts 19 KB runs code
- node_modules/@types/node/sea.d.ts 6.5 KB runs code
- node_modules/@types/node/sqlite.d.ts 44 KB runs code
- node_modules/@types/node/stream.d.ts 84 KB runs code
- node_modules/@types/node/stream/consumers.d.ts 1.6 KB runs code
- node_modules/@types/node/stream/promises.d.ts 2.9 KB runs code
- node_modules/@types/node/stream/web.d.ts 27 KB runs code
- node_modules/@types/node/string_decoder.d.ts 2.7 KB runs code
- node_modules/@types/node/test.d.ts 108 KB runs code
- node_modules/@types/node/timers.d.ts 14 KB runs code
- node_modules/@types/node/timers/promises.d.ts 3.7 KB runs code
- node_modules/@types/node/tls.d.ts 59 KB runs code
- node_modules/@types/node/trace_events.d.ts 8.7 KB runs code
- node_modules/@types/node/ts5.6/buffer.buffer.d.ts 22 KB runs code
- node_modules/@types/node/ts5.6/compatibility/float16array.d.ts 3.7 KB runs code
- node_modules/@types/node/ts5.6/globals.typedarray.d.ts 1.2 KB runs code
- node_modules/@types/node/ts5.6/index.d.ts 4.6 KB runs code
- node_modules/@types/node/ts5.7/compatibility/float16array.d.ts 3.8 KB runs code
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 116 lines · 57 tokens per session scan A 674349a4f255
jmap-email is a skill published in the GitHub repository jacobrask/claude-skills (5 stars, last pushed 8mo ago), licensed MIT. It adds 57 tokens to every session and 1,025 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
orbit-notion
Open Orbit briefing skill — selected by the Orbit pipeline when Notion is the user's only connected connector, or when the user explicitly scopes their daily digest to Notion. Pulls the past 24 hours of document edits, comments, mentions, and database row changes from the user's authenticated Notion connection and…
Cortex
Operate Cortex, the LifeOS memory system — the typed Knowledge Archive (People, Companies, Ideas, Research with typed related: links) plus recall of prior work sessions, ISAs, and conversations. Search, add, harvest, develop, ingest, distill, graph-navigate, recall. USE WHEN cortex, knowledge, knowledge base, search…
pinchtab-mcp
Use this skill when a task requires browser automation through PinchTab's MCP server connected to a remote browser instance. Covers navigation, element interaction, data extraction, form filling, multi-step flows, and session management via MCP tools.
feishu
Work with Feishu or Lark bots, docs, sheets, bitables, approval flows, and OpenAPI/MCP setup without hardcoding credentials.
peekaboo
Capture and automate macOS UI with the Peekaboo CLI.
mochi-remind
Handle due reminders — notify the user with natural language and mark them done.