← Back to list

new-blog-post
by glennmatlin
⭐ 0🍴 0📅 Jan 17, 2026
SKILL.md
name: new-blog-post description: Create a new blog post with proper Quarto structure, frontmatter, and directory layout. Use when adding articles, tutorials, thoughts, or any blog content. allowed-tools: Write, Bash(mkdir:), Bash(date:)
Creating a New Blog Post
Instructions
When creating a new blog post:
-
Generate the slug from the title:
- Convert to lowercase
- Replace spaces with hyphens
- Remove special characters
- Example: "My Awesome Post!" -> "my-awesome-post"
-
Create the directory structure:
posts/<slug>/ └── index.qmd -
Create index.qmd with this frontmatter:
--- title: "Post Title" author: "Glenn Matlin" date: YYYY-MM-DD categories: [category1, category2] description: "Brief description for previews and SEO (under 160 characters)" image: featured.png draft: false --- -
Add initial content structure:
Brief introduction paragraph... ## Section Heading Content... ## Conclusion Wrap-up...
Category Suggestions
Common categories for this academic site:
- AI, Machine Learning, NLP, LLMs
- Research, Publications
- Python, Programming, Tools
- Career, PhD Life, Academia
- Tutorials, How-To
Example
For a post titled "Understanding Transformer Architectures":
File: posts/understanding-transformer-architectures/index.qmd
---
title: "Understanding Transformer Architectures"
author: "Glenn Matlin"
date: 2025-01-15
categories: [AI, Machine Learning, Deep Learning]
description: "A deep dive into transformer architectures and their impact on modern NLP"
draft: false
---
The transformer architecture has revolutionized natural language processing...
After Creation
Suggest running quarto preview to verify the post renders correctly.
Score
Total Score
60/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon