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

p-seoP SEO 搜索

Agent Skill

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

总安装

7,175

周安装

296

GitHub Stars

公开资料未说明

下载量

2,344
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install p-seo

简介

构建程序化 SEO 2.0 系统,生成符合 JSON 模式的利基内容。

  • 使用 React 渲染器输出可索引的高质量页面结构。
  • 适用于大规模内容农场或垂直领域站点搭建。p-seo 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 需定义严格分类法与关键词库以确保 SEO 效果。
  • 生成内容应避免重复堆砌,注重语义自然度。

SKILL.md

name
pseo-generator
description
Build Programmatic SEO 2.0 systems at scale — AI-generated content using strict JSON schemas, niche taxonomy, and React renderers. Use when: (1) creating hundreds or thousands of programmatic pages, (2) building a niche taxonomy for pSEO content, (3) designing JSON schemas for AI-generated content types, (4) separating content generation from UI presentation, (5) generating resource pages, comparison pages, free tools, or checklist pages at scale. NOT for: traditional one-off page writing, keyword research only, or thin AI content that ignores niche context.

Programmatic SEO 2.0 — Agent Skill Reference

The core principle: never ask AI to write freeform content. Ask it to fill a strict JSON schema.

Content = JSON data. Design = React components. These two layers never mix.

System Architecture

Niche Taxonomy (309 niches) → AI fills JSON schema → Validated JSON files → React renderers → Published pages

Why schemas beat freeform:

  • Consistent structure across all pages
  • Predictable output quality
  • Pages are validatable and type-safe
  • Redesign UI without regenerating content
  • Scale to 10,000+ pages without quality degradation

Step 1: Build the Niche Taxonomy

This is the most important investment. Rich niche context is what separates useful pSEO from thin name-swapped filler.

For each niche, define:

{
  "slug": "travel",
  "name": "Travel",
  "context": {
    "audience": "Armchair travelers, digital nomads, family vacation planners",
    "pain_points": "Seasonal traffic swings, high competition for destination keywords",
    "monetization": "Affiliate (booking, gear), display ads, sponsored trips",
    "content_that_works": "Itineraries, cost breakdowns, off-the-beaten-path guides",
    "subtopics": ["budget travel", "luxury travel", "adventure travel", "solo travel"]
  }
}

Start with 20-50 niches, expand to 300+ for scale. This context gets injected into every generation prompt — it's what makes a "travel SEO checklist" different from a "health SEO checklist."

See references/niche-taxonomy.md for the full niche structure and 20 starter niches.

Step 2: Design JSON Schemas per Content Type

Each content type gets its own schema. Constraints are intentional — they force consistent output.

Example: Resource Article Schema

interface ResourceArticle {
  meta: {
    content_type: string;
    niche: string;
  };
  seo: {
    title: string;        // templated, NOT AI-generated
    description: string;
    keywords: string[];
  };
  content: {
    intro: string;
    sections: {
      heading: string;
      items: {
        title: string;
        description: string;
        difficulty?: 'beginner' | 'intermediate' | 'advanced';
        potential?: 'high' | 'medium' | 'standard';
      }[];  // exactly 15-20 per section
    }[];
    pro_tips: string[];  // exactly 5
  };
}

Hard constraints (exact counts, required fields) prevent 8-item pages next to 40-item pages. See references/schema-library.md for 6 ready-to-use schemas.

Step 3: The 6 Content Categories

CategoryShareNotes
Resource pages~58%Idea lists, checklists, calendars, guides, templates — 34 content types × N niches
Comparison pages~1%Smallest category — most obvious, least differentiated
Free tools~15%Actual working tools with niche-specific examples
Checklist pages~10%Interactive, niche-aware
Guide pages~8%Long-form, structured
Template pages~8%Downloadable/fillable

Resource pages are the highest-volume opportunity. Start there.

Step 4: Generation at Scale

Use Gemini Flash (cost-to-quality ratio beats GPT-4 for structured JSON at volume).

Why Gemini Flash:

  • Native structured JSON output (no markdown wrapping to parse)
  • Cheap enough for 10,000+ pages
  • Fast enough for batch generation

Generation prompt pattern:

Given this niche context: {niche_json}
Fill this schema: {schema}
Content type: {content_type}
Title template: {title}

Return ONLY valid JSON matching the schema. No prose, no markdown.

Validation: After generation, validate every file against the TypeScript schema. Reject and retry any that fail. At 13,000 pages, ~2-5% failure rate is normal.

Speed: 13,000+ pages in under 3 hours with parallel workers (10-20 concurrent API calls).

Step 5: React Renderers

Each content type gets its own specialized renderer. The renderer consumes the JSON and handles all presentation.

/renderers/
  ResourceArticleRenderer.tsx   — with filtering by category/difficulty
  ChecklistRenderer.tsx          — interactive checkboxes
  ComparisonTableRenderer.tsx    — structured tables
  FreeToolRenderer.tsx           — working tool UI

Key rule: Renderers never call AI. They only consume pre-generated JSON. This means you can:

  • Redesign any page without regenerating content
  • A/B test layouts without touching data
  • Add new niches without touching UI

Key Metrics (Jake Ward experiment, 60 days)

  • 13,000+ pages live
  • Weekly organic clicks: 971 → 5,500 (+466%)
  • ~50% of pages not yet indexed (curve still going up)
  • Generation time: < 3 hours for all 13,000 pages

Quick Start Checklist

  • [ ] Define 20+ niches with full context (audience, pain points, monetization, subtopics)
  • [ ] Choose 2-3 content types to start (resource pages recommended)
  • [ ] Write strict TypeScript schemas with hard constraints
  • [ ] Build generation script with niche injection and JSON validation
  • [ ] Build React renderers per content type
  • [ ] Generate first batch (start with 100 pages to validate quality)
  • [ ] Review output — check niche specificity, not just structure
  • [ ] Scale up generation
  • [ ] Submit sitemap, monitor indexation rate

References

  • references/niche-taxonomy.md — Niche structure + 20 starter niches
  • references/schema-library.md — 6 ready-to-use content type schemas

Tolstoy-Specific Configuration

When generating pSEO content for gotolstoy.com, always load these files before generating any content:

  • Brand voice: ~/.openclaw/workspace/tolstoy-context/brand-voice.md
  • Competitor analysis: ~/.openclaw/workspace/tolstoy-context/competitor-analysis.md
  • Features: ~/.openclaw/workspace/tolstoy-context/features.md
  • Style guide: ~/.openclaw/workspace/tolstoy-context/style-guide.md
  • Writing examples: ~/.openclaw/workspace/tolstoy-context/writing-examples.md
  • Target keywords: ~/.openclaw/workspace/tolstoy-context/target-keywords.md
  • Internal links map: ~/.openclaw/workspace/tolstoy-context/internal-links-map.md
  • Schemas: ~/.openclaw/workspace/tolstoy-pseo/schemas/
  • Scale plan: ~/.openclaw/workspace/tolstoy-pseo/SCALE-PLAN.md

Tolstoy Voice Rules (non-negotiable)

  1. Positioning: Always use "AI Agent for Ecommerce" — never "tool" or "software"
  2. Products: Name specifically: AI Studio, AI Player, AI Shopper
  3. Vocabulary: "at scale," "autonomous," "closed loop," "without manual work"
  4. Tone: Second-person ("you"), data-forward, peer-to-peer operator voice
  5. Proof metrics: 7x PDP conversion lift, 232% AOV uplift, 11x conversion rate with AI Shopper, 2,000+ brand partners
  6. Do NOT: Name competitors directly in body copy — stay category-level
  7. Closed loop framing: AI Studio creates → AI Player distributes → AI Shopper converts → data loops back

Tolstoy Content Map (20 pages total)

TypeCountStatus
Comparison pages (Tolstoy vs X)81 done (Rep AI)
Topic/gap pages (category attack)70 done
Use case pages40 done

Highest priority gaps (Tolstoy absent from AI Overviews):

  • "Best AI agent apps for Shopify 2026"
  • "Best AI agents for Shopify Plus brands"
  • "Best AI agents for dynamic product pages on Shopify"
  • "AI agents for DTC brands"
  • "Virtual try-on for fashion ecommerce"

Webflow Publishing (when API key is available)

Tolstoy blog runs on Webflow CMS. Publishing flow:

  1. Generate content JSON against schema
  2. Render to HTML/markdown via renderer
  3. POST to Webflow CMS API: POST /v2/collections/{collection_id}/items
  4. Publish item: POST /v2/collections/{collection_id}/items/{item_id}/publish

Required fields for Webflow blog item (to be confirmed with API key):

  • name (post title)
  • slug (URL slug)
  • body (HTML content)
  • meta-title, meta-description (SEO fields)
  • published (boolean)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

82.17%
按下载量换算1,926

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills