NewsletterKit Email Newsletter Builder
by @theshadowrose
Build and format email newsletters from agent-curated content. Sections, formatting, subscriber-friendly HTML output. Works with any email service.
clawhub install newsletter-kitπ About This Skill
name: "NewsletterKit Email Newsletter Builder" description: "Build and format email newsletters from agent-curated content. Sections, formatting, subscriber-friendly HTML output. Works with any email service." author: "@TheShadowRose" version: "1.0.0" tags: ["newsletter-kit"] license: "MIT"
NewsletterKit Email Newsletter Builder
Build and format email newsletters from agent-curated content. Sections, formatting, subscriber-friendly HTML output. Works with any email service.
Curate content through the week. Generate a formatted newsletter on publish day.
Workflow
1. Collect β save links, notes, snippets during the week 2. Curate β agent organizes by section and relevance 3. Draft β generate newsletter copy with section intros 4. Format β output as HTML email, markdown, or plain text 5. Review β human approves final version 6. Send β export to your email service
Usage
const { NewsletterKit } = require('./src/newsletter-kit');
const kit = new NewsletterKit();kit.addItem({ section: 'AI News', title: 'New model released', url: '...' });
kit.addItem({ section: 'Tools', title: 'Useful new library', url: '...' });
const newsletter = await kit.generate({
name: 'Weekly AI Brief',
intro: 'This week in AI...',
format: 'html'
});
Output Formats
β οΈ Disclaimer
This software is provided "AS IS", without warranty of any kind, express or implied.
USE AT YOUR OWN RISK.
By downloading, installing, or using this software, you acknowledge that you have read this disclaimer and agree to use the software entirely at your own risk.
DATA DISCLAIMER: This software processes and stores data locally on your system. The author(s) are not responsible for data loss, corruption, or unauthorized access resulting from software bugs, system failures, or user error. Always maintain independent backups of important data. This software does not transmit data externally unless explicitly configured by the user.
Support & Links
| | | |---|---| | π Bug Reports | TheShadowyRose@proton.me | | β Ko-fi | ko-fi.com/theshadowrose | | π Gumroad | shadowyrose.gumroad.com | | π¦ Twitter | @TheShadowyRose | | π GitHub | github.com/TheShadowRose | | π§ PromptBase | promptbase.com/profile/shadowrose |
*Built with OpenClaw β thank you for making this possible.*
π οΈ Need something custom? Custom OpenClaw agents & skills starting at $500. If you can describe it, I can build it. β Hire me on Fiverr
π‘ Examples
const { NewsletterKit } = require('./src/newsletter-kit');
const kit = new NewsletterKit();kit.addItem({ section: 'AI News', title: 'New model released', url: '...' });
kit.addItem({ section: 'Tools', title: 'Useful new library', url: '...' });
const newsletter = await kit.generate({
name: 'Weekly AI Brief',
intro: 'This week in AI...',
format: 'html'
});