errol-mail: Instructions file for Claude Code

CLAUDE.md

errol-mail CLAUDE.md is an instructions file for Claude Code from jasondk/errol-mail. It costs 1,036 tokens per session, scanned A, original, MIT.

Developer instructions for Errol-Mail, a Python service that lets AI assistants read Apple Mail data locally in read-only mode. It uses Mail's database, message files, and AppleScript controls.

In plain words
What is it for?
It is for developing and testing message searches, conversation grouping, attachment extraction, and Apple Mail access.
Why use it?
It explains the project's architecture, data sources, commands, and diagnostics so developers can maintain the service safely.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md. Also seen: reads .claude/ paths; mentions CLAUDE.md; mentions Claude Code.

This is jasondk/errol-mail's own configuration. It tells Claude Code how to work on errol-mail itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything errol-mail configures →

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is cd docs && zip -r ../errol.skill SKILL.md references/ assets/ scripts/.

Reuse

Borrowing it

Nothing to install: this file belongs to jasondk/errol-mail. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/jasondk/errol-mail/main/CLAUDE.md
Clone the repo
git clone --depth 1 https://github.com/jasondk/errol-mail

Made for: Claude Code.

Wrote 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.

agentmods badge for errol-mail CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/jasondk/errol-mail/claude-md.svg)](https://agentmods.dev/instructions/jasondk/errol-mail/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/jasondk/errol-mail/claude-md"><img src="https://agentmods.dev/badge/instructions/jasondk/errol-mail/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,036 This file is loaded in full into every session.
When invoked 1,036 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.01036 $0.01036
Opus 5 $0.00518 $0.00518
Sonnet 5 $0.00207 $0.00207
Haiku 4.5 $0.00104 $0.00104

Measured 5d ago against content hash 4f7d9f9de196, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

errol-mail CLAUDE.md 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 5d 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.

CLAUDE.md · 87 lines

How it starts

The opening of the file, as written. The whole thing — 87 lines — stays where its author put it; the contents beside it link to each section on GitHub.

CLAUDE.md — Errol-Mail

Project Overview

Errol-Mail is a Python MCP (Model Context Protocol) server that gives AI assistants comprehensive read-only access to Apple Mail's local database. It bridges Claude and Mail.app via three data sources: SQLite (metadata), .emlx files (content), and AppleScript (headless operations).

Architecture

server.py                    # MCP server — 26 tools exposed via FastMCP
src/
  database.py                # SQLite read-only access to Envelope Index
  messages.py                # Message queries (recent, search, folder)
  email_reader.py            # .emlx parsing + prompt injection detection
  threads.py                 # Thread/conversation grouping
  attachments.py             # Attachment extraction to temp dir
  applescript_helper.py      # Headless flag/read/download via osascript
mail_cli.py                  # CLI interface for manual testing
check_fda.py                 # Full Disk Access diagnostic tool
docs/
  SKILL.md                   # AI skill documentation (source of truth)
  api_reference.md           # Complete API reference
errol.skill                  # Packaged skill (zip of SKILL.md + api_reference.md)

Key Data Sources

  • SQLite DB: ~/Library/Mail/V10/MailData/Envelope Index — message metadata, opened read-only via URI mode
  • .emlx files: ~/Library/Mail/V10/{account-uuid}/.../{rowid}.emlx — full email content, located via pathlib.rglob
  • AppleScript: headless operations (flag, mark read, download) — runs silently without opening Mail UI

Development Commands

python server.py --test          # Smoke tests (mailboxes, recent, unread)
python server.py --logs          # Show recent log entries
python server.py --tail          # Follow logs in real-time
python mail_cli.py mailboxes     # CLI: list mailboxes
python check_fda.py              # Diagnose Full Disk Access

Logs go to ~/Library/Logs/errol-mail/server.log.

Key Design Decisions

Security Model (Prompt Injection Defense)

Email content is untrusted input that becomes part of the LLM context. Defenses:

  1. Content isolation — bodies wrapped in <email-content source="untrusted"> tags
  2. Security header — constant reminder on all reads
  3. Injection detection — 18 regex patterns in email_reader.py scan for common attacks
  4. Markdown escaping — subjects/senders escaped to prevent table-breaking
  5. Junk/Trash exclusion — discovery tools exclude Junk/Spam/Trash by default to reduce exposure to malicious content

Read the full file on GitHub · 87 lines

Changes

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.

  1. 5d ago First seen · 87 lines · 1,036 tokens per session scan A 4f7d9f9de196

Subscribe to this mod's changes

errol-mail CLAUDE.md is an instructions file published in the GitHub repository jasondk/errol-mail (0 stars, last pushed 23d ago), licensed MIT. It adds 1,036 tokens to every session, about $0.0052 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.

Related

Other instructions, from other repositories

next.js AGENTS.md

AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.

vercel/next.js · 7,296 tokens

codex AGENTS.md

AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.

openai/codex · 5,182 tokens

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens

vscode oss-third-party-notices.instructions.md

Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).

microsoft/vscode · 5,001 tokens

langchain AGENTS.md

AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.

langchain-ai/langchain · 4,469 tokens

spec-kit AGENTS.md

AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.

github/spec-kit · 7,104 tokens