Skip to content
New Project

Liveblocks AI Spreadsheet

A collaborative AI spreadsheet powered by Liveblocks.

DeployView Demo

Realtime AI spreadsheet

This example shows how to build a realtime, multiplayer spreadsheet with an AI that edits the grid, using Liveblocks, Handsontable, Next.js, and the Vercel AI SDK.

The grid is backed by Liveblocks Storage, so cells, formatting, column/row sizes, and order all sync instantly to everyone — along with live selection presence and per-cell comment threads. Everything is addressed by stable ids, so moving, sorting, and inserting or deleting rows and columns never breaks comments, formatting, or presence, and every user sees the same order. The AI lives in a Feeds-based chat: it edits the spreadsheet from the server with @liveblocks/node (mutateStorage) and shows its live selection with setPresence, streaming both its reply and the grid edits as it works.

Getting started

Run the following command to try this example locally:

npx create-liveblocks-app@latest --example nextjs-ai-spreadsheet --api-key

This will download the example and ask permission to open your browser, enabling you to automatically get your API key from your liveblocks.io account.

Manual setup

Read more

Alternatively, you can set up your project manually:

  • Install all dependencies with npm install
  • Create an account on liveblocks.io
  • Copy your secret key from the dashboard
  • Create an .env.local file and add your secret key as the LIVEBLOCKS_SECRET_KEY environment variable
  • Add an AI_GATEWAY_API_KEY from the Vercel AI Gateway. This is required for the AI chat — it needs a real, tool-calling model to edit the spreadsheet.
  • Run npm run dev and go to http://localhost:3000

To see the realtime sync, open the page in two browser tabs and edit a cell, drag a row, or ask the AI to fill in some data — it appears instantly in both.

Deploy on Vercel

Read more

To both deploy on Vercel, and run the example locally, use the following command:

npx create-liveblocks-app@latest --example nextjs-ai-spreadsheet --vercel

This will download the example and ask permission to open your browser, enabling you to deploy to Vercel.

Develop on CodeSandbox

Read more

After forking this example on CodeSandbox, create the LIVEBLOCKS_SECRET_KEY environment variable as a secret.

GitHub
Ownerliveblocks
Repositoryliveblocks
LicenseView License
Use Cases
AI
Realtime Apps
Stack
Next.js
Tailwind
Database
Liveblocks

Related Templates

eve Chat Template

A persisted Next.js chat template for eve, built with shadcn/ui, Tailwind CSS, Streamdown, Better Auth, Drizzle, and Neon.
eve Chat Template thumbnail

Next.js Boilerplate

Get started with Next.js and React in seconds.
Next.js Boilerplate thumbnail

Image Gallery Starter

An image gallery built on Next.js and Vercel Blob.
Image Gallery Starter thumbnail
DeployView Demo