Skip to content

Commit 973d8d7

Browse files
khaliqgantclaude
andcommitted
Address PR review feedback: spelling, links
- Fix British "cataloguing" → American "cataloging" - Link Keep, Tasks, Google Home in Remy connector list - Link Orbit and Perplexity in chatgpt-pulse.mdx Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent d413fb3 commit 973d8d7

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

content/posts/chatgpt-pulse.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ That version of Pulse would actually look like the proactive assistant OpenAI de
8585

8686
## The market signal
8787

88-
The most interesting thing about Pulse might be the competitive landscape around it. Anthropic is reportedly building a proactive assistant called Orbit for Claude. Google is testing [Remy](https://www.absolutegeeks.com/article/tech-news/google-tests-remy-a-proactive-gemini-powered-ai-agent-for-daily-tasks/), a Gemini-powered agent designed to act autonomously in the background, managing errands, sending documents, and coordinating across connected apps without constant user input. Perplexity is developing its own version. [Notion took a different path entirely](/posts/notion-ships-the-primitives/), shipping composable building blocks instead of a finished product. Everyone is converging on the same insight: reactive AI (ask a question, get an answer) is leaving value on the table.
88+
The most interesting thing about Pulse might be the competitive landscape around it. Anthropic is reportedly building a proactive assistant called [Orbit](https://www.testingcatalog.com/anthropic-is-working-on-orbit-its-upcoming-proactive-assistant/) for Claude. Google is testing [Remy](https://www.absolutegeeks.com/article/tech-news/google-tests-remy-a-proactive-gemini-powered-ai-agent-for-daily-tasks/), a Gemini-powered agent designed to act autonomously in the background, managing errands, sending documents, and coordinating across connected apps without constant user input. [Perplexity](https://www.perplexity.ai) is developing its own version. [Notion took a different path entirely](/posts/notion-ships-the-primitives/), shipping composable building blocks instead of a finished product. Everyone is converging on the same insight: reactive AI (ask a question, get an answer) is leaving value on the table.
8989

9090
That's exciting and it validates what we've been building. But if everyone just ships the clock and calls it done, I'm not sure any of these will feel like more than a tab in an app.
9191

content/posts/google-remy-background-agent.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ The marketing framing is whatever. What got me excited is that the reported arch
1515

1616
## The ecosystem advantage
1717

18-
The reported list of connected apps is long: [Gmail](https://mail.google.com), [Google Calendar](https://calendar.google.com), [Docs](https://docs.google.com), [Drive](https://drive.google.com), Keep, Tasks, [GitHub](https://github.com), [WhatsApp](https://www.whatsapp.com), [Spotify](https://spotify.com), [Google Photos](https://photos.google.com), and Google Home. The data sources go further: chats, personal context, location, something called "Personal Intelligence," and "Agent files."
18+
The reported list of connected apps is long: [Gmail](https://mail.google.com), [Google Calendar](https://calendar.google.com), [Docs](https://docs.google.com), [Drive](https://drive.google.com), [Keep](https://keep.google.com), [Tasks](https://support.google.com/tasks), [GitHub](https://github.com), [WhatsApp](https://www.whatsapp.com), [Spotify](https://spotify.com), [Google Photos](https://photos.google.com), and [Google Home](https://home.google.com). The data sources go further: chats, personal context, location, something called "Personal Intelligence," and "Agent files."
1919

20-
I've spent a ton of time cataloguing what it takes to wire up each provider. We wrote about it in [the webhook tax](/posts/the-webhook-tax/): signature verification, queue infrastructure, payload normalization, deduplication storage. Eight weeks per provider, conservatively. Four providers eats most of a quarter.
20+
I've spent a ton of time cataloging what it takes to wire up each provider. We wrote about it in [the webhook tax](/posts/the-webhook-tax/): signature verification, queue infrastructure, payload normalization, deduplication storage. Eight weeks per provider, conservatively. Four providers eats most of a quarter.
2121

2222
Google doesn't have that problem for its own services. Gmail, Calendar, Drive, and Photos all share authentication, share infrastructure, and can emit change events through internal channels that never touch a public webhook endpoint. When Remy watches your inbox, it doesn't poll an API on a timer. It listens through the same infrastructure that powers Gmail notifications. The [clock and the listener](/posts/three-primitives/) come nearly for free when you own the platform. That's a huge advantage and honestly I'm a little jealous.
2323

public/llms-full.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,9 @@ The marketing framing is whatever. What got me excited is that the reported arch
7575

7676
## The ecosystem advantage
7777

78-
The reported list of connected apps is long: [Gmail](https://mail.google.com), [Google Calendar](https://calendar.google.com), [Docs](https://docs.google.com), [Drive](https://drive.google.com), Keep, Tasks, [GitHub](https://github.com), [WhatsApp](https://www.whatsapp.com), [Spotify](https://spotify.com), [Google Photos](https://photos.google.com), and Google Home. The data sources go further: chats, personal context, location, something called "Personal Intelligence," and "Agent files."
78+
The reported list of connected apps is long: [Gmail](https://mail.google.com), [Google Calendar](https://calendar.google.com), [Docs](https://docs.google.com), [Drive](https://drive.google.com), [Keep](https://keep.google.com), [Tasks](https://support.google.com/tasks), [GitHub](https://github.com), [WhatsApp](https://www.whatsapp.com), [Spotify](https://spotify.com), [Google Photos](https://photos.google.com), and [Google Home](https://home.google.com). The data sources go further: chats, personal context, location, something called "Personal Intelligence," and "Agent files."
7979

80-
I've spent a ton of time cataloguing what it takes to wire up each provider. We wrote about it in [the webhook tax](/posts/the-webhook-tax/): signature verification, queue infrastructure, payload normalization, deduplication storage. Eight weeks per provider, conservatively. Four providers eats most of a quarter.
80+
I've spent a ton of time cataloging what it takes to wire up each provider. We wrote about it in [the webhook tax](/posts/the-webhook-tax/): signature verification, queue infrastructure, payload normalization, deduplication storage. Eight weeks per provider, conservatively. Four providers eats most of a quarter.
8181

8282
Google doesn't have that problem for its own services. Gmail, Calendar, Drive, and Photos all share authentication, share infrastructure, and can emit change events through internal channels that never touch a public webhook endpoint. When Remy watches your inbox, it doesn't poll an API on a timer. It listens through the same infrastructure that powers Gmail notifications. The [clock and the listener](/posts/three-primitives/) come nearly for free when you own the platform. That's a huge advantage and honestly I'm a little jealous.
8383

@@ -1205,7 +1205,7 @@ That version of Pulse would actually look like the proactive assistant OpenAI de
12051205

12061206
## The market signal
12071207

1208-
The most interesting thing about Pulse might be the competitive landscape around it. Anthropic is reportedly building a proactive assistant called Orbit for Claude. Google is testing [Remy](https://www.absolutegeeks.com/article/tech-news/google-tests-remy-a-proactive-gemini-powered-ai-agent-for-daily-tasks/), a Gemini-powered agent designed to act autonomously in the background, managing errands, sending documents, and coordinating across connected apps without constant user input. Perplexity is developing its own version. [Notion took a different path entirely](/posts/notion-ships-the-primitives/), shipping composable building blocks instead of a finished product. Everyone is converging on the same insight: reactive AI (ask a question, get an answer) is leaving value on the table.
1208+
The most interesting thing about Pulse might be the competitive landscape around it. Anthropic is reportedly building a proactive assistant called [Orbit](https://www.testingcatalog.com/anthropic-is-working-on-orbit-its-upcoming-proactive-assistant/) for Claude. Google is testing [Remy](https://www.absolutegeeks.com/article/tech-news/google-tests-remy-a-proactive-gemini-powered-ai-agent-for-daily-tasks/), a Gemini-powered agent designed to act autonomously in the background, managing errands, sending documents, and coordinating across connected apps without constant user input. [Perplexity](https://www.perplexity.ai) is developing its own version. [Notion took a different path entirely](/posts/notion-ships-the-primitives/), shipping composable building blocks instead of a finished product. Everyone is converging on the same insight: reactive AI (ask a question, get an answer) is leaving value on the table.
12091209

12101210
That's exciting and it validates what we've been building. But if everyone just ships the clock and calls it done, I'm not sure any of these will feel like more than a tab in an app.
12111211

0 commit comments

Comments
 (0)