From 897964948448fe4e18737a1aea19b1a82d8db871 Mon Sep 17 00:00:00 2001 From: ty <786220806@qq.com> Date: Sun, 22 Mar 2026 14:49:37 +0800 Subject: [PATCH] feat: add llms.txt for AI agent discoverability --- public/llms.txt | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 public/llms.txt diff --git a/public/llms.txt b/public/llms.txt new file mode 100644 index 0000000..15f0f6b --- /dev/null +++ b/public/llms.txt @@ -0,0 +1,24 @@ +# MoeMail + +> Temporary email service with CLI tool for AI Agents + +MoeMail provides disposable email addresses. Install the CLI for programmatic access: + +## CLI Tool + +Install: npm i -g moemail-cli + +Setup: moemail config set api-url https://moemail.app && moemail config set api-key YOUR_KEY + +Commands: +- moemail create --domain --expiry <1h|24h|3d|permanent> --json +- moemail list --json +- moemail list --email-id --json +- moemail wait --email-id --timeout --json +- moemail read --email-id --message-id --json +- moemail send --email-id --to --subject --content --json +- moemail delete --email-id --json + +Typical workflow: create email → use address for signup → wait for verification → read content → extract code → delete + +All commands support --json for structured output. Exit code 0 = success, 1 = failure, 2 = auth error.