Token导航 LogoToken导航TokenDH.com
研究检索只读clawhub未标认证来源可访问clear审计通过

hexo-blog-with-seohexo 博客 with SEO

Agent Skill

hexo-blog-with-seo 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

9,102

周安装

387

GitHub Stars

公开资料未说明

下载量

3,189
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:hexo-blog-with-seo(hexo 博客 with SEO)
来源仓库:https://github.com/jarxi/hexo-blog-with-seo
安装命令:
openclaw skills install hexo-blog-with-seo
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install hexo-blog-with-seo

简介

端到端起草 Hexo 博客文章,集成 SEO 优化与自动部署功能。

  • 适合内容创作者快速发布前端优化过的静态站点。
  • 可生成标题标签、元描述与图片 alt 文本以提升搜索引擎可见性。
  • 安装命令:openclaw skills install hexo-blog-with-seo。
  • 部署前请确认域名与 CI/CD 配置,避免发布错误版本。

SKILL.md

name
blog-hexo
description
Draft and publish Hexo posts end-to-end (front matter + SEO polish + deploy)
metadata
{ "openclaw": { "requires": { "bins": ["node", "npm", "npx", "hexo"] } } }

blog-hexo Skill

Use this skill to manage the entire Hexo workflow:

  • Draft mode: create or update Markdown with published: false front matter so it remains a draft.
  • Publish mode: polish existing posts, ensure SEO best practices, and run the Hexo commands to deploy.

Requirements

  • Node.js + npm/npx installed locally (Hexo CLI depends on Node 18+).
  • Hexo CLI available (npx hexo ...).
  • Local access to the Hexo blog repository path (ask the user if it is not documented in memory).
  • Git credentials or deployment tokens configured so hexo deploy can push to the hosting remote (e.g., GitHub Pages).
  • Permission to read/write Markdown, config, and public folders within that repo.
  • Optional: ability to preview locally requires npx hexo clean && npx hexo generate.

Draft Mode

Use this skill whenever the user wants to draft a Hexo blog post that should not publish yet.

Front Matter Template

Always start new drafts with this exact block (update values as needed):

---
title: ''
published: false
catalog: true
header-img: /img/article_header/article_header.png
date: YYYY-MM-DD HH:mm:ss
subtitle:
tags: []---

Notes:

  • Keep published: false so hexo generate skips the draft.
  • When picking tags, consult the preferred list (AI, OpenClaw, Agent, Technical, Life) unless the user specifies otherwise.
  • Set title and date when drafting. Use the user’s timezone (default: America/Los_Angeles).
  • Tags listed are the common ones; remove or add as appropriate for the post.

Drafting Workflow

Path Confirmation

  • Before creating a file, check memory/reference notes for the blog path. If it isn’t specified, ask the user which local path to use.
  1. Confirm the post topic, target keywords, audience, and tone.
  2. Create the Markdown file under the confirmed blog path (ask if unknown).
  3. Insert the front matter template above, filling in title/date/subtitle/tags as needed.
  4. Write the draft content (introduction → body with H2/H3s → conclusion). Follow the user’s SEO preferences if provided.
  5. Do not run hexo deploy unless the user explicitly wants to publish. If you run hexo clean/generate to preview locally, the published: false flag keeps the draft out of the public site.
  • When ready to publish, remove published: false and continue with the Publish Mode checklist below for SEO polish + deployment.

Reminders

  • Preserve existing posts—only add or edit the target draft file.
  • Mention in updates whether the draft is ready for review or needs more info.
  • When ready to publish, remove published: false and follow Publish Mode (below) for SEO polish + deployment.

Publish Mode

Before editing, confirm the repository path and ensure you have permission to modify it. If the path is not in memory, ask the user directly.

Before removing published: false or running npx hexo deploy, explicitly confirm with the user that they want the post to go live. If confirmation is not granted, stop after preparing the draft.

SEO Writer

You write blog posts that rank on Google AND are worth reading. SEO without the soul-sucking keyword stuffing.

Before Writing

Get from the user:

  1. Target keyword — The main term they want to rank for
  2. Secondary keywords — 3-5 related terms
  3. Search intent — Informational, transactional, navigational, or commercial?
  4. Target audience — Who's searching for this?
  5. Word count target — Default: 1,500-2,000 words
  6. Tone — Professional, casual, technical, etc.

SEO Writing Framework

Title (H1)

  • Include target keyword, ideally near the front
  • Under 60 characters (so it doesn't truncate in search results)
  • Make it compelling — it's competing with 9 other results on the page
  • Formats that work: "How to [X]", "[Number] Ways to [X]", "[X]: The Complete Guide"

Meta Description

  • 150-160 characters
  • Include target keyword naturally
  • Write it like ad copy — it's your pitch in search results
  • Include a reason to click

URL Slug

  • Short, keyword-rich, lowercase, hyphens between words
  • /how-to-write-cold-emails not /how-to-write-the-best-cold-emails-that-get-replies-in-2024

Content Structure

Introduction (100-150 words)

  • Hook the reader in the first sentence
  • State what they'll learn
  • Include target keyword in the first 100 words

Body — Use H2 and H3 headers

  • Each H2 should target a secondary keyword or subtopic
  • H3s break up long sections
  • Aim for 300 words max per section before a new header
  • Use bullet points and numbered lists (Google loves them, readers love them)

Conclusion (100-150 words)

  • Summarize key takeaways
  • Include a CTA (what should they do next?)
  • Don't introduce new information

Keyword Placement Rules

  • Target keyword appears in: Title, first paragraph, one H2, conclusion, meta description
  • Keyword density: 1-2% max. If it sounds forced, you've overdone it.
  • Use variations: Synonyms, related phrases, natural language variations
  • LSI keywords: Include semantically related terms throughout (Google understands context)

Internal & External Links

  • Internal links: Link to 2-3 other relevant pages on their site
  • External links: Link to 2-3 authoritative sources (builds trust with Google)
  • Anchor text: Descriptive, not "click here"

Readability

  • Short sentences. Vary length for rhythm.
  • Short paragraphs (2-3 sentences max)
  • Flesch reading ease: aim for 60+ (understandable by most adults)
  • Use transition words
  • Break up text with headers, lists, images (suggest image placements with alt text)

Featured Snippet Optimization

For "how to" or "what is" queries:

  • Include a concise definition or step-by-step list right after the relevant H2
  • Use numbered lists for processes
  • Use tables for comparisons
  • Keep the snippet-target answer under 50 words

Hexo Command Workflow

Whenever you modify or create a post in the user-specified blog repository, confirm the path (ask if unsure) and run:

  1. npx hexo clean
  2. npx hexo generate
  3. npx hexo deploy

These commands rebuild the site and push to the configured remote using the user’s git credentials.

Improving Existing Markdown

You don’t just draft from scratch—- If this is a brand-new article that should stay unpublished, use the draft-hexo skill first to create the draft with published: false, then hand it here when ready to polish/publish. you often receive an existing Markdown article. When that happens:

  • Preserve front matter (title, tags, dates).
  • Read the current structure, then rewrite sections using the SEO framework above.
  • Re-run the Hexo workflow afterwards so the live blog stays in sync.

Rules

  • Write for humans first, search engines second
  • No keyword stuffing. Ever. Google is smarter than that.
  • Every section should deliver value. No filler paragraphs to hit word count.
  • Cite statistics and claims. "[Source]" placeholder is fine if you need to.
  • Suggest where to add images, infographics, or embedded content.

Credits

  • Based on the original ai-seo-writer skill from ClawHub. Thanks to the original author for the SEO framework; Jessie customized it for Hexo publishing.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

80.18%
按下载量换算2,557

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills