Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

seo-analysisSEO analysis 搜索

Agent Skill

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

总安装

384

周安装

16

GitHub Stars

13

下载量

128
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/jpcaparas/skills --skill seo-analysis

简介

用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装并使用。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • seo-analysis 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

seo-analysis

Audit a codebase for search visibility risks, then produce a fix-ready prompt another session can execute.

This skill is framework- and language-agnostic. Start from the live repository and rendered output, not from assumptions about React, Next.js, Rails, Laravel, Astro, WordPress, or any other stack.

Decision Tree

What SEO problem are you solving?

  • Need a full technical and on-page audit of a codebase

- Run python3 scripts/build_fix_prompt.py --help - Read references/methodology.md - Then read references/technical-audit.md

  • Need metadata, social preview, canonicals, or indexability checks

- Read references/metadata-and-previews.md

  • Need schema.org / JSON-LD / entity / rich result analysis

- Read references/structured-data-and-entities.md

  • Need content quality, information architecture, internal linking, or template-level page targeting analysis

- Read references/content-and-information-architecture.md

  • Need AI-era search guidance for crawl/render controls, preview controls, and answer-engine readiness

- Read references/agentic-search-and-ai-surfaces.md

  • Need the exact remediation handoff format for another session

- Read references/fix-prompt-spec.md - Use templates/fix-prompt-template.md - Optionally generate a draft with python3 scripts/build_fix_prompt.py --input findings.json

  • Need edge cases, policy traps, or common false positives

- Read references/gotchas.md

Quick Reference

TaskUseOutcome
Run a full repo auditreferences/methodology.mdOrdered checklist and evidence collection flow
Check indexability and renderingreferences/technical-audit.mdCrawl, render, canonical, robots, sitemap, and status-code findings
Check titles, meta descriptions, OG, X cards, favicons, site namesreferences/metadata-and-previews.mdSERP and social preview findings
Check structured data and entity signalsreferences/structured-data-and-entities.mdRich-result and graph readiness findings
Check content and link architecturereferences/content-and-information-architecture.mdContent gaps, duplication, orphan pages, weak anchors
Check AI-era search readinessreferences/agentic-search-and-ai-surfaces.mdPreview controls, crawl access, citation readiness
Produce a fix session promptreferences/fix-prompt-spec.md + templates/fix-prompt-template.mdCopy-paste prompt for a second implementation session
Generate a prompt draft from findings JSONpython3 scripts/build_fix_prompt.py --input findings.json --repo /abs/pathStructured prompt with priorities, constraints, and acceptance criteria

Core Workflow

  1. Inspect the repository structure, routing model, page templates, layout files, and any head/metadata abstractions before drawing conclusions.
  2. Inspect representative URLs or templates for each page type: home, category, product/service, article/docs, auth/account, paginated/filter pages, and utility pages.
  3. Separate findings by severity and by layer:

- Crawl/index controls - Render/discovery/canonicalization - Metadata/social preview - Structured data/entity signals - Content/internal linking/information architecture - Performance/page experience - AI-era search surface readiness

  1. For every finding, capture evidence from code, built HTML, or runtime behavior. Do not speculate when you can verify.
  2. Turn the findings into an implementation prompt for another session only after deduplicating root causes. One broken metadata abstraction can explain hundreds of bad pages.

Audit Deliverables

Produce these artifacts in the response:

  1. Executive summary — what is blocking or suppressing search visibility right now.
  2. Findings table — severity, URL/template scope, evidence, impact, fix direction.
  3. Page-type coverage map — which templates or routes were checked and which were not.
  4. Remediation sequence — what to fix first, second, and later.
  5. Implementation prompt — a clean handoff for another session to make code changes safely.

Analysis Rules

  1. Work from the rendered reality of the site, not only source files. SSR, SSG, CSR, hydration, and edge rendering change what crawlers actually receive.
  2. Treat crawlability, renderability, and canonicalization as prerequisites. Title tweaks do not matter if important pages are blocked, duplicated, or undiscoverable.
  3. Evaluate page types, not just single pages. SEO failures usually come from shared template logic.
  4. Distinguish intentional exclusions from mistakes. Login, cart, internal search, faceted combinations, and thin utility pages are often meant to be noindex.
  5. Check both search-result previews and social previews. Missing or conflicting Open Graph data is a distribution problem even when classic SEO looks acceptable.
  6. Prefer supported structured data aligned to page purpose. Do not recommend schema spam or irrelevant types.
  7. Treat AI-answer visibility as an extension of crawlability, metadata clarity, structured facts, and trustworthy content. Do not invent a separate magical “AI SEO” system.

Reading Guide

If the task is...Read
Full audit from code to implementation handoffreferences/methodology.md, then references/fix-prompt-spec.md
Diagnose a rendering, canonical, robots, sitemap, hreflang, or internal-link issuereferences/technical-audit.md
Diagnose bad titles, snippets, link previews, or OG/X metadatareferences/metadata-and-previews.md
Diagnose missing or invalid schema and weak entity markupreferences/structured-data-and-entities.md
Diagnose weak topical targeting, duplication, orphan pages, or anchor text problemsreferences/content-and-information-architecture.md
Discuss AI Overviews, citation surfaces, or answer-engine readinessreferences/agentic-search-and-ai-surfaces.md
Avoid overreaching or false positivesreferences/gotchas.md

Verified External Baseline

The guidance in this skill was grounded against current primary sources in April 2026, including:

  • Google Search Central on SEO basics, helpful content, JavaScript SEO, robots meta directives, canonicalization, snippets, structured data, sitemaps, site names, favicons, and preferred sources.
  • The Open Graph protocol specification for required OG fields and image metadata.

Use the references as the first source of truth, then verify live details when the target stack or search surface has materially changed.

Gotchas

  1. Missing SEO is often a shared abstraction bug: a single layout, metadata helper, or head component can poison every route.
  2. Do not treat every noindex as wrong: many utility surfaces should stay out of the index.
  3. Do not recommend robots.txt for canonicalization: blocking a duplicate URL in robots.txt can prevent crawlers from seeing the canonical signal at all.
  4. Do not assume OG tags equal SEO tags: search titles, social titles, canonicals, and schema each serve different consumers.
  5. Do not confuse “AI SEO” with hidden hacks: the durable wins are still crawl access, strong facts, clear metadata, and useful original content.
  6. Do not hand off a fix prompt without evidence: the second session should receive concrete files, page types, and acceptance criteria, not generic SEO advice.

Helper Files

  • references/methodology.md — end-to-end audit workflow and evidence model.
  • references/technical-audit.md — crawl, rendering, canonicals, robots, sitemaps, hreflang, pagination, internal-link discovery.
  • references/metadata-and-previews.md — titles, descriptions, OG, X cards, favicons, site names, image previews.
  • references/structured-data-and-entities.md — JSON-LD strategy and validation priorities.
  • references/content-and-information-architecture.md — content quality, duplication, template targeting, and link architecture.
  • references/agentic-search-and-ai-surfaces.md — AI-era search interpretation without hype.
  • references/fix-prompt-spec.md — exact handoff prompt contract.
  • references/gotchas.md — high-value traps and anti-patterns.
  • templates/fix-prompt-template.md — copy-ready handoff prompt shell.
  • scripts/build_fix_prompt.py — deterministic prompt builder from findings JSON.
  • scripts/probe_seo_analysis.py — local regression checks for issue normalization and prompt generation.
  • scripts/validate.py — structural validator for this skill.
  • scripts/test_skill.py — packaging and deterministic probe test runner.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.38%
按下载量换算44

Claude

29.78%
按下载量换算38

Cursor

19.31%
按下载量换算25

Gemini CLI

9.01%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/jpcaparas/skills --skill seo-analysis 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills