Sc resend
Zero-human full-stack deployment skill bundle for AI agents — GitHub + Dokploy + Convex (self-hosted & Cloud) + Vercel + Hostinger DNS, via modular /sc-* slash commands.
npx -y skills add rahmanef63/si-coder-agent --skill sc-resendAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 13 stars13 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
(STUB / NOT IMPLEMENTED YET) Transactional email via Resend — verify sender domain DNS (DKIM/SPF/DMARC), create API keys, send template-based emails. Pairs with sc-cf or lib/hostinger.js for the DNS record creation step.
SKILL.md
1.6 KB, as published. Nobody here has run it
/sc-resend — Resend (STUB)
Status: boilerplate only.
Scope when implemented
- Domain verification: register a sending domain with Resend, fetch the DKIM/SPF/DMARC records it requires, then create them via
sc-cforlib/hostinger.jsautomatically — no manual DNS copy-paste. - API key rotation per project, scoped to the verified domain.
- Audience creation for broadcast lists (optional).
- Smoke send to a verified recipient to confirm DNS propagation.
Env vars
| Var | Purpose |
|---|---|
RESEND_API_KEY | re_... server key |
RESEND_FROM_DOMAIN | The verified sending domain |
Suggested file layout
sc-resend/
├── SKILL.md
└── scripts/
├── verify-domain.js # register + auto-create DNS records via sc-cf / hostinger
├── api-key.js # create/rotate scoped API key
├── audiences.js # CRUD audience (optional)
└── smoke-send.js # send a test email to confirm
Implementation notes
- API base:
https://api.resend.com - Auth:
Authorization: Bearer <RESEND_API_KEY> - Domain verify response gives 3 records
[{ name, type, value }]— feed those into the DNS module viaconfigureDns(). - DMARC: Resend recommends
v=DMARC1; p=none;initially, tighten top=quarantineonce SPF/DKIM are confirmed in DNS for 24h.