Create lumbox inbox
Official agent skills for Lumbox — email infrastructure for AI agents (inboxes, OTP extraction, send/reply via REST + MCP).
npx -y skills add kumard3/lumbox-skills --skill create-lumbox-inboxAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 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
Create a fresh Lumbox email inbox for an AI agent. Returns a real email address the agent can receive OTPs, magic links, and messages at.
SKILL.md
1.8 KB, 441 tokens by cl100k_base, as published. Nobody here has run it
Create a Lumbox Inbox
Use this skill when an AI agent needs a real, working email address - for example, to sign up for a third-party service, receive an OTP, or communicate with humans.
When to use
- Agent needs to sign up for a SaaS that requires email verification
- Agent needs to receive an OTP or magic link
- Each workflow/session needs an isolated inbox (no cross-contamination)
Prerequisites
- A Lumbox API key. Create one at https://app.lumbox.co/settings/api-keys.
- Set the key in the
LUMBOX_API_KEYenvironment variable.
Steps
-
Call the API with POST
https://api.lumbox.co/v1/inboxes:curl -X POST https://api.lumbox.co/v1/inboxes \ -H "X-API-Key: $LUMBOX_API_KEY" \ -H "Content-Type: application/json" \ -d '{"name": "github-signup-bot"}' -
Read the response. Extract
address(the real email address) andid(the inbox identifier):{ "id": "inb_8x2f9a...", "address": "[email protected]", "imap_password": "..." } -
Use the address. Provide
addressas the email during sign-up or anywhere an email is needed. Emails sent to this address arrive in the inbox within seconds.
Tips
- Use descriptive names (
name) so you can find the inbox later in the dashboard. - To receive email at a custom domain (e.g.
[email protected]), configure the domain first via POST/v1/domains. - Free tier: 3 inboxes, 500 emails/month. Upgrade at https://lumbox.co/pricing.
Related skills
wait-for-otp- block until an OTP code arrivessend-email- send email from an inbox
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.