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

pseo-discovery伪发现

Agent Skill

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

总安装

333

周安装

14

GitHub Stars

40

下载量

116
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:pseo-discovery(伪发现)
来源仓库:https://github.com/lisbeth718/pseo-skills
仓库路径:skills/pseo-discovery
安装命令:
npx skills add https://github.com/lisbeth718/pseo-skills --skill pseo-discovery
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/lisbeth718/pseo-skills --skill pseo-discovery

简介

用于根据关键词或任务场景检索相关信息并筛选候选结果。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位资料时使用。
  • 通过 GitHub 仓库安装,需确认其是否具备联网或文件访问能力。
  • 安装命令:npx skills add https://github.com/lisbeth718/pseo-skills --skill pseo-discovery。
  • 建议结合原始 README 了解检索范围与结果排序逻辑。

SKILL.md

pSEO Discovery

Analyze the codebase, business context, and market to determine what programmatic SEO pages can and should be built. This skill answers the question: "What should we generate, and do we have the data to do it?"

This skill runs BEFORE pseo-audit. The audit checks if the codebase is ready; this skill figures out what to build.

Core Principles

  1. Data-first: Only propose page types backed by structured data that exists or can be sourced
  2. Intent-matched: Every proposed page type must target a real search intent with volume
  3. Differentiated: Each page must be able to produce genuinely unique content — not just variable swaps
  4. Feasible: Proposals must be realistic given the current data, codebase, and team capacity
  5. Business-aligned: pSEO pages should serve the business's actual audience and goals

Discovery Procedure

1. Explore the Codebase for Data Assets

Search the codebase for existing structured data that could power pages:

Database/ORM models:

  • Search for schema definitions (Prisma, Drizzle, TypeORM, Mongoose, SQL migrations)
  • Identify entities with many records (products, locations, services, users, listings, articles)
  • Note which entities have rich attributes (descriptions, categories, images, metadata)

CMS content types:

  • Check for headless CMS configs (Contentful, Sanity, Strapi, etc.)
  • Identify content types and their field schemas
  • Count records per content type

API endpoints:

  • Map all API routes and their response shapes
  • Identify list endpoints that return collections of entities
  • Check for paginated endpoints (signals large datasets)

Static data files:

  • Search for JSON, CSV, YAML, MDX files in data/, content/, src/data/ directories
  • Count records and inspect field richness
  • Check for categorization or taxonomy structures

What to extract per data source:

  • Entity name and count (e.g., "2,500 products", "150 cities", "80 services")
  • Available fields (especially: name, description, category, attributes, images)
  • Relationships between entities (product → category, service → location)
  • Data freshness (how often updated, is there a lastModified field)

2. Map Business Entities to Page Types

For each data asset found, evaluate whether it can power a pSEO page type:

QuestionMust answer "yes"
Are there 50+ unique records?Minimum for pSEO to make sense
Does each record have enough data for a full page?Title, description, 3+ unique attributes
Would someone search for this?Real search intent exists
Can each page be meaningfully different?Not just variable swaps
Does this serve the business?Drives traffic the business can convert

Common pSEO page patterns by business type:

  • E-commerce: Product pages, category pages, brand pages, [product] vs [product] comparisons, best [category] for [use-case]
  • SaaS: Feature pages, integration pages, [tool] alternative, [tool] vs [competitor], use-case pages
  • Marketplace: Listing pages, location pages, [service] in [city], category + location combinations
  • Content/Media: Topic pages, tag pages, author pages, [topic] guide, glossary/definition pages
  • Local business: Service + location pages, [service] in [neighborhood], FAQ pages per service
  • Directory: Profile pages, category pages, comparison pages, top [category] in [location]

3. Identify Keyword Patterns and Search Intent

For each proposed page type, validate that search demand exists:

Keyword pattern analysis:

  • Identify the base keyword pattern (e.g., [service] in [city], best [product] for [use-case])
  • Estimate volume per pattern using keyword research tools or inferred demand
  • Check for long-tail variations that indicate intent depth
  • Verify that existing top results are not exclusively high-authority domains

Intent classification per page type:

  • Informational: User wants to learn (guides, definitions, how-tos)
  • Commercial investigation: User is comparing options (comparisons, reviews, "best X")
  • Transactional: User wants to buy/sign up (product pages, pricing, service pages)
  • Navigational: User wants a specific entity (brand pages, location pages)

Each pSEO page type should clearly map to one intent category.

4. Evaluate Data Sufficiency for Content Uniqueness

For each proposed page type, assess whether the data produces genuinely unique pages:

The Content Differentiation Test: Take 5 random records. For each, write out what the page would contain:

  • Title
  • H1
  • Intro paragraph
  • Main content sections
  • FAQ questions

If 3+ of these elements are essentially the same text with different proper nouns, the data is insufficient. Either:

  • Enrich the data (add more attributes, descriptions, FAQs per record)
  • Combine data sources (e.g., product data + user reviews + competitor data)
  • Narrow the page type to records with richer data
  • Abandon the page type as a pSEO candidate

Minimum data requirements per page:

  • 2+ unique text fields beyond title and description (for body content)
  • 3+ structured attributes (for data tables, stat highlights)
  • Category or taxonomy data (for hub-spoke linking)
  • Ideally: 3-5 FAQ pairs per record (for FAQ schema and content depth)

5. Assess URL Structure and Taxonomy

Propose a URL hierarchy for the pSEO pages:

/{category}/{slug}                     # standard
/{location}/{service}                  # location-based
/{product-type}/{product-slug}         # e-commerce
/{topic}/{subtopic}                    # content-based

Check:

  • Will all slugs be unique within their URL namespace?
  • Does the hierarchy create natural hub-spoke relationships?
  • Is the URL structure human-readable and keyword-inclusive?
  • How deep is the hierarchy? (Maximum 3 levels recommended)

6. Competitive Landscape Check

Identify whether competitors are already doing pSEO for the same patterns:

  • Search for the target keyword patterns and see what ranks
  • Check if competitors have programmatic pages (signs: similar URL patterns, templated content, large indexed page counts)
  • Assess competitor content quality — can you do meaningfully better?
  • Look for gaps they haven't covered (long-tail variations, underserved locations, new categories)

7. Propose a pSEO Strategy

Compile findings into a ranked list of pSEO opportunities.

Output Format

## pSEO Discovery Report

### Data Assets Found
| Entity | Record Count | Key Fields | Source |
|--------|-------------|------------|--------|
| [entity] | [count] | [fields] | [DB/CMS/API/files] |

### Proposed Page Types (ranked by opportunity)

#### 1. [Page Type Name]
- **Pattern**: [URL pattern, e.g., /services/[service]-in-[city]]
- **Record count**: [number of pages this would generate]
- **Search intent**: [informational / commercial / transactional]
- **Keyword pattern**: [e.g., "[service] in [city]"]
- **Data source**: [where the data comes from]
- **Content uniqueness**: [High / Medium / Low — with justification]
- **Data gaps**: [what fields are missing or need enrichment]
- **Feasibility**: [Ready / Needs data enrichment / Needs new data source]

#### 2. [Next page type...]

### Rejected Candidates
| Entity | Reason Rejected |
|--------|----------------|
| [entity] | [too few records / insufficient data / no search intent / ...] |

### Recommended URL Structure
[Proposed hierarchy with examples]

### Data Enrichment Needed
[List of data fields that need to be added to unlock page types]

### Next Steps
1. [Confirm page types with stakeholder]
2. [Enrich data where needed]
3. [Run pseo-audit on the codebase]
4. [Begin implementation with pseo-data]

Scope Parameter

If $ARGUMENTS specifies a focus:

  • all (default): Full discovery
  • codebase: Only analyze existing data assets in the code (steps 1-2)
  • business: Focus on business entity mapping and page type proposals (steps 2-4)
  • keywords: Focus on keyword patterns and competitive landscape (steps 3, 6)

YMYL Risk Assessment

Google's September 2025 Quality Rater Guidelines expanded YMYL (Your Money or Your Life) to include civic information alongside health, finance, and legal content. pSEO in YMYL verticals carries elevated risk.

YMYL categories (as of September 2025):

  • Health and medical information
  • Financial information (investing, taxes, loans, insurance)
  • Legal information
  • Civic information (voting, government, public trust)
  • Safety information (product safety, emergency procedures)
  • News about major events

If the proposed page types fall into ANY YMYL category:

  1. Flag the risk explicitly in the discovery report
  2. Elevate content quality requirements: Every page needs cited authoritative sources, expert attribution, and review processes
  3. Evaluate if pSEO is appropriate at all: YMYL content often requires human expert review per page, which conflicts with the "programmatic" approach. Be honest about this tension.
  4. Recommend stricter quality guard thresholds: Higher minimum word counts, stricter uniqueness requirements, mandatory E-E-A-T fields
  5. Consider hybrid approach: Programmatic data structure + human-reviewed content per page

Discovery output should include a YMYL assessment:

### YMYL Assessment
- YMYL category: [None | Health | Finance | Legal | Civic | Safety]
- Risk level: [Low | Medium | High]
- Recommendation: [Standard pSEO OK | Needs elevated quality standards | Human review per page required | pSEO not recommended for this vertical]

Output Artifact

Save the discovery report to .pseo/discovery-report.md in the project root. This file is consumed by pseo-audit and pseo-orchestrate to inform subsequent phases. The file must include at minimum:

  • Confirmed page types with their URL patterns
  • Data source locations (file paths, API endpoints, CMS content types)
  • YMYL assessment (if applicable)
  • Data gaps that need enrichment before implementation

If running within a single Claude Code session, the report can also be kept in conversation context. The file serves as a persistent artifact for multi-session workflows.

Important Constraints

  • This is a research-only skill. Do NOT modify code or create files.
  • Be honest about data gaps. Don't propose page types the data can't support.
  • Quantity of pages is not the goal. 200 genuinely unique pages beats 5,000 thin pages.
  • If the codebase has no usable structured data, say so. The answer may be "build the data layer first" or "this business isn't a good fit for pSEO."
  • If a page type would produce thin or near-identical pages, flag it as rejected with a clear reason.

Relationship to Other Skills

  • Runs before: All other pseo-* skills
  • Feeds into: pseo-audit (what to look for), pseo-data (what models to build)
  • Independent of: All implementation skills — this is pure research

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.32%
按下载量换算41

Claude

27.76%
按下载量换算32

Cursor

18.6%
按下载量换算22

Gemini CLI

8.83%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills