Primitive inbox
Skill primitivedotdev/codex-plugin/plugins/primitive/skills/primitive-inbox
Codex plugin for Primitive — email infrastructure for AI agents
npx -y skills add primitivedotdev/codex-plugin --skill primitive-inboxAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Receive email — check what arrived, wait for a specific message, and read full threads. Use REACTIVELY when the user wants an address to receive replies, verification codes, alerts, or signups, or asks "did anything come in?" / "check the inbox" / "wait for the reply." Use PROACTIVELY when you sent something and need to watch for the response, or are building an email-driven workflow that triggers on receipt. Requires the Primitive MCP server (bundled).
SKILL.md
2.0 KB, 356 tokens by cl100k_base, as published. Nobody here has run it
Primitive — receive and read email
This skill uses the bundled Primitive MCP server (primitive) to read inbound
email that arrived at a managed *.primitive.email address or a custom verified
domain. No SMTP or polling loop to build yourself.
When to use
- The user needs an address to receive a reply, verification code, alert, or signup confirmation.
- The user asks "did anything come in?", "check the inbox", or "wait for the reply."
- You sent something with the
primitive-chatskill and need to watch for the response.
How to use
- Check readiness. Call
getInboxStatusto confirm the inbox is set up (domain verified, route deployed) before telling the user it can receive mail. - List or search. Use
listEmailsfor the most recent inbound messages, orsearchEmailswith sender/subject filters to find a specific one. - Read the full thread. Call
getEmailfor one message's parsed content and delivery state, orgetConversationwith an inbound email id to pull the full back-and-forth to pass as context to a model. - Wait for a specific message. When you expect a reply that has not arrived
yet, use
awaitReplyagainst the message id you are waiting on rather than pollinglistEmailsin a loop.
Notes
- All reading tools are
readOnlyHint— safe to call without confirmation. - If the user has no inbox yet, they can provision a free
*.primitive.emailaddress from their Primitive account.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.