Topic

Cloudflare OS

All digests tagged Cloudflare OS

How AI Agents Let GTM Teams Scale — Justin Joyce, Cloudflare thumbnail

· 19:15

How AI Agents Let GTM Teams Scale — Justin Joyce, Cloudflare

Justin Joyce details how Cloudflare utilizes a three-pillar approach powered by AI agents to solve scaling issues in traditional Go-To-Market (GTM) operations. The core problem—that manual processes and knowledge gaps limit efficiency—is addressed by building self-service capabilities, automating data analysis, and proactively pushing insights to users. This framework allows non-technical staff to query complex data using 'skill files' and enables reps to access expert-level information via an internal agentic workspace (Cloudflare OS).

Key takeaways

  1. The GTM Scaling Problem 5:20

    Traditional GTM processes suffer from the 'context gap' (switching between different customer calls) and the 'expert gap' (inconsistent execution among reps), leading to significant inefficiency. Back-office teams often rely on manual work in Excel or limited dashboards, which fail to meet all operational needs.

  2. Pillar 1: Scaling Analysis via Skill Files 10:53

    To empower non-SQL users, the team built role-specific 'skill files.' These allow business users to ask questions of data directly and quickly, eliminating bottlenecks that previously required a dedicated data engineer. This capability is used both for back-office analysis and building GTM skills.

  3. Pillar 2: Scaling Insight (Pushing the Story) 15:00

    Instead of forcing users to search dashboards, insights are proactively delivered through synthetic weekly summaries. This is achieved by transforming data dimensions (time, manager, metric) and using a multi-agent workflow: a first draft agent, a second reviewer agent for veracity checks, and a third 'tone agent' that crafts the message, ensuring risks and opportunities are weighted equally.

  4. Pillar 3: Self-Service via Cloudflare OS 17:15

    The internal tool, Cloudflare OS, is an agentic workspace running on Workers and Durable Objects. It allows GTM teams to perform complex tasks—such as building QBR decks, account plans, or forecast briefs—by interacting with curated expert skills without needing manual intervention.

Watch on YouTube Full article

Gadgets: Personal app vibe coding that is actually safe — Kenton Varda, Cloudflare thumbnail

· 18:54

Gadgets: Personal app vibe coding that is actually safe — Kenton Varda, Cloudflare

The talk argues that modern personal AI code generation capabilities fundamentally break traditional cloud infrastructure models designed for single-version applications. Kenton Varda introduces 'Gadgets,' a new application paradigm built on Cloudflare Workers. Gadgets allow users' agents to add custom features directly to an app instance (like adding strikethrough formatting or generating complex SVGs) without requiring the core developer to rewrite the entire platform, thus bypassing the limitations of centralized cloud architecture and traditional feature request pipelines.

Key takeaways

  1. Personal AI Codegen Breaks Traditional Cloud Infrastructure

    The current model requires developers to handle all user-requested features (filed in Jira) through massive, multi-year plugin rewrites. This process is slow and often fails. Personal AI agents offer an alternative where users can have their own agent write and add features directly for their specific use case, keeping the core app clean.

  2. The Limitations of Current Web/Cloud Architecture 13:59

    Traditional web apps run on a developer's server, ensuring all users see one 'blessed version.' This centralization prevents user customization. The proposed Gadget model ensures that each gadget is an isolated instance, and sharing/access control is managed by the platform, not the app itself.

  3. Gadgets Security Model 17:05

    The security architecture isolates components: The UI runs in a null origin iframe sandbox with Content Security Policy. Communication is restricted via `postMessage` to the parent frame, which establishes a Cap'n Web RPC session to server code running in a dynamic worker sandbox (durable objects). This prevents XSS bugs from leaking data outside the isolated environment.

Watch on YouTube Full article