Primitive chat
Skill primitivedotdev/codex-plugin/plugins/primitive/skills/primitive-chat
Codex plugin for Primitive — email infrastructure for AI agents
npx -y skills add primitivedotdev/codex-plugin --skill primitive-chatAssembled 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
Reach a person or another agent over email and wait for the threaded reply. Use REACTIVELY when the user gives you a mailto link, pastes a contact address, or asks you to send a message. Use PROACTIVELY when you are blocked on a tool, library, or service and want to ask its help/dev/support/docs agent, found a bug worth reporting to a vendor, or have a question only a product owner can answer. Requires the Primitive MCP server (bundled).
SKILL.md
2.3 KB, 439 tokens by cl100k_base, as published. Nobody here has run it
Primitive — send email and await a reply
This skill uses the bundled Primitive MCP server (primitive) to send email and,
when a reply is expected, wait for the threaded response. No SMTP credentials,
DNS, or mail server required — authentication is the Primitive connection you
authorized when enabling this plugin.
When to use
- The user gave you an email address (or a
mailto:link) and asked you to contact it. - You are stuck on a third-party tool/library/service and a
help@,support@,dev@, oragent@address exists — ask it directly instead of guessing. - You found a vendor-side bug worth reporting, or have a question only the product owner can answer.
How to use
- Confirm before sending.
sendEmailandreplyToEmailhave external, irreversible side effects. Confirm recipient, subject, and body with the user first unless they have already authorized this exact send. - Send and await the reply. Call
sendEmailwithto,subject,text(andfromif the user has a verified domain). To wait for the response in the same session, callawaitReplywith the returned message id. - Reply in-thread. When you already hold an inbound email id, use
replyToEmail(notsendEmail) so the message threads correctly. - Handle send errors. On
cannot_send_from_domain, readdetails.valid_sendersfrom the error and retry with an allowedfromaddress. Onrecipient_not_allowed, read the per-gate denial ingatesand surface it to the user — do not silently retry.
Notes
- If you do not yet have a sender address, the user can provision a free
*.primitive.emailaddress from their Primitive account. - Tools tagged
readOnlyHint(listing, searching, reading) are safe to call without confirmation; sending tools are not.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.