惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

宝玉的分享
宝玉的分享
小众软件
小众软件
J
Java Code Geeks
I
InfoQ
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
腾讯CDC
L
LangChain Blog
博客园 - 司徒正美
量子位
Y
Y Combinator Blog
C
Check Point Blog
T
Tailwind CSS Blog
D
DataBreaches.Net
Blog — PlanetScale
Blog — PlanetScale
N
Netflix TechBlog - Medium
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
F
Fortinet All Blogs
云风的 BLOG
云风的 BLOG
A
About on SuperTechFans
B
Blog RSS Feed
酷 壳 – CoolShell
酷 壳 – CoolShell
大猫的无限游戏
大猫的无限游戏
V
V2EX
阮一峰的网络日志
阮一峰的网络日志

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
We built MDCMS, a Markdown-first CMS for teams using AI a...
Jakub Jabłoński · 2026-05-25 · via DEV Community

Working with Markdown files for content is super convenient.

As a developer, it is hard not to like it. Content is just files. You can search it,
diff it, review it in PRs, move it around, and now also let LLMs bulk-manage it.
Need to add metadata to 200 posts or migrate content from one structure to another?
Files are very easy to reason about.

But this does not scale that well for editors. Most marketing and content teams do not
want to open a repo, understand folder structure, run commands, and wait for deployments
just to change a page. They need drafts, preview, permissions, version history,
publishing flows, rollback, localization, and all the other CMS things that are still
very much needed.

So the idea behind MDCMS was pretty simple: why not both?

MDCMS dashboard interface

What MDCMS is

MDCMS is an open-source CMS that is database-backed and Markdown-first. The database
stays the source of truth, so you still get the workflow and safety of a real CMS.
But Markdown/MDX stays the working format, so developers and AI agents can still work
with raw files when that is the better tool for the job.

Brownfield adoption

The part that matters a lot for brownfield projects is adoption. A lot of teams already
have content sitting in their repository: blog posts, docs, landing pages, changelogs,
MDX pages, marketing content. The problem is not starting from zero. The problem is
turning what already exists into something editors can safely manage.

With MDCMS, the goal is that you can run:

mdcms init

And the CLI walks through the existing repository. It scans for .md and .mdx files,
groups content directories, detects locale patterns, parses frontmatter, infers content
types, generates mdcms.config.ts, syncs the schema, and pushes the discovered content
into the CMS as drafts.

That is the adoption path I care about most:

  • not rewriting your content model from scratch;
  • not migrating everything manually page by page;
  • taking the Markdown/MDX content you already have, putting a real CMS workflow around it, and keeping the file-based workflow available when it is useful.

Day-to-day workflow

After that, the workflow looks roughly like this:

  1. Developers define or refine content types in code.
  2. Editors work in Studio.
  3. Content can be pulled locally as Markdown/MDX.
  4. Agents can update, validate, and restructure content in bulk.
  5. Changes go back through the CMS layer instead of bypassing it.

For example:

mdcms pull
# update content, metadata, links, translations, SEO fields
mdcms push --validate

The AI part

The interesting part is not "AI writes blog posts." The interesting part is giving AI
agents a safe way to work with content at scale, while still keeping validation,
permissions, history, and rollback.

For us, AI-native CMS means AI can work across multiple layers:

Layer What AI can help with
Content Markdown/MDX, metadata, links, translations, SEO fields
Configuration schemas, environments, locales, project settings
Codebase adapters, components, validations, missing workflows
CMS actions eventually controlled actions like users, roles, and permissions

That is the part raw files alone do not solve. And it is also the part many CMS
dashboards are not great at, because the content is often trapped behind UI flows and
proprietary APIs.

Why we built it this way

MDCMS is our attempt to keep the useful parts of both models.

Files when files are better.

CMS when teams need a CMS.

It is open-source and still early, so contributions are very welcome. If this problem
sounds familiar, check the repo, try it on a small Markdown/MDX project, open an issue,
or pick something from the roadmap.

Website: https://www.mdcms.ai/

GitHub: https://github.com/mdcms-ai/mdcms