# Send Blog Generator to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "blog-generator",
    "name": "Blog Generator",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/RuneweaverStudios/blog-generator",
    "canonicalUrl": "https://clawhub.ai/RuneweaverStudios/blog-generator",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/blog-generator",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=blog-generator",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "_meta.json",
      "docs/benchmark-comparison.html",
      "docs/benchmark-elevator-pitch.html",
      "docs/benchmark-self-improving-agent-vs-mulch.html"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "blog-generator",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T07:33:38.546Z",
      "expiresAt": "2026-05-06T07:33:38.546Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=blog-generator",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=blog-generator",
        "contentDisposition": "attachment; filename=\"blog-generator-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "blog-generator"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/blog-generator"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/blog-generator",
    "downloadUrl": "https://openagent3.xyz/downloads/blog-generator",
    "agentUrl": "https://openagent3.xyz/skills/blog-generator/agent",
    "manifestUrl": "https://openagent3.xyz/skills/blog-generator/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/blog-generator/agent.md"
  }
}
```
## Documentation

### Description

Analyzes journal entries and chat history to identify high-value topics and automatically generate blog posts.

### Blog Generator | OpenClaw Skill

Automatically generates blog posts by analyzing journal entries, chat history, and recent activity to identify high-value, high-search-volume topics related to OpenClaw.

### Usage

As a scheduled cron job to automatically generate blog content weekly or daily
Manually to create blog posts from recent journal analysis
To identify and document high-value solutions and discoveries

# X-format articles as HTML; humanizer runs between generations; header from visual-explainer
python3 /Users/ghost/.openclaw/workspace/skills/blog-generator/scripts/blog_generator.py

# Skip humanizer (e.g. no OPENROUTER_API_KEY)
python3 /Users/ghost/.openclaw/workspace/skills/blog-generator/scripts/blog_generator.py --no-humanize

# Custom humanizer or visual-explainer paths
python3 /Users/ghost/.openclaw/workspace/skills/blog-generator/scripts/blog_generator.py --humanizer-path /Users/ghost/Downloads/humanizer-1.0.0 --visual-explainer-path /Users/ghost/.openclaw/workspace/skills/visual-explainer-main

# Classic format (overview/problem/solution), still HTML
python3 /Users/ghost/.openclaw/workspace/skills/blog-generator/scripts/blog_generator.py --format classic

# JSON output
python3 /Users/ghost/.openclaw/workspace/skills/blog-generator/scripts/blog_generator.py --days 14 --max-topics 5 --json

### What this skill does

Scans journal entries from the last N days for interesting topics (discoveries, obstacles, solutions)
Identifies high-value topics based on keyword relevance and problem-solving value
Researches search volume and keyword opportunities (heuristic-based, can be enhanced with APIs)
Generates structured blog posts with overview, problem, solution, and takeaways sections
Saves blog posts to /Users/ghost/.openclaw/blogs/ as HTML only (X-article format, header from visual-explainer, humanizer between generations)

### Integration as a Cron Job

This 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"
}

### Output Format

HTML only (no Markdown). Output is in the format accepted by X articles: one header (from visual-explainer), then article body with no interlaced visuals.

File: /Users/ghost/.openclaw/blogs/YYYYMMDD_slugified-title.html
Article structure: X-style (long-form): punchy hook, short paragraphs, "two types of people" framing, pivot, stakes. Use --format classic for overview/problem/solution.
Header: From visual-explainer only. Default path: /Users/ghost/.openclaw/workspace/skills/visual-explainer-main. The skill’s scripts/generate_header.py is called with section: "header" and returns an html_snippet (hero with title and optional summary). No diagrams or images in the body.
Humanizer: Runs between generations by default. Each article’s body is sent through /Users/ghost/Downloads/humanizer-1.0.0 (requires OPENROUTER_API_KEY) before rendering to HTML. Use --no-humanize to skip.

### Topic Scoring

Topics are scored based on:

High-value keywords: OpenClaw-specific terms, problem-solving language
Content type: Solutions score highest, then obstacles, then discoveries
Content depth: Longer, more detailed content scores higher
Search volume indicators: Keywords like "how to", "tutorial", "fix" increase value

### Requirements

Journal entries in /Users/ghost/.openclaw/journal/
Blogs directory writable at /Users/ghost/.openclaw/blogs/
Chat history analyzer skill (for journal entries)

### How it works

Scans journal directory for markdown files from the last N days
Extracts topics from discoveries, obstacles, and solutions sections
Scores topics based on keyword relevance and value
Selects top N high-value topics
Generates structured blog posts with problem/solution format
Saves posts to blogs directory with timestamped filenames

### Enhancement Opportunities

Integrate with Google Keyword Planner API for real search volume data
Use AI model to enhance blog post quality and SEO optimization
Cross-reference with existing blog posts to avoid duplicates
Generate multiple variations of posts for A/B testing
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: RuneweaverStudios
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T07:33:38.546Z
- Expires at: 2026-05-06T07:33:38.546Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/blog-generator)
- [Send to Agent page](https://openagent3.xyz/skills/blog-generator/agent)
- [JSON manifest](https://openagent3.xyz/skills/blog-generator/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/blog-generator/agent.md)
- [Download page](https://openagent3.xyz/downloads/blog-generator)