mit einem Klick
blog
Manage personal blog built with GoHugo
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Menü
Manage personal blog built with GoHugo
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Basierend auf der SOC-Berufsklassifikation
| 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