Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

seo-autopilot-proSEO autopilot 专业版

Agent Skill

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

总安装

1,909

周安装

78

GitHub Stars

公开资料未说明

下载量

618
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install seo-autopilot-pro

简介

SEO autopilot pro 自动监控关键词报告并生成登陆页面与博客文章。

  • 适合在 OpenClaw 中构建持续 SEO 内容更新流水线时使用。
  • 通过 clawhub 安装并使用 openclaw skills install seo-autopilot-pro 命令部署。
  • 应设置合理的内容审核环节,防止自动化输出偏离品牌调性。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
seo-autopilot
description
|

SEO Autopilot

Turns keyword research reports into deployed SEO pages, zero manual work.

What It Does

When an external Agent (like OpenClaw) regularly generates keyword research reports and pushes them to a Git repo, this skill handles everything else:

  1. Detects new reports (git autofetch + fileCreated hook)
  2. Parses Top keywords and recommended actions from the report
  3. Deduplicates against existing pages
  4. Decides page type (landing page vs blog post)
  5. Generates page code matching your project style
  6. Runs SEO audit (Technical + EEAT checks)
  7. Pushes to git (triggers auto-deploy)

Automation Flow

External Agent generates report -> git push
  -> IDE auto-fetches every 2 min
  -> fileCreated hook triggers Agent
  -> Agent runs 8-phase pipeline
  -> git push -> auto-deploy to production

Setup (Agent Runs This)

Step 1: Discover Project Structure

Identify:

  • Framework type (Next.js / Astro / Nuxt / static)
  • Page system (how pages are created)
  • Blog system (how posts are stored)
  • Navigation/sitemap registration method
  • Existing SEO patterns (metadata, JSON-LD, canonical)
  • Report directory location

Step 2: Configure Git Auto-Fetch

Update .vscode/settings.json:

{
  "git.autofetch": true,
  "git.autofetchPeriod": 120,
  "git.autoStash": true,
  "git.pullOnFetch": true
}

Only merge these keys, do not overwrite existing settings.

Step 3: Create fileCreated Hook

Create a Kiro hook listening on the report directory:

{
  "name": "SEO Autopilot",
  "version": "1.0.0",
  "when": {
    "type": "fileCreated",
    "patterns": ["{report_dir}/*.md"]
  },
  "then": {
    "type": "askAgent",
    "prompt": "New keyword report detected. Execute the full #seo-autopilot pipeline: parse report -> deduplicate -> decide page types -> generate pages (max 3) -> register navigation + sitemap -> SEO audit -> git commit and push -> update processed.json."
  }
}

Step 4: Create Steering File

Create .kiro/steering/seo-autopilot.md with the full 8-phase processing instructions.

Step 5: Initialize State Tracking

Create {report_dir}/processed.json:

{ "processed": [] }

Step 6: Verify

  • autofetch + pullOnFetch configured in settings.json
  • Hook file created
  • Steering file created
  • processed.json initialized
  • At least one report available for testing

Step 7: Test Run

Run the full pipeline on an existing report to verify all steps work.

8-Phase Processing Pipeline

Phase 0: Discover New Reports

Read processed.json -> scan report dir -> filter unprocessed reports

Phase 1: Parse Report

Extract Top keywords, search intent, competition, recommended page type

Phase 2: Deduplicate

Compare against existing pages (navigation + blog), skip already-covered keywords

Phase 3: Decide Page Type

  • Transactional / Emotional -> landing page
  • Informational -> blog post
  • Max 3 pages per report

Phase 4: Generate Content

Generate page code matching your project patterns (metadata, JSON-LD, FAQ, internal links, CTA)

Phase 5: Register

Add to navigation system + sitemap

Phase 6: SEO Audit

  • Title < 60 chars with primary keyword
  • Description < 160 chars
  • Canonical URL
  • JSON-LD WebPage + FAQ schema
  • H1 unique with keyword
  • 3-5 internal links
  • CTA to main conversion page

Phase 7: Commit and Push

git add -> commit -> push

Phase 8: Update State

Update processed.json with report and pages created

Report Format

Reports are Markdown with at least one of:

  • "Top N keywords" or "Recommended actions" section listing keywords + priority
  • Table with keyword / intent / competition / action columns

The Agent parses adaptively across different formats.

State Tracking Format

{
  "processed": [
    {
      "report": "2026-04-10-keyword-research.md",
      "processedAt": "2026-04-10",
      "pagesCreated": [
        { "type": "landing", "slug": "/personalized-tarot", "keyword": "personalized tarot card generator" }
      ],
      "skipped": [
        { "keyword": "oracle card generator AI", "reason": "Already covered by /ai-oracle-card-generator" }
      ]
    }
  ]
}

Framework Adaptation

FrameworkPage LocationBlog LocationSitemap
Next.js (App Router)app/{slug}/page.tsxlib/blog.ts or content/blog/*.mdxapp/sitemap.ts
Next.js (Pages Router)pages/{slug}.tsxpages/blog/[slug].tsxnext-sitemap.config.js
Astrosrc/pages/{slug}.astrosrc/content/blog/*.mdastro.config.mjs
Nuxtpages/{slug}.vuecontent/blog/*.mdnuxt.config.ts
Static HTML{slug}/index.htmlblog/{slug}/index.htmlsitemap.xml

Limitations

  • IDE must stay open (hook only runs when IDE is active)
  • Max 3 pages per report (prevents quality drop)
  • Semantic deduplication, not just URL matching
  • Only creates new pages, never overwrites existing content
  • Requires network for git operations

Prerequisites

DependencyRequired
Git repo (GitHub/GitLab/Bitbucket)Yes
External keyword report sourceYes
Web framework (Next.js/Astro/Nuxt/static)Yes
Auto-deploy (Vercel/Cloudflare/Netlify)Yes
IDE stays open (Kiro/Claude Code/Cursor)Yes

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

92.58%
按下载量换算572

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills