# Scheduled Posts This directory contains blog posts that are scheduled for future publication. ## Directory Structure ``` scheduled/ ├── 2024/ │ ├── 01/ │ ├── 02/ │ └── ... ├── 2025/ │ ├── 01/ │ ├── 02/ │ └── ... └── README.md ``` ## File Naming Convention Posts should be named with the format: `YYYY-MM-DD-slug.md` Example: `2024-03-15-understanding-ai-agents.md` ## Frontmatter Format Each scheduled post should include the following frontmatter: ```yaml --- title: "Your Post Title" description: "Brief description of the post" date: "2024-03-15" publishDate: "2024-03-15T09:00:00.000Z" author: name: "Author Name" role: "Author Role" tags: - "tag1" - "tag2" featured: false draft: false --- ``` ## Publishing Process 1. Write your post in the appropriate scheduled directory 2. Set the `publishDate` to when you want it published 3. A scheduled job will move posts from `scheduled/` to `posts/` when their publish date arrives 4. The blog will automatically pick up the new post and display it ## Notes - Posts in this directory are not visible on the live blog until moved to `posts/` - Use `draft: true` for posts that are work-in-progress - The `publishDate` field determines when the post goes live