← Back to list

kit-broadcast
by kkoppenhaver
All of the Claude Code skills that I use
⭐ 0🍴 0📅 Jan 20, 2026
SKILL.md
name: kit-broadcast description: Create and schedule email broadcasts in Kit (ConvertKit) for new blog posts on Claude Code for Marketers. Use when: (1) announcing a new blog post via email, (2) scheduling a Kit broadcast, (3) creating newsletter content for claudecodeformarketers.com posts. Triggers include "send email about this post", "schedule broadcast", "announce this post", "kit broadcast", "email newsletter".
Kit Broadcast Skill
Create and schedule email broadcasts for new blog posts.
Workflow
- Read the blog post from
src/content/blog/{slug}.md - Extract key information:
- Title from frontmatter
- 3-4 key points from the content
- Build post URL:
https://claudecodeformarketers.com/blog/{slug}
- Generate email copy following the template in
references/email-template.md - Present the email to user for review (subject + HTML content)
- Ask for schedule time in ISO8601 format (e.g.,
2026-01-20T10:00:00-06:00) - Create broadcast using
scripts/kit_broadcast.py
Script usage
# Load API key from .env in project root
source /Users/keanan/code/claude-code-for-marketers/.env && export KIT_API_KEY
# Dry run (test without sending)
python scripts/kit_broadcast.py \
--subject "[CC4M] Post Title" \
--content "<p>HTML content here</p>" \
--send-at "2026-01-20T10:00:00-06:00" \
--dry-run
# Create scheduled broadcast
python scripts/kit_broadcast.py \
--subject "[CC4M] Post Title" \
--content "<p>HTML content here</p>" \
--send-at "2026-01-20T10:00:00-06:00"
Timezone
User is in US Central time. When they say "10am tomorrow", convert to ISO8601 with -06:00 offset (CST) or -05:00 (CDT during daylight saving).
Subscriber targeting
Broadcasts are automatically filtered to subscribers with the "CC4M" tag (ID: 14154457). This is hardcoded in the script.
After scheduling
Report back:
- Broadcast ID from API response
- Scheduled send time
- Audience: CC4M tag subscribers
- Suggest user verify in Kit dashboard at https://app.kit.com/broadcasts
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon