con un clic
blog
Manage personal blog built with GoHugo
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Manage personal blog built with GoHugo
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional 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