with one click
blog
Manage personal blog built with GoHugo
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Manage personal blog built with GoHugo
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| 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