Loading...
Loading...
Create Astro/Starlight MDX content pages. Use when the user says "write a new article", "add a blog post", "create content in Tech/Life category", or "add an MDX page".
npx skill4agent add nozomi-koborinai/koborin-ai astro-contentapp/src/content/docs/
├── about-me/ # About Me section
│ └── overview.mdx
├── tech/ # Tech articles
│ └── *.mdx
└── life/ # Life articles
└── *.mdx| Category | Purpose |
|---|---|
| tech | Technical articles (Cloud, AI, DevOps, Architecture, etc.) |
| life | Lifestyle, hobbies, journals, etc. |
tech/genkit-intro/tech/genkit-intro/app/src/content/docs/{category}/{slug}.mdx---
title: <title>
description: <description>
draft: true # Only if draft
------
title: <title>
description: <description>
hero:
tagline: <subtitle>
image:
alt: <image description>
file: ../../../assets/<image-file>
---app/src/sidebar.ts{
label: "Tech",
items: [
{ label: "<Article Title>", slug: "tech/<slug>" },
],
},app/src/assets/import myImage from '../../../assets/my-image.png';
<img src={myImage.src} alt="Description" style="..." />###typescriptbash---cd app && npm run build && npm run lint && npm run typecheck