feat: add Resend CLI docs and Firehose integration
- resend.md: update CLI availability (now official), add CLI install, setup, and common commands section - firehose.md: new integration guide for real-time web content streaming API — query syntax, stream setup, marketing use cases (brand monitoring, competitive intel, lead triggers, PR/link building) - REGISTRY.md: add firehose under Competitive Intelligence Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -8,7 +8,7 @@ Developer-friendly transactional email service with modern API.
|
||||
|-------------|-----------|-------|
|
||||
| API | ✓ | Simple REST API for sending emails |
|
||||
| MCP | ✓ | Available via Resend MCP server |
|
||||
| CLI | - | Not available |
|
||||
| CLI | ✓ | Official Resend CLI |
|
||||
| SDK | ✓ | Official SDKs for Node.js, Python, Go, etc. |
|
||||
|
||||
## Authentication
|
||||
@@ -17,6 +17,49 @@ Developer-friendly transactional email service with modern API.
|
||||
- **Header**: `Authorization: Bearer {api_key}`
|
||||
- **Get key**: API Keys section in Resend dashboard
|
||||
|
||||
## CLI
|
||||
|
||||
### Install
|
||||
|
||||
```bash
|
||||
npm install -g resend-cli
|
||||
```
|
||||
|
||||
### Setup
|
||||
|
||||
```bash
|
||||
resend login
|
||||
# or set env var: RESEND_API_KEY=re_xxx
|
||||
```
|
||||
|
||||
### Common commands
|
||||
|
||||
```bash
|
||||
# Send a test email
|
||||
resend emails send --from hello@example.com --to user@example.com --subject "Test" --text "Hello"
|
||||
|
||||
# List recent emails
|
||||
resend emails list
|
||||
|
||||
# Get email status
|
||||
resend emails get <email_id>
|
||||
|
||||
# List domains
|
||||
resend domains list
|
||||
|
||||
# Add a domain
|
||||
resend domains create --name example.com
|
||||
|
||||
# Verify a domain
|
||||
resend domains verify <domain_id>
|
||||
|
||||
# List API keys
|
||||
resend api-keys list
|
||||
|
||||
# Create an API key
|
||||
resend api-keys create --name "Production"
|
||||
```
|
||||
|
||||
## Common Agent Operations
|
||||
|
||||
### Send email
|
||||
@@ -155,6 +198,7 @@ await resend.emails.send({
|
||||
- Receipt and notification emails
|
||||
- Developer-friendly email integration
|
||||
- React-based email templates
|
||||
- Quick CLI testing of email flows without writing code
|
||||
|
||||
## Rate Limits
|
||||
|
||||
|
||||
Reference in New Issue
Block a user