Headless CMS -- reimagined with your favorite AI workflow.

Your content, simply managed by AI.

Define your schema in code. Let your favorite AI handle the rest — you'll feel guilty about how easy Laizy does CMS.

Laizy is an AI-native headless CMS for developers. Define content models in code, sync to your database, and generate type-safe clients — all from your terminal. Non-technical teams create content through natural language, no training required.

Features

Everything you need, nothing you don't.

Schema

One file to rule your content.

Define content models in a readable, Git-trackable schema file.

schema.laizy
model BlogPost {
  title: String {
    required: true 
    maxLength: 200 
  }
  content: Markdown {
    required: true 
  }
  slug: String {
    unique: true 
  }
  author: Author
  tags: BlogTag[]
}

Workflow

AI does the work. You ship.

Create content, sync schemas, and generate typed clients from your terminal.

Terminal
$ laizy sync
 Analyzing schema changes...
 BlogPost model synced

$ laizy generate
 Generated types.ts
 Generated client.ts
 TypeScript client ready

$ laizy content create BlogPost --json '{ "title": ... }'
 Created BlogPost (ec87a7ei8a8988ab8c)

$ laizy content publish BlogPost ec87a7ei8a8988ab8c
 Published BlogPost (ec87a7ei8a8988ab8c)

Preview

See changes before they ship.

Edit in the dashboard, preview in real-time. No deploy cycles.

Editor
Title
Getting Started with Laizy
Author
JJoel Brubaker
Status
DRAFT
Tags
tutorialgetting-started
Content
Learn how to define schemas, sync your database, and generate type-safe clients...
Preview
hero-image.jpg
DRAFTtutorial

Getting Started with Laizy

JJoel · Dec 15

Learn how to define schemas, sync your database, and generate type-safe clients in minutes...

AI Content

Your team chats. Content ships.

Non-technical users create content through natural conversation.

AI
Laizy Assistant
Write a blog post about our new API features
Here's your draft:
hero-image.jpgGenerate

Introducing Our New API Features

We're excited to announce three major additions to the Laizy API: token-based auth, real-time webhooks, and...

engineeringapirelease
Schedule it for Monday at 9am
ScheduledMon, Jan 6 at 9:00 AM

Automation

Your content runs itself.

Because Laizy is fully programmatic — schema-as-code, CLI, API — it's trivially easy to build automations on top. We provide agent skill packs for Claude Code, Cursor, and Windsurf so you never leave your AI workflow.

  • Agent skill packs for Claude Code, Cursor & Windsurf
  • CLI + API — everything is automatable
  • From trigger to published in seconds, not hours
Terminal
$ laizy agent run weekly-digest

 Analyzing recent product updates...
 Found 3 updates since last digest

 Generating blog post...
 Created "Product Updates: Week of Jan 6"

 Generating hero image...
 Generated hero-image.jpg

 Publishing...
 Published BlogPost (a8c7e2f91b)
   https://acme.com/blog/product-updates-jan-6

📊 Weekly digest complete
   Posts created: 1
   Status: published
   Duration: 12s

Ship your first content model in under five minutes.

One command to install. One file to define your schema. Instant type-safe client generation.

$pnpm create laizy@latest