一键导入
content-blog
Generate a blog post from source materials (text, PDFs, images, transcripts). Use when user wants to create a blog post or article.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Generate a blog post from source materials (text, PDFs, images, transcripts). Use when user wants to create a blog post or article.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | content-blog |
| description | Generate a blog post from source materials (text, PDFs, images, transcripts). Use when user wants to create a blog post or article. |
Generate a blog post using the gemini-3 skill for multimodal content.
/content-blog
If source/*.mp4 exists but content/transcript.md doesn't, run /content-transcribe first.
Run from the monorepo root. The script finds the linked post in posts/ automatically based on the project directory name.
Accepts any combination from the project directory:
source/*.txt or source/*.md (text files)source/*.pdf (PDFs)source/*.png, source/*.jpg (images)content/transcript.md (video transcript)content/description.md (video description/chapters)screenshots/ (video screenshots, extracted on-demand)# Generate blog post from project, writes to posts/
uv run .claude/skills/content-blog/scripts/generate_blog.py posts/<id>
# Specify a different Gemini model
uv run .claude/skills/content-blog/scripts/generate_blog.py posts/<id> --model gemini-2.5-pro
The script:
/gemini-3 skill with the prompt and all multimodal filesposts/<slug>/blog.md with draft: trueScreenshots must be extracted separately using /content-screenshot before or after blog generation.
/content-screenshot with those timestampsSaves to posts/<slug>/blog.md (as a draft).
After the blog is generated, run two Zinsser editing passes using gemini-3 to tighten the prose.
Read writing-with-zinsser.md from the wiki directory for the full style guide, then run two passes:
POST="posts/YYYY-MM-DD-slug/blog.md"
STYLE="writing-with-zinsser.md" # from wiki --add-dir
# First pass
uv run .claude/skills/gemini-3/scripts/query.py \
"Review this blog post and apply Zinsser's writing principles. Return only the improved post, no commentary." \
--context "$STYLE" \
--context "$POST" \
--model gemini-2.5-pro > "${POST}.tmp"
mv "${POST}.tmp" "$POST"
# Second pass (catches clutter the first pass missed)
uv run .claude/skills/gemini-3/scripts/query.py \
"Review this blog post and apply Zinsser's writing principles. Return only the improved post, no commentary." \
--context "$STYLE" \
--context "$POST" \
--model gemini-2.5-pro > "${POST}.tmp"
mv "${POST}.tmp" "$POST"
agentkb users: Search for richer results:
agentkb search -s wiki "Zinsser writing style principles"
writing-with-zinsser.md in the wiki directory — Full Zinsser guide.claude/skills/content-blog/references/prompts/blog-generation.md — Blog formatting instructions/blog-schedule - Manage Post Schedule
Render carousel slides from social/carousel.md into 1080x1350 PNG images.
Push blog posts to Google Docs for review, then pull comments and suggestions back as feedback for discussion.
Generate AI images for content using Gemini or other image generation APIs. Use when user needs diagrams, illustrations, or visual content.
Initialize a new content project with the standard directory structure in projects). Use when user wants to create a new blog post and one doesn't exist for it.
Extract screenshots from video at specific timestamps. Use when you need specific frames from a video for blog posts or other content.