Skip to content
Back to blog
Written by
Zinian
Published on
April 10, 2026
Read time
6 min read

Frontend

Small Content Models Beat Large CMS Migrations Early On

A narrow local schema often outlasts a big CMS decision until the content shape is actually stable.

Big CMS migrations tend to arrive before the content model is ready for them. That is usually the wrong moment.

What keeps working

A small TypeScript layer gives me three things immediately:

  1. Typed routes
  2. Predictable lists
  3. Easy migration later

Why local first helps

Local content files make the structure visible. That means I can ask better questions before adding a larger system:

  • What content actually exists?
  • Which fields are stable?
  • Which routes need to be canonical?
  • What stays a draft?

A good early boundary

Code
type Post = { title: string; slug: string; description: string; date: string; category: string; tags: string[]; };

The point is not to avoid a CMS forever. The point is to wait until the shape is worth preserving.

Related work

Projects and case studies connected to this note.

Projects

AI Local Blog Editor

A local editing workflow for drafting, revising, and publishing technical posts with AI assistance.

AI Systems
Technical Brand System

A maintainable content and portfolio system for case studies, services, writing, and project proof.

Product

Case studies

Turning a Static Index into a Maintainable AI-Assisted Publishing Workflow

A publishing system that keeps notes, sources, and draft output aligned without forcing a CMS.

Independent product build
Building a Refined Portfolio System for Architecture Studios

A calm, image-led portfolio structure that still stays easy to maintain.

Architecture studio

Related posts

More notes close to this topic.

Lessons from Building KizunaIndex as a Public Index

Featured
Product Building
May 1, 20267 min readUpdated May 3, 2026

A public index gets more useful when the content model is small, explicit, and easy to revise.

nextjs
data-modeling
public-index
Read article

Building a Personal AI Workbench with Local Tools and Cloud Models

Featured
AI Engineering
May 8, 20268 min readUpdated May 10, 2026

A practical setup for drafting, testing, and shipping AI work without letting the workflow get tangled.

ai-agent
automation
codex
Read article

Designing Case Studies for Technical Portfolio Sites

Featured
Product Building
May 5, 20266 min readUpdated May 7, 2026

How to structure a case study so it proves judgment, not just output.

portfolio
case-study
writing
Read article

Next

Keep browsing the archive, or turn the questions in this essay into a concrete conversation.