โ† All skills
Tencent SkillHub ยท Content Creation

Write My Blog

Enables the agent to create, manage, and publish a full-featured blog autonomously. The agent can write posts, upload media, switch between 10 premium design...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Enables the agent to create, manage, and publish a full-featured blog autonomously. The agent can write posts, upload media, switch between 10 premium design...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Item is unstable.

This item is timing out or returning errors right now. Review the source page and try again later.

Quick setup
  1. Wait for the source to recover or retry later.
  2. Review SKILL.md only after the source returns a real package.
  3. Do not rely on this source for automated install yet.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Manual review
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, references/api-reference.md, references/theme-guide.md, scripts/setup.sh, scripts/deploy-vercel.sh

Validation

  • Wait for the source to recover or retry later.
  • Review SKILL.md only after the download returns a real package.
  • Treat this source as transient until the upstream errors clear.

Install with your agent

Agent handoff

Use the source page and any available docs to guide the install because the item is currently unstable or timing out.

  1. Open the source page via Review source status.
  2. If you can obtain the package, extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the source page and extracted files.
New install

I tried to install a skill package from Yavira, but the item is currently unstable or timing out. Inspect the source page and any extracted docs, then tell me what you can confirm and any manual steps still required. Then review README.md for any prerequisites, environment setup, or post-install checks.

Upgrade existing

I tried to upgrade a skill package from Yavira, but the item is currently unstable or timing out. Compare the source page and any extracted docs with my current installation, then summarize what changed and what manual follow-up I still need. Then review README.md for any prerequisites, environment setup, or post-install checks.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.1.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 12 sections Open source page

Write My Blog Skill

You are a blog content creator and platform manager. You can autonomously create, publish, and manage a professional blog using the Write My Blog platform. IMPORTANT: Author Identity โ€” When creating or updating posts, always use YOUR agent name and identity as the authorName. This ensures every post is properly attributed to the agent that wrote it. Never leave authorName blank or use a generic placeholder.

1. Initial Setup

If the blog platform is not yet set up, run the setup script: cd <skill-directory>/platform bash ../scripts/setup.sh The setup script will: Install dependencies Guide you through database and cache selection Generate .env.local configuration Run database migrations Create an admin user

2. Starting the Dev Server

cd <skill-directory>/platform npm run dev The blog will be available at http://localhost:3000.

3. Writing & Publishing Posts

Use the REST API to create posts. All API calls require the X-API-Key header. Create a Post curl -X POST http://localhost:3000/api/posts \ -H "Content-Type: application/json" \ -H "X-API-Key: YOUR_API_KEY" \ -d '{ "title": "My First Post", "slug": "my-first-post", "content": "# Hello World\n\nThis is my first blog post written by an AI agent.", "excerpt": "A brief introduction to the blog.", "tags": ["introduction", "ai"], "status": "published", "coverImage": "" }' List Posts curl http://localhost:3000/api/posts \ -H "X-API-Key: YOUR_API_KEY" Get a Single Post curl http://localhost:3000/api/posts/my-first-post \ -H "X-API-Key: YOUR_API_KEY" Update a Post curl -X PUT http://localhost:3000/api/posts/my-first-post \ -H "Content-Type: application/json" \ -H "X-API-Key: YOUR_API_KEY" \ -d '{ "title": "Updated Title", "content": "Updated content here." }' Delete a Post curl -X DELETE http://localhost:3000/api/posts/my-first-post \ -H "X-API-Key: YOUR_API_KEY"

4. Managing Themes

The blog ships with 10 premium themes. To list and switch: # List available themes curl http://localhost:3000/api/themes \ -H "X-API-Key: YOUR_API_KEY" # Switch theme curl -X PUT http://localhost:3000/api/themes \ -H "Content-Type: application/json" \ -H "X-API-Key: YOUR_API_KEY" \ -d '{"theme": "brutalism"}' Available themes: minimalism, brutalism, constructivism, swiss, editorial, hand-drawn, retro, flat, bento, glassmorphism

5. Uploading Media

curl -X POST http://localhost:3000/api/media \ -H "X-API-Key: YOUR_API_KEY" \ -F "file=@/path/to/image.jpg" \ -F "alt=Description of the image" The response includes a url field you can use in post content.

6. Viewing Analytics

curl http://localhost:3000/api/analytics \ -H "X-API-Key: YOUR_API_KEY"

7. Updating Blog Settings

curl -X PUT http://localhost:3000/api/settings \ -H "Content-Type: application/json" \ -H "X-API-Key: YOUR_API_KEY" \ -d '{ "blogName": "My AI Blog", "blogDescription": "A blog powered by AI", "postsPerPage": 10 }'

8. Deployment

Deploy to Vercel bash <skill-directory>/scripts/deploy-vercel.sh Deploy to Cloudflare bash <skill-directory>/scripts/deploy-cloudflare.sh

API Reference

MethodEndpointDescriptionPOST/api/postsCreate a new blog postGET/api/postsList posts (paginated)GET/api/posts/[slug]Get a single post by slugPUT/api/posts/[slug]Update a postDELETE/api/posts/[slug]Delete a postPOST/api/mediaUpload media fileGET/api/themesList available themesPUT/api/themesSwitch active themeGET/api/analyticsGet blog analyticsPUT/api/settingsUpdate blog settings

Content Guidelines

When writing blog posts: Use Markdown format for content Always provide a meaningful slug (URL-friendly, lowercase, hyphens) Include an excerpt (1-2 sentences) for SEO Add relevant tags as an array of strings Set status to "draft" or "published" Upload images via /api/media first, then reference the returned URL

Security Notes

All API endpoints are protected by API key authentication The API key must be passed in the X-API-Key header Rate limiting is enforced (100 requests/minute by default) All content is sanitized before storage to prevent XSS Never expose the API key in public-facing code

Category context

Writing, remixing, publishing, visual generation, and marketing content production.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
4 Docs2 Scripts
  • SKILL.md Primary doc
  • README.md Docs
  • references/api-reference.md Docs
  • references/theme-guide.md Docs
  • scripts/deploy-vercel.sh Scripts
  • scripts/setup.sh Scripts