resend-cli 1.7.1 → 1.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -0
- package/dist/cli.cjs +250 -279
- package/package.json +4 -4
- package/skills/resend-cli/SKILL.md +9 -5
- package/skills/resend-cli/references/logs.md +35 -0
package/README.md
CHANGED
|
@@ -41,6 +41,16 @@ irm https://resend.com/install.ps1 | iex
|
|
|
41
41
|
|
|
42
42
|
Or download the `.exe` directly from the [GitHub releases page](https://github.com/resend/resend-cli/releases/latest).
|
|
43
43
|
|
|
44
|
+
## Agent skills
|
|
45
|
+
|
|
46
|
+
This CLI ships with an [agent skill](skills/resend-cli/SKILL.md) that teaches AI coding agents (Cursor, Claude Code, Windsurf, etc.) how to use the Resend CLI effectively — including non-interactive flags, output formats, and common pitfalls.
|
|
47
|
+
|
|
48
|
+
To install skills for Resend's full platform (API, CLI, React Email, email best practices) from the [central skills repository](https://github.com/resend/resend-skills):
|
|
49
|
+
|
|
50
|
+
```sh
|
|
51
|
+
npx skills add resend/resend-skills
|
|
52
|
+
```
|
|
53
|
+
|
|
44
54
|
## Local development
|
|
45
55
|
|
|
46
56
|
Use this when you want to change the CLI and run your build locally.
|