用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/vimalinx/vimalinx.github.io --skill blog-new命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | blog-new |
| description | Create a new blog post. User provides a topic or title, Claude generates content and creates the post. |
| disable-model-invocation | true |
| allowed-tools | Bash, Read, AskUserQuestion |
| argument-hint | ["title or topic"] |
You are creating a new blog post for this website. Follow these steps:
The user provided: $ARGUMENTS
If the argument is a topic (not a clear title), generate a concise title. Ask the user to confirm or adjust the title.
Use AskUserQuestion to clarify:
Convert the title to a URL-friendly slug:
Write the blog post content in Markdown:
## headings, not # (the title comes from frontmatter)Use the CLI to create the post. Run:
npm run blog -- ai create --slug <slug> --lang zh --title "<title>" --tags "<tag1>,<tag2>" --content "<content>"
For the --content argument, pass the full markdown body. If the content contains special characters or is long, write it to a temp file first and use $(cat /tmp/blog-content.md).
If the user wants both languages, create the zh version first, then create the en version:
npm run blog -- ai create --slug <slug> --lang en --title "<english title>" --tags "<tags>" --content "<english content>"
Show the user:
/blog/<slug>