
Adding and Managing Content
Learn how to create, organize, and manage MDX content files in your directory.
Adding content to your directory is as simple as creating an MDX file in the right folder. This guide covers everything you need to know.
Creating a New Post
- Choose the content type (e.g.,
articlesorguides) - Create a new
.mdxfile incontent/[type]/ - Add frontmatter at the top of the file
- Write your content in Markdown below the frontmatter
Example
Create content/articles/my-first-post.mdx:
---
title: 'My First Post'
summary: 'A brief introduction to my new directory site.'
date: '2024-02-01'
author: 'Your Name'
image: '/my-image.png'
tags: ['introduction']
topic: 'General'
---
Write your content here using standard Markdown syntax.
## You Can Use Headings
And **bold text**, *italics*, [links](https://example.com),
code blocks, lists, and everything else Markdown supports.
File Naming
The filename becomes the URL slug. my-first-post.mdx becomes /articles/my-first-post. Use lowercase, hyphen-separated names.
Images
Place images in the public/ directory and reference them with an absolute path:
image: '/my-image.png'
The image appears on content cards and at the top of detail pages.
Frontmatter Reference
| Field | Required | Description |
|-------|----------|-------------|
| title | Yes | Display title |
| summary | No | Short description for cards and SEO |
| date | No | Publication date (YYYY-MM-DD) |
| author | No | Author name |
| image | No | Path to cover image in public/ |
| tags | No | Array of tag strings |
| topic | No | Category label |
Deleting Content
Remove the MDX file and the page disappears. No configuration changes needed.
Ordering
Content is sorted by date (newest first) by default. To change the sort order, edit the defaultSort setting in src/config/content.config.ts.
Tagged with
More Guides
View allAgentic vs AI Trading: What Actually Executes?
Every "AI trading" tool is not agentic. Here is the clean line between signal generators and autonomous executors, with examples from the directory.
How to Vet an Agentic Trading Tool
A practical checklist for evaluating AI trading agents: custody, guardrails, execution rails, transparency, and costs — before you connect your brokerage.
What Is Agentic Trading? The 2026 Explainer
Agentic trading is AI that can actually place and manage orders on your brokerage account. Here is what the term means, how it works, and why 2026 was the year it went mainstream.