* Add newsletter worker: weekly community components email via Resend New Cloudflare Worker (cloudflare-workers/newsletter/) that composes and sends a weekly email featuring trending components (one Skill, Agent, MCP, Hook and Setting per send). Selection is weighted-random by recent downloads and all copy rotates from pools so no two emails read the same. Delivered as a Resend Broadcast to the segment in RESEND_SEGMENT_ID, with per-recipient unsubscribe handled by Resend, reply-to routing, and open/click tracking via track.aitmpl.com. Cron: Sundays 16:00 UTC (slot freed by decommissioning the claude-docs-monitor worker, documented in CLAUDE.md). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * Address review: escape URL in HTML, surface broadcast id, cron dedupe guard - escapeHtml() on the component URL in the HTML href/text, consistent with every other dynamic field in the block - Include the created broadcast id in the error when POST /broadcasts/{id}/send fails, so an orphaned broadcast can be recovered manually - Guard the scheduled path against Cloudflare's occasional cron double-fire: pre-flight check for an existing non-draft "newsletter <today>" broadcast before sending (fails open; manual /trigger bypasses it so pilots can send multiple times a day) Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * Address review: log non-2xx Sentry responses in newsletter sentry.js reportError and checkIn now check response.ok and console.error rejected envelopes (invalid DSN, auth failure, rate limiting) so observability failures leave a signal in worker logs instead of passing silently. The never-throws guarantee is unchanged. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * Address review: close cron double-fire race with draft leader election The read-then-create pre-check left a window where two overlapping cron invocations could both pass the check and both send. The scheduled path now runs a stateless leader election on Resend itself: each run creates its broadcast as a draft, waits a 10s settle so concurrent drafts are visible, lists today's broadcasts, and only the deterministic winner (smallest draft id, and only if nobody already sent) calls /send; losers delete their draft and yield. Chosen over Workers KV because KV has no compare-and-set and cannot provide an atomic lock; a Durable Object would, but is overkill for this worker. Manual /trigger sends still bypass dedupe. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * Address review: prevent stale drafts from blocking same-day cron retries Two guards against a transient /send failure leaving an abandoned draft that would win every later election with nobody to send it: - On /send failure the run now deletes its own draft before throwing, so a retry starts clean (if the send actually succeeded despite the error response, the broadcast is no longer a draft and the DELETE is a no-op). - The election only yields to drafts created within the 5-minute overlap window; older drafts belong to runs that died before cleanup and are ignored as candidates. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> --------- Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
Cloudflare Workers
This directory contains Cloudflare Workers for automation and monitoring tasks that run on Cloudflare's edge network.
Why Cloudflare Workers?
We separate monitoring and automation tasks into Cloudflare Workers to:
- ✅ Separation of concerns: the dashboard Pages project serves the web app, these Workers handle automated tasks
- ✅ Better performance: Ultra-fast edge computing with 0 cold starts
- ✅ Free cron jobs: Unlimited on the free tier
- ✅ Scalability: 100k requests/day on free tier
- ✅ KV Storage included: Save state without a database
- ✅ 100% CLI managed: No dashboard needed - everything via
wranglerCLI
📦 Available Workers
crons
Scheduled caller for the dashboard API (replaces the old Vercel cron jobs).
Functionality:
- Calls
/api/claude-code-checkevery 30 minutes (monitors Claude Code npm releases) - Calls
/api/health-checkevery hour - Reports errors and cron check-ins to Sentry
Quick Start (CLI only):
cd crons
npm install
wrangler login
npm run deploy
Config & secrets: see crons/wrangler.toml (schedules, DASHBOARD_URL, TRIGGER_SECRET, SENTRY_DSN).
docs-monitor
Claude Code documentation monitor with Telegram notifications.
Functionality:
- Monitors https://code.claude.com/docs every 6 hours
- Detects changes using SHA-256 hash
- Sends Telegram notifications when changes occur
- Includes HTTP endpoint for manual triggers
Quick Start (CLI only):
cd docs-monitor
npm install
wrangler login
npm run deploy
Full documentation: docs-monitor/README.md
pulse
Weekly KPI report sent via Telegram every Sunday at 14:00 UTC.
Functionality:
- Collects metrics from GitHub, Discord, Supabase, npm, and Google Analytics
- Formats a consolidated weekly report
- Sends to Telegram automatically via cron
- Manual trigger via HTTP endpoint
Quick Start (CLI only):
cd pulse
npm install
wrangler login
npm run deploy
Full documentation: pulse/README.md
daily-health-report
Daily monitoring digest sent via Telegram, every day at 14:00 UTC (10:00 AM EDT).
Functionality:
- Checks dashboard site health (reuses
/api/health-check) - Summarizes unresolved Sentry issues from the last 24h across all 3 Sentry projects (
aitmpl-workers,aitmpl-dashboard,aitmpl-cli) - Auto-resolves known test/verification noise (title match only, conservative by design — see
index.js); real errors are always left open and listed for human review - Complements (doesn't replace) docs-monitor's change/error alerts and pulse's weekly KPI report — this is the "everything's fine" / "here's what's broken" heartbeat
- Does NOT poll the other 3 workers directly (Cloudflare blocks Worker-to-Worker fetches over
*.workers.devwithin the same account — error 1042); their health is covered by Sentry Cron Monitor check-ins instead
Quick Start (CLI only):
cd daily-health-report
npm install
wrangler login
npm run deploy
Config & secrets: see daily-health-report/wrangler.toml (TELEGRAM_BOT_TOKEN, TELEGRAM_CHAT_ID, SENTRY_AUTH_TOKEN, SENTRY_ORG_SLUG).
🚀 General Setup (CLI)
Prerequisites
- Cloudflare account (free)
- Wrangler CLI installed:
npm install -g wrangler
Common CLI Commands
# Authenticate
wrangler login
# Develop locally
wrangler dev
# Deploy to production
wrangler deploy
# View real-time logs
wrangler tail
# List deployments
wrangler deployments list
# View deployment details
wrangler deployments view <deployment-id>
# List workers
wrangler deployments list
# Delete a worker
wrangler delete
KV Storage Commands (CLI)
# Create KV namespace
wrangler kv:namespace create MY_KV
# List all namespaces
wrangler kv:namespace list
# List keys in namespace
wrangler kv:key list --namespace-id=<id>
# Get key value
wrangler kv:key get <key> --namespace-id=<id>
# Set key value
wrangler kv:key put <key> "<value>" --namespace-id=<id>
# Delete key
wrangler kv:key delete <key> --namespace-id=<id>
Secrets Management (CLI)
# Set a secret
wrangler secret put SECRET_NAME
# List all secrets
wrangler secret list
# Delete a secret
wrangler secret delete SECRET_NAME
📁 Project Structure
Each worker follows this structure:
worker-name/
├── index.js # Main worker code
├── wrangler.toml # Cloudflare configuration
├── package.json # Dependencies and scripts
├── .env.example # Environment variables template
├── .gitignore # Git ignored files
└── README.md # Specific documentation
🔐 Secrets Management
Secrets are stored securely in Cloudflare via CLI:
# Add a secret (prompts for value)
wrangler secret put SECRET_NAME
# List configured secrets (doesn't show values)
wrangler secret list
# Delete a secret
wrangler secret delete SECRET_NAME
⚠️ IMPORTANT: Never commit secrets to code or .env files. Always use wrangler secret put for production.
💰 Costs
Cloudflare Workers free tier includes:
- 100,000 requests/day
- 10ms CPU time/request
- Unlimited cron triggers
- KV: 100k reads/day, 1k writes/day
- 1 GB storage
For most use cases: $0.00/month
📚 Resources
- Cloudflare Workers Documentation
- Wrangler CLI Reference
- Workers Examples
- Cloudflare KV Storage
- Cron Triggers Guide
🤝 Contributing
To add a new worker:
- Create a directory:
cloudflare-workers/my-worker/ - Follow the standard structure (see above)
- Document clearly its purpose in README.md
- Add an entry in this main README
- Use CLI for all operations
🎯 CLI-First Philosophy
This project emphasizes CLI usage:
- ✅ No need to access Cloudflare Dashboard
- ✅ Everything scriptable and automatable
- ✅ Version control friendly (wrangler.toml)
- ✅ CI/CD ready
- ✅ Reproducible deployments
All worker management, deployment, monitoring, and debugging can be done via wrangler CLI.
Part of the claude-code-templates project