Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add instructions/powersurge01/shoot-email/agents-mdgit clone --depth 1 https://github.com/powersurge01/shoot-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/instructions/powersurge01/shoot-email/agents-md)<a href="https://agentmods.dev/instructions/powersurge01/shoot-email/agents-md"><img src="https://agentmods.dev/badge/instructions/powersurge01/shoot-email/agents-md.svg" alt="Measured on agentmods" 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 | $0.03723 | $0.03723 |
| Opus 5 | $0.01861 | $0.01861 |
| Sonnet 5 | $0.00745 | $0.00745 |
| Haiku 4.5 | $0.00372 | $0.00372 |
Grade A, and why
shoot-email AGENTS.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 3d 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 — 402 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Shoot Email CLI Planning Notes
Product Direction
Build a terminal-first email client/service that lets users send text emails and check received text emails from the command line. Start with a CLI because it is easy to build, inspect, and debug. Later, wrap the same service layer in an MCP server and use it as the backend for a ChatGPT app.
Recommended Architecture
CLI
-> local API/service
-> local database
-> Cloudflare Email Sending API
Cloudflare Email Routing
-> Email Worker email() handler
-> parse inbound email
-> POST normalized JSON to backend webhook
-> validate/store message
-> CLI reads messages from database
The CLI should be the user interface, but it should not be the whole system. Receiving mail requires Cloudflare Email Routing plus a Worker email handler. The Worker parses inbound mail and posts normalized JSON to the backend webhook.
Cloudflare Fit
Cloudflare Email Service is the preferred provider because it supports:
- Receiving inbound mail through Email Routing.
- Running custom inbound logic through an Email Worker.
- Sending outbound mail through Email Sending.
- Keeping DNS, inbound routing, outbound sending, and edge logic on one platform.
For development, use wrangler dev to test Email Routing behavior locally. When a deployed Worker needs to reach a local backend, expose the local webhook with a tunnel such as cloudflared or ngrok until the service is moved to a small cloud host.
Hosting Decision
Host the durable HTTP backend on Cloudflare Workers Paid and use Neon Postgres
with pgvector as the managed database. Connect the Worker to Neon through a
Hyperdrive binding with query caching disabled initially. Worker requests use a
request-scoped pg.Client; local CLI, migration, and integration-test paths
continue using pooled Docker Postgres.
Use transaction-scoped lock rows with SELECT ... FOR UPDATE for outbound
quota coordination. Do not use PostgreSQL advisory locks through Hyperdrive;
they are not supported.
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.
- 3d ago First seen · 402 lines · 3,723 tokens per session scan A 3bf382e0d9e5
shoot-email AGENTS.md is an instructions file published in the GitHub repository powersurge01/shoot-email (0 stars, last pushed 1mo ago), licensed MIT. It adds 3,723 tokens to every session, about $0.0186 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 instructions, from other repositories
saasmail AGENTS.md
AGENTS.md instructions for choyiny/saasmail, covering agent / contributor notes, doc map, tooling, local yarn test prerequisites and ci on every pr.
imap-mcp-server AGENTS.md
AGENTS.md instructions for nikolausm/imap-mcp-server, covering agents.md, architecture, build / test commands, security rules (must follow) and conventions.
saasmail CLAUDE.md
Claude Code instructions for choyiny/saasmail, covering saasmail, development and skills.
imap-mcp-server CLAUDE.md
Claude Code instructions for nikolausm/imap-mcp-server, covering claude.md and claude-specific notes.
wasmagent-js CLAUDE.md
Claude Code instructions for WasmAgent/wasmagent-js, covering wasmagent-js — development guide for claude, what this project is (and is not), repository boundaries, this repository owns and other repositories own — do not duplicate here.
hqbase AGENTS.md
AGENTS.md instructions for HQBase/hqbase, covering hqbase workspace guide, boundaries and quality gate.