ワンクリックで
blog
Manage personal blog built with GoHugo
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Manage personal blog built with GoHugo
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | blog |
| description | Manage personal blog built with GoHugo |
Personal blog management for ~/code/pliutau.com.
~/code/pliutau.com~/code/pliutau.com/content/ as Markdown filesNew posts are Markdown files in content/. Hugo front matter uses TOML (+++ delimiters).
Minimal front matter example:
+++
title = "Article title"
date = "2025-09-03T11:00:00+02:00"
type = "post"
tags = ["golang"]
og_image = "/gopher.png"
+++
Ask the user the following:
Blogs I follow are registered in rss_generator/main.go as entries in the feeds slice:
var feeds = []RSSFeed{
{URL: "https://example.com/feed.xml", Name: "Example Blog"},
...
}
To add a new blog to follow, append an entry to that slice with its RSS/Atom feed URL and a short display name.
The RSS generator is run via GitHub Actions daily and writes content/reading-list.md.
It uses the theme themes/anatole the files can be updated directly there.
content/<slug>.md with TOML front mattercd ~/code/pliutau.com && hugo serverrss_generator/main.go, add to feeds