Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
12 changes: 12 additions & 0 deletions website/cookbook.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
}
]
}
Loading