diff --git a/README.md b/README.md index 2f25da5..5f3e242 100644 --- a/README.md +++ b/README.md @@ -115,6 +115,7 @@ Recurring research, cron jobs, and webhook delivery. | Recipe | Description | APIs | Stack | Demo | | --- | --- | --- | --- | --- | | [**Daily Insights**](typescript-recipes/parallel-daily-insights) | Cron-triggered daily research feed — runs Tasks on a schedule, persists to KV, publishes a public data feed. Includes a `SPEC.md` showing the task spec used. | `Task` `Webhooks` `Cron` | Cloudflare Workers · KV | – | +| [**Datacenter Monitor**](https://github.com/khushishelat/datacenter-map-demo) | Live map of 2,800+ U.S. datacenters — discovered by iterative Task runs (shard-by-state + `previous_interaction_id` loop-until-dry), enriched with 25 cited fields via Task Groups, and watched by 31 event monitors + 200 daily snapshots with field-level diffs. | `Task` `Task Group` `Monitor` `Webhooks` `SSE` | Next.js · Vercel | [Live](https://datacenter-map-demo.vercel.app) | ### Deep Research & Notebooks diff --git a/website/cookbook.json b/website/cookbook.json index 2202e22..52eef39 100644 --- a/website/cookbook.json +++ b/website/cookbook.json @@ -229,6 +229,18 @@ "creators": ["zaidmukaddam"], "imageUrl": null, "tags": ["agent", "search", "nextjs", "vercel"] + }, + { + "slug": "datacenter-monitor", + "popular": false, + "featured": false, + "title": "Datacenter Monitor", + "description": "Live map of 2,800+ U.S. datacenters discovered, enriched, and monitored with the Task and Monitor APIs — every field traceable to its sources.", + "repoUrl": "https://github.com/khushishelat/datacenter-map-demo", + "websiteUrl": "https://datacenter-map-demo.vercel.app", + "creators": ["khushishelat"], + "imageUrl": null, + "tags": ["task", "monitoring", "enrichment", "webhooks", "sse", "nextjs", "vercel"] } ] }