shoot-email AGENTS.md

shoot-email AGENTS.md is an instructions file for Codex, OpenCode from powersurge01/shoot-email. It costs 3,723 tokens per session, scanned A, original, MIT.

A set of project instructions for building Shoot Email, a command-line email client and service. It describes a planned design using a local service and database with Cloudflare for sending, receiving, and routing email.

In plain words
What is it for?
Use it when planning Shoot Email's command-line interface, local service, database, Cloudflare email setup, inbound email Worker, or future MCP integration.
Why use it?
It gives the coding agent the project's intended direction and architecture, reducing guesswork when planning or implementing the system.

Instructions file for CodexOpenCode

Install

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.

agentmods
npx agentmods add instructions/powersurge01/shoot-email/agents-md
Clone the repo
git clone --depth 1 https://github.com/powersurge01/shoot-email

Made for: Codex, OpenCode.

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 shoot-email AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/powersurge01/shoot-email/agents-md.svg)](https://agentmods.dev/instructions/powersurge01/shoot-email/agents-md)
Your own site
<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>
Per session 3,723 This file is loaded in full into every session.
When invoked 3,723 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 $0.03723 $0.03723
Opus 5 $0.01861 $0.01861
Sonnet 5 $0.00745 $0.00745
Haiku 4.5 $0.00372 $0.00372

Measured 3d ago against content hash 3bf382e0d9e5, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

AGENTS.md · 402 lines

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.

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.

Read the full file on GitHub · 402 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. 3d ago First seen · 402 lines · 3,723 tokens per session scan A 3bf382e0d9e5

Subscribe to this mod's changes

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.