astro-content
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".
$ 安裝
git clone https://github.com/nozomi-koborinai/koborin-ai /tmp/koborin-ai && cp -r /tmp/koborin-ai/.claude/skills/astro-content ~/.claude/skills/koborin-ai// tip: Run this command in your terminal to install the skill
SKILL.md
name: astro-content description: 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".
astro-content
Create Astro/Starlight MDX content pages.
Trigger Examples
- "Write a new article"
- "Add an article to Tech category"
- "Create a blog post"
- "Add an MDX page"
Directory Structure
app/src/content/docs/
├── about-me/ # About Me section
│ └── overview.mdx
├── tech/ # Tech articles
│ └── *.mdx
└── life/ # Life articles
└── *.mdx
Execution Flow
1. Confirm Category
Ask user for category:
| Category | Purpose |
|---|---|
| tech | Technical articles (Cloud, AI, DevOps, Architecture, etc.) |
| life | Lifestyle, hobbies, journals, etc. |
2. Gather Article Information
Confirm the following:
- Title: Article title
- Description: One-sentence summary
- Slug: URL path (e.g.,
tech/genkit-intro→/tech/genkit-intro/) - Draft: Whether it's a draft (default: false)
3. Create MDX File
File path: app/src/content/docs/{category}/{slug}.mdx
Frontmatter template:
---
title: <title>
description: <description>
draft: true # Only if draft
---
With hero image:
---
title: <title>
description: <description>
hero:
tagline: <subtitle>
image:
alt: <image description>
file: ../../../assets/<image-file>
---
4. Update sidebar.ts
Add new article to app/src/sidebar.ts:
{
label: "Tech",
items: [
{ label: "<Article Title>", slug: "tech/<slug>" },
],
},
5. Assets (Optional)
If using images:
- Place image in
app/src/assets/ - Import and use in MDX:
import myImage from '../../../assets/my-image.png';
<img src={myImage.src} alt="Description" style="..." />
Content Guidelines
- Language: English or Japanese (follow user preference)
- Markdown: Use GitHub Flavored Markdown
- Headings: Start with
##(#is auto-generated from title by Starlight) - Lists: Use bullet points for readability
- Code blocks: Always specify language (
typescript,bash, etc.) - Emoji: Use sparingly (only when user explicitly requests)
Post-Creation Verification
After creation, suggest:
cd app && npm run build && npm run lint && npm run typecheck
Verify build succeeds.
Repository

nozomi-koborinai
Author
nozomi-koborinai/koborin-ai/.claude/skills/astro-content
6
Stars
0
Forks
Updated1w ago
Added1w ago