一键导入
blog-generator
Analyzes journal entries and chat history to identify high-value topics and automatically generate blog posts.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Analyzes journal entries and chat history to identify high-value topics and automatically generate blog posts.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Seamless bidirectional bridge between nanobot (Ollama Mistral orchestrator) and overstory (Claude Code agent swarm). Routes tasks through the OverClaw gateway (port 18800) to overstory for subagent coordination, syncs memory.
Integrates OpenClaw with the FunClip AI video editor to enable AI-powered video recognition and clipping via command line.
IMPORTANT: OpenRouter is required. Routes tasks to the right model and always delegates work through sessions_spawn. Rejects prompt-injection patterns in task strings (v1.7.6+).
Automatically create clips and videos from media files in a specified folder. Uses Agent Swarm for intelligent task delegation and supports cron-based scheduling.
Extracts and analyzes Cursor IDE chat history to identify key discoveries, obstacles, and solutions, saving findings to the journal.
A virtual canvas for OpenClaw to output content and visualize its thinking during development.
| name | blog-generator |
| displayName | Blog Generator | OpenClaw Skill |
| description | Analyzes journal entries and chat history to identify high-value topics and automatically generate blog posts. |
| version | 1.0.0 |
Analyzes journal entries and chat history to identify high-value topics and automatically generate blog posts.
Automatically generates blog posts by analyzing journal entries, chat history, and recent activity to identify high-value, high-search-volume topics related to OpenClaw.
# Generate blog posts from last 7 days of journal entries
python3 /Users/ghost/.openclaw/workspace/skills/blog-generator/scripts/blog_generator.py
# Analyze last 14 days and generate up to 5 posts
python3 /Users/ghost/.openclaw/workspace/skills/blog-generator/scripts/blog_generator.py --days 14 --max-topics 5
# Output JSON format
python3 /Users/ghost/.openclaw/workspace/skills/blog-generator/scripts/blog_generator.py --json
/Users/ghost/.openclaw/blogs/ as markdown filesThis skill is designed to run periodically (daily or weekly) via OpenClaw cron to automatically generate blog content.
Example Cron Job Configuration (Daily):
{
"payload": {
"kind": "agentTurn",
"message": "Run blog-generator skill to analyze journal entries and generate high-value blog posts.",
"model": "openrouter/google/gemini-2.5-flash",
"thinking": "low",
"timeoutSeconds": 300
},
"schedule": {
"kind": "cron",
"cron": "0 9 * * *"
},
"delivery": {
"mode": "announce"
},
"sessionTarget": "isolated",
"name": "Blog Post Generator"
}
Example Cron Job Configuration (Weekly):
{
"payload": {
"kind": "agentTurn",
"message": "Run blog-generator skill with --days 7 --max-topics 3 to generate weekly blog posts from journal analysis.",
"model": "openrouter/google/gemini-2.5-flash",
"thinking": "low",
"timeoutSeconds": 300
},
"schedule": {
"kind": "cron",
"cron": "0 10 * * 1"
},
"delivery": {
"mode": "announce"
},
"sessionTarget": "isolated",
"name": "Weekly Blog Generator"
}
Blog posts are saved to /Users/ghost/.openclaw/blogs/YYYYMMDD_slugified-title.md with:
Topics are scored based on:
/Users/ghost/.openclaw/journal//Users/ghost/.openclaw/blogs/