在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用blog
星标26
分支0
更新时间2026年3月22日 16:36
Manage personal blog built with GoHugo
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
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