name: devverse-content-mdx description: MDX article conventions for DevVerse. Use when adding or editing files under content/, changing article metadata, updating author or date lines, or modifying code that parses article content for feeds, related posts, reading stats, or RAG ingestion.
DevVerse MDX Content Workflow
Treat
content/*.mdxas the canonical article store. Do not model article changes aroundsupabase/articles.sql; runtime content comes from MDX files.Keep the article contract stable. Use a literal
export const metadata = { title, description, topics };, keep### Author: ..., keep> Date: YYYY-MM-DD, and keep the article body starting with a top-level#heading.Use the checked-in template when creating a new article. @assets/article-template.mdx
Read the contract notes before changing metadata conventions. @references/article-contract.md
If you change metadata shape or article template rules, update every dependent parser in the same task.
After content edits, run
python3 scripts/check_content_contract.py.If chat retrieval quality should reflect the change immediately, consider
devverse-refresh-vectors.