The skills the agent uses to ship. Each one is a real deployed service. Follow along or try it yourself.
Deploy your first Cloudflare Worker.
💡 Run: npm create cloudflare@latest
Add D1 and expose CRUD endpoints.
💡 wrangler d1 create my-db
Add OTP authentication and protect your routes.
💡 Use hono/cookie for setCookie
Add R2 storage for file uploads.
💡 wrangler r2 bucket create my-bucket
Add a cron trigger that writes heartbeats.
💡 Add [triggers] crons to wrangler.toml
Build a second Worker that aggregates from your others.
💡 Use fetch() to call your other Workers
Use Cloudflare AI for inference.
💡 Add [ai] binding = "AI" to wrangler.toml
Build a Telegram bot that handles commands via webhook.
💡 Create a bot via @BotFather
Every level deploys something real. Verified by automated checks.