What problem does it solve? Setting up scheduled tasks on Render involves platform-specific rules—UTC-only cron expressions, a 12-hour run limit, single-run guarantees, and no persistent disks—that are easy to get wrong. This Skill provides the configuration patterns, constraints, and troubleshooting guidance needed to run periodic jobs correctly. ## Core Features & Use Cases - Cron Configuration: Write valid type: cron Blueprint entries with quoted UTC schedules, build/start commands, and environment variables. - Platform Constraints: Understand the 12-hour max run length, single concurrent run guarantee, no persistent disk, and private-network outbound-only rules. - Heroku Scheduler Migration: Map Heroku Scheduler presets (10-minute, hourly, daily) to full cron expressions with a step-by-step migration guide. - Use Case: You need a nightly database cleanup job. Use this Skill to generate a Blueprint with schedule: "0 0 * * *", a Python start command, and a linked database connection string. ## Quick Start Ask the assistant to create a Render cron job Blueprint that runs a Python cleanup script every night at midnight UTC.