Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计提醒

nuxt-seonuxt SEO 网页抓取

Agent Skill

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

总安装

2,234

周安装

95

GitHub Stars

126

下载量

783
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/secondsky/claude-skills --skill nuxt-seo

简介

用于查找和筛选相关信息。nuxt-seo 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合根据关键词或任务场景快速定位候选结果。
  • 使用时需提供明确搜索目标以提高准确性。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 安装前应确认是否触发联网或文件读写操作。
  • 建议结合原始 README 核验功能边界和调用方式。

SKILL.md

Nuxt SEO - Complete Guide to All 8 SEO Modules + Pro Features

Status: Production Ready Last Updated: 2025-12-28 Dependencies: Nuxt >=3.0.0 Latest Versions: See module versions table below

Use this skill when building SEO-optimized Nuxt applications with any combination of the 8 official Nuxt SEO modules plus advanced Pro modules. This skill covers the complete Nuxt SEO ecosystem maintained by Harlan Wilton, including comprehensive guides for rendering modes, JSON-LD, Twitter Cards, IndexNow, and more.


Nuxt SEO Ecosystem Overview

Nuxt SEO consists of 8 core modules plus 3 Pro modules that work together seamlessly:

Core Modules

ModuleVersionPurpose
@nuxtjs/seov3.3.0Primary SEO module (installs all 8 modules as bundle)
nuxt-robotsv5.6.7Manages robots.txt and bot detection
nuxt-sitemapv7.5.0Generates XML sitemaps with advanced features
nuxt-og-imagev5.1.13Creates Open Graph images via Vue templates
nuxt-schema-orgv5.0.10Builds Schema.org structured data graphs
nuxt-link-checkerv4.3.9Finds and fixes broken links
nuxt-seo-utilsv7.0.19SEO utilities for discoverability & shareability
nuxt-site-configv3.2.14Centralized site configuration management

Pro Modules

ModulePurpose
nuxt-ai-readyGenerate llms.txt for AI crawlers and LLM optimization
nuxt-skew-protectionPrevent version mismatches during deployments
Nuxt SEO Pro MCPAI-powered SEO tools via Model Context Protocol

Requirements: Nuxt v3 or v4


Quick Start (5 Minutes)

1. Install Complete SEO Bundle

Install all 8 modules at once:

# Using Bun (primary)
bunx nuxi module add @nuxtjs/seo

# Using npm (backup)
npx nuxi module add @nuxtjs/seo

# Using pnpm (backup)
pnpm dlx nuxi module add @nuxtjs/seo

Why this matters:

  • Installs all 8 modules with a single command
  • Ensures compatible versions across modules
  • Provides best-practice defaults automatically

2. Configure Site Settings

Add to nuxt.config.ts:

export default defineNuxtConfig({
  modules: ['@nuxtjs/seo'],

  site: {
    url: 'https://example.com',
    name: 'My Awesome Site',
    description: 'Building amazing web experiences',
    defaultLocale: 'en'
  }
})

CRITICAL:

  • Set site.url to production URL (required for sitemaps and canonical URLs)
  • Use environment variable for multi-environment setups
  • Set defaultLocale if using i18n

3. Restart and Verify

bun run dev
# or
npm run dev

Visit these URLs to verify:

  • http://localhost:3000/robots.txt - Robots file
  • http://localhost:3000/sitemap.xml - Sitemap

Installation Options

Option 1: Complete Bundle (Recommended)

bunx nuxi module add @nuxtjs/seo
# or: npx nuxi module add @nuxtjs/seo

Configuration:

export default defineNuxtConfig({
  modules: ['@nuxtjs/seo']
})

Option 2: Individual Modules

Install only what's needed:

# Bun
bunx nuxi module add nuxt-robots
bunx nuxi module add nuxt-sitemap
bunx nuxi module add nuxt-og-image

# npm
npx nuxi module add nuxt-robots
npx nuxi module add nuxt-sitemap
npx nuxi module add nuxt-og-image

# pnpm (backup)
pnpm dlx nuxi module add nuxt-robots
pnpm dlx nuxi module add nuxt-sitemap
pnpm dlx nuxi module add nuxt-og-image

Configuration:

export default defineNuxtConfig({
  modules: [
    'nuxt-robots',
    'nuxt-sitemap',
    'nuxt-og-image'
  ]
})

Module Overview (Brief)

The Nuxt SEO ecosystem consists of 8 specialized modules that work together seamlessly. Each module serves a specific purpose and can be installed individually or as a complete bundle.

Module 1: @nuxtjs/seo

Primary SEO module that installs all 8 modules as a bundle. Provides unified configuration through the site object and integrates with Nuxt Content for automatic SEO.

Module 2: nuxt-robots

Manages robots.txt and bot detection. Controls which pages search engines can crawl with site-wide and page-level rules. Includes server-side and client-side bot detection.

Module 3: nuxt-sitemap

Generates XML sitemaps automatically from routes with support for dynamic URLs, multiple sitemaps, media, and advanced optimization. Perfect for large sites with thousands of pages.

Module 4: nuxt-og-image

Creates Open Graph images dynamically using Vue templates. Zero runtime overhead with Satori renderer or full CSS support with Chromium renderer.

Module 5: nuxt-schema-org

Builds Schema.org structured data for enhanced search results with rich snippets, knowledge panels, and better SEO.

Module 6: nuxt-link-checker

Finds and fixes links that may negatively affect SEO. Detects broken links, redirects, and issues during development and build.

Module 7: nuxt-seo-utils

SEO utilities for discoverability and shareability including canonical URLs, breadcrumbs, app icons, and Open Graph automation.

Module 8: nuxt-site-config

Centralized site configuration management for all SEO modules. Single source of truth for site-wide settings like URL, name, and locale.

For complete module documentation with configurations, APIs, and examples: Load references/module-details.md when you need:

  • Detailed configuration options for a specific module
  • Complete API documentation
  • Code examples and usage patterns
  • Module-specific troubleshooting

Integration Patterns

Basic Example

// nuxt.config.ts - Complete SEO setup
export default defineNuxtConfig({
  modules: ['@nuxtjs/seo'],

  site: {
    url: 'https://example.com',
    name: 'My Awesome Site',
    defaultLocale: 'en'
  },

  robots: {
    disallow: ['/admin']
  },

  sitemap: {
    sitemaps: {
      blog: { sources: ['/api/__sitemap__/blog'] }
    }
  }
})

For complete integration examples: Load references/common-patterns.md when you need:

  • Blog page SEO implementation
  • E-commerce product page examples
  • Multi-language SEO patterns
  • Integration with Nuxt Content

Critical Rules

Always Do

✅ Set site.url in nuxt.config.ts (required for sitemaps and canonical URLs) ✅ Use environment variables for multi-environment setups ✅ Configure robots.txt to block admin/private pages ✅ Add Schema.org structured data to all important pages ✅ Generate OG images for social sharing ✅ Test all SEO features before deploying to production ✅ Submit sitemap to Google Search Console after deployment ✅ Enable link checker during development

Never Do

❌ Forget to set site.url (breaks sitemaps and canonical URLs) ❌ Allow crawling of staging environments ❌ Skip Schema.org for key pages (products, articles, events) ❌ Deploy without testing OG images ❌ Use outdated module versions ❌ Ignore broken links found by link checker ❌ Forget to exclude admin/private routes from sitemap ❌ Use wrong rendering engine for OG images (Chromium vs Satori)


Known Issues Prevention

This skill prevents 10 documented common SEO mistakes:

Issue #1: Sitemap Not Generating

Error: /sitemap.xml returns 404 Why It Happens: Missing site.url configuration Prevention: Always set site.url in nuxt.config.ts

Issue #2: robots.txt Missing

Error: /robots.txt not accessible Why It Happens: Module not installed or misconfigured Prevention: Install nuxt-robots and set site.url

Issue #3: OG Images Not Rendering

Error: /__og-image__/og.png returns error Why It Happens: Incompatible CSS with Satori renderer Prevention: Use Satori-compatible CSS or switch to Chromium renderer

Issue #4: Schema Validation Errors

Error: Invalid JSON-LD in page source Why It Happens: Incorrect Schema.org structure Prevention: Follow official Schema.org types and validate with Google's Rich Results Test

Issue #5: Broken Internal Links

Error: 404 errors on internal links Why It Happens: Links not updated after route changes Prevention: Enable nuxt-link-checker during development

Issue #6: Duplicate Meta Tags

Error: Multiple meta tags with same property Why It Happens: Conflicting manual meta tags and module automation Prevention: Let modules handle meta tags automatically

Issue #7: Canonical URL Issues

Error: Wrong canonical URL in meta tags Why It Happens: Incorrect site.url or missing trailing slash config Prevention: Configure site.url and trailingSlash correctly

Issue #8: Sitemap Index Errors

Error: Sitemap index XML malformed Why It Happens: Too many URLs in single sitemap Prevention: Use chunksSize option to split large sitemaps

Issue #9: Crawling Staging Environment

Error: Staging site indexed by Google Why It Happens: No robots.txt blocking Prevention: Configure robots to block staging: disallow: process.env.NUXT_PUBLIC_ENV === 'staging'? ['/']: []

Issue #10: Missing Social Sharing Images

Error: No preview image when sharing on social media Why It Happens: OG image not defined or not accessible Prevention: Use defineOgImage() on all important pages


Configuration Example

Basic Production Config

export default defineNuxtConfig({
  modules: ['@nuxtjs/seo'],

  site: {
    url: process.env.NUXT_PUBLIC_SITE_URL,
    name: 'My Site',
    defaultLocale: 'en'
  },

  robots: {
    disallow: process.env.NUXT_PUBLIC_ENV === 'staging' ? ['/'] : []
  },

  sitemap: {
    sitemaps: {
      blog: { sources: ['/api/__sitemap__/blog'] }
    }
  }
})

For complete configuration examples: Load references/advanced-configuration.md when you need:

  • Production-ready multi-environment setup
  • Development and staging configurations
  • Advanced sitemap patterns
  • Dynamic route rules
  • Multi-language configuration

Using Bundled Resources

Scripts (scripts/)

init-nuxt-seo.sh - Quick setup script for new projects

./scripts/init-nuxt-seo.sh

Automatically:

  • Installs @nuxtjs/seo module
  • Creates basic nuxt.config.ts configuration
  • Sets up example OG image component
  • Creates sitemap API endpoint example

References (references/)

When to Load References

Load the appropriate reference file based on the user's specific needs:

Load references/seo-guides.md when:

  • User asks about rendering modes (SSR, SSG, ISR, Hybrid)
  • Need JSON-LD structured data implementation
  • Setting up canonical URLs
  • Implementing Twitter Cards or Open Graph
  • Configuring meta robots tags
  • Using IndexNow for instant indexing
  • URL structure best practices
  • Debugging SEO issues
  • Rich results implementation

Load references/pro-modules.md when:

  • User asks about AI optimization (llms.txt)
  • Need deployment version skew protection
  • Setting up MCP tools for AI-assisted SEO
  • Advanced Pro module features

Load references/advanced-seo-guides.md when:

  • User asks about I18n/multilanguage SEO
  • Need hreflang or locale-specific sitemaps
  • Configuring SEO route rules (routeRules)
  • Enhanced title configuration (templates, fallbacks)
  • Deep dive into nuxt-seo-utils features
  • Link checker inspection rules
  • Prerendering Vue SPA for SEO
  • Hydration mismatch debugging
  • Protecting from malicious crawlers/bots
  • Creating SEO-friendly 404 pages

Load references/modules-overview.md when:

  • User asks "what modules are available?" or "which module should I use?"
  • Need overview of module capabilities and use cases
  • Comparing modules to choose the right one
  • Understanding how modules work together

Load references/installation-guide.md when:

  • User is setting up Nuxt SEO for the first time
  • Package manager specific questions (Bun vs npm vs pnpm)
  • Installation troubleshooting or dependency conflicts
  • Need step-by-step installation instructions

Load references/api-reference.md when:

  • User asks about specific composable APIs (e.g., "how to use useSchemaOrg?")
  • Need complete parameter lists or return types
  • Troubleshooting API method signatures
  • Looking for specific configuration options

Load references/common-patterns.md when:

  • User wants real-world implementation examples
  • Need blog, e-commerce, or multi-language SEO patterns
  • Integrating with Nuxt Content or other modules
  • Production-ready configuration examples

Load references/module-details.md when:

  • User asks about specific module configuration
  • Need detailed documentation for one of the 8 modules
  • Troubleshooting module-specific issues

Load references/best-practices.md when:

  • Setting up production SEO configuration
  • Need SEO optimization guidelines
  • Following Nuxt SEO best practices

Load references/troubleshooting.md when:

  • User experiencing specific errors
  • Sitemap, robots.txt, or OG image issues
  • Build problems or module conflicts

Load references/advanced-configuration.md when:

  • Need production-ready configurations
  • Multi-environment setup (dev/staging/production)
  • Advanced features (multiple sitemaps, custom OG templates)

Load references/og-image-guide.md when:

  • User asks about OG image generation, Satori vs Chromium
  • Need custom OG image templates or Vue components
  • Configuring fonts, emojis, or caching for OG images
  • Troubleshooting OG image rendering issues
  • Implementing custom props or dynamic OG images

Load references/nuxt-content-integration.md when:

  • User is using @nuxt/content with SEO modules
  • Need asSeoCollection, asSitemapCollection, asSchemaOrgCollection patterns
  • Content v2 vs v3 integration differences
  • Module load order issues with content
  • Automatic SEO from content frontmatter

Load references/sitemap-advanced.md when:

  • User needs dynamic sitemap URLs from API/database
  • Implementing multi-sitemaps with chunking
  • Image or video sitemaps
  • I18n sitemap with _i18nTransform
  • Performance optimization (caching, zero runtime)
  • defineSitemapEventHandler patterns

Load references/nitro-api-reference.md when:

  • User needs server-side SEO hooks
  • Implementing sitemap:input, sitemap:resolved, sitemap:output hooks
  • OG image hooks (nuxt-og-image:context, nuxt-og-image:satori:vnodes)
  • Robots composables (getSiteRobotConfig, getPathRobotConfig)
  • Nitro plugin integration for SEO

Load references/ai-seo-tools.md when:

  • User asks about llms.txt or AI discoverability
  • Implementing Nuxt AI Ready module
  • MCP server for AI-powered SEO
  • Content signals for AI crawlers
  • LLM optimization techniques

Available references:

  • references/seo-guides.md - Comprehensive SEO implementation guides (rendering, JSON-LD, canonical URLs, IndexNow, Twitter Cards, Open Graph, meta robots, URL structure)
  • references/pro-modules.md - Pro modules (AI Ready, Skew Protection, SEO Pro MCP)
  • references/advanced-seo-guides.md - Advanced SEO topics (I18n multilanguage, route rules, enhanced titles, link checker rules, SPA prerendering, hydration, crawler protection, 404 pages)
  • references/og-image-guide.md - OG image generation (Satori/Chromium, fonts, emojis, caching, custom templates)
  • references/nuxt-content-integration.md - Nuxt Content v2/v3 integration (asSeoCollection, module order, auto-SEO)
  • references/sitemap-advanced.md - Advanced sitemap patterns (dynamic URLs, multi-sitemaps, chunking, i18n, performance)
  • references/nitro-api-reference.md - Server-side SEO hooks and composables (Nitro plugins, sitemap hooks, robots composables)
  • references/ai-seo-tools.md - AI SEO tools (llms.txt, Nuxt AI Ready, MCP, content signals)
  • references/modules-overview.md - Detailed overview of all 8 core modules
  • references/installation-guide.md - Step-by-step installation patterns
  • references/api-reference.md - Complete API documentation for all composables
  • references/common-patterns.md - Real-world usage patterns and examples
  • references/module-details.md - Detailed module configurations
  • references/best-practices.md - Production SEO best practices
  • references/troubleshooting.md - Error resolution guides
  • references/advanced-configuration.md - Advanced configuration patterns

Assets (assets/)

  • assets/package-versions.json - Current module versions for verification

Agents (agents/)

Autonomous agents for complex SEO tasks:

AgentPurpose
seo-auditor.mdComprehensive SEO audit of Nuxt projects
schema-generator.mdGenerate Schema.org structured data
og-image-generator.mdCreate custom OG image Vue templates
link-checker.mdAnalyze internal/external links
sitemap-builder.mdDesign optimal sitemap strategies

Commands (commands/)

Slash commands for quick SEO tasks:

CommandPurpose
/seo-auditRun comprehensive SEO audit
/seo-setupQuick Nuxt SEO project setup
/og-previewPreview OG image generation
/check-linksRun link checker analysis
/validate-sitemapValidate sitemap configuration
/check-schemaValidate Schema.org implementation

Hooks (hooks/)

SEO validation hooks that run automatically:

HookEventPurpose
SEO Config ValidatorPreToolUseValidates SEO configuration in file edits
Post-Write CheckerPostToolUseChecks SEO config after file writes
Completion ValidatorStopEnsures SEO validation before task completion
Project DetectorSessionStartDetects Nuxt SEO modules on session start

Best Practices

Top 3 Critical Practices

1. Always Set Site Config

site: {
  url: process.env.NUXT_PUBLIC_SITE_URL,
  name: 'Your Site Name'
}

2. Block Staging from Search Engines

robots: {
  disallow: process.env.NUXT_PUBLIC_ENV === 'staging' ? ['/'] : []
}

3. Add Schema.org to All Pages Every page should have appropriate structured data (Organization, BlogPosting, Product, etc.).

For complete best practices guide: Load references/best-practices.md when you need:

  • All 8 SEO best practices
  • Environment variable configuration
  • Dynamic sitemap generation
  • OG image optimization
  • Multi-language SEO setup

Troubleshooting

Top 3 Common Issues

1. Sitemap Not Generating

  • Ensure nuxt-sitemap is installed
  • Set site.url in config
  • Restart dev server and visit /sitemap.xml

2. OG Images Not Rendering

  • Check if nuxt-og-image is installed
  • Verify fonts are accessible
  • For complex layouts, switch to Chromium renderer

3. Build Errors

  • Update all modules to latest versions
  • Clear .nuxt and node_modules/.cache
  • Reinstall: rm -rf node_modules && bun install

For complete troubleshooting guide: Load references/troubleshooting.md when you need:

  • Detailed solutions for all 5 common problems
  • Advanced debugging techniques
  • Module-specific error resolution
  • Build and deployment issues

Package Versions (Verified 2025-12-28)

{
  "dependencies": {
    "@nuxtjs/seo": "^3.3.0",
    "nuxt-robots": "^5.6.7",
    "nuxt-sitemap": "^7.5.0",
    "nuxt-og-image": "^5.1.13",
    "nuxt-schema-org": "^5.0.10",
    "nuxt-link-checker": "^4.3.9",
    "nuxt-seo-utils": "^7.0.19",
    "nuxt-site-config": "^3.2.14"
  }
}

Complete Setup Checklist

Use this checklist to verify setup:

  • Installed @nuxtjs/seo or individual modules
  • Set site.url in nuxt.config.ts
  • Configured site.name and site.description
  • Set defaultLocale if using i18n
  • Configured robots.txt to block admin/private pages
  • Configured staging environment to block all crawling
  • Created dynamic sitemap endpoints for content
  • Added OG image to important pages
  • Added Schema.org structured data to key pages
  • Enabled link checker in development
  • Tested /robots.txt endpoint
  • Tested /sitemap.xml endpoint
  • Verified OG images render correctly
  • Submitted sitemap to Google Search Console
  • Production build succeeds without errors

Official Documentation


Production Ready: All patterns based on official documentation from https://nuxtseo.com/llms.txt | Last verified: 2025-12-28


Version History

v2.2.0 (2025-12-28)

  • Full expansion with comprehensive coverage of all topics from nuxtseo.com/llms.txt
  • Added 5 new reference files:

- references/og-image-guide.md - Complete OG image guide (Satori/Chromium, fonts, emojis, caching) - references/nuxt-content-integration.md - Nuxt Content v2/v3 integration patterns - references/sitemap-advanced.md - Advanced sitemap patterns (dynamic URLs, multi-sitemaps, chunking) - references/nitro-api-reference.md - Server-side SEO hooks and composables - references/ai-seo-tools.md - Nuxt AI Ready, llms.txt, MCP server, content signals

  • Added 3 new agents:

- agents/og-image-generator.md - Creates custom OG image Vue templates - agents/link-checker.md - Analyzes internal/external links - agents/sitemap-builder.md - Designs optimal sitemap strategies

  • Added 4 new commands:

- /og-preview - Preview OG image generation - /check-links - Run link checker analysis - /validate-sitemap - Validate sitemap configuration - /check-schema - Validate Schema.org implementation

  • Added SEO validation hooks:

- PreToolUse hook for SEO config validation - PostToolUse hook for post-write checks - Stop hook for completion validation - SessionStart hook for project detection

  • Enhanced keywords with 20+ new terms for better discoverability
  • Total: 16 reference files, 5 agents, 6 commands, 4 hooks

v2.1.0 (2025-12-28)

  • Added references/advanced-seo-guides.md with 9 advanced topics:

- I18n Multilanguage SEO (robots + sitemap integration) - SEO Route Rules (routeRules configuration) - Enhanced Titles (templates, fallbacks) - Nuxt SEO Utils Deep Dive - Nuxt Link Checker Rules (14 inspection rules) - Prerendering Vue SPA for SEO - Hydration Mismatches (causes, fixes, SEO impact) - Protecting from Malicious Crawlers - SEO-Friendly 404 Pages

  • Added 5 new auto-trigger scenarios
  • Enhanced keywords with 25+ new terms

v2.0.0 (2025-12-28)

  • Major update with comprehensive SEO guides and Pro modules
  • Added references/seo-guides.md - Complete SEO implementation guides:

- Rendering modes (SSR, SSG, ISR, Hybrid) - JSON-LD Structured Data - Canonical URLs - IndexNow & Indexing APIs - Twitter Cards - Social Sharing & Open Graph - Meta Robots Tags - URL Structure Best Practices - Rich Results - Debugging Vue SEO Issues

  • Added references/pro-modules.md - Pro module documentation:

- Nuxt AI Ready (llms.txt generation) - Nuxt Skew Protection (deployment version safety) - Nuxt SEO Pro MCP (AI-powered SEO tools)

  • Created agents/seo-auditor.md - Autonomous SEO audit agent
  • Created agents/schema-generator.md - Schema.org code generator
  • Created commands/seo-audit.md - SEO audit slash command
  • Created commands/seo-setup.md - Quick SEO setup command
  • Updated all package versions to latest (2025-12-28)
  • Enhanced keywords for better skill discovery
  • Added 5 new auto-trigger scenarios

v1.1.0 (2025-11-27)

  • Refactored SKILL.md from 1505 to 628 lines (58% reduction)
  • Extracted module details to references/module-details.md
  • Extracted best practices to references/best-practices.md
  • Extracted troubleshooting to references/troubleshooting.md
  • Extracted advanced config to references/advanced-configuration.md
  • Added "When to Load References" section for progressive disclosure
  • Added TOCs to all 8 reference files
  • All content preserved, just reorganized for optimal token efficiency
  • Phases 6-7, 13-14 complete per skill-review process

v1.0.0 (2025-11-10)

  • Initial release
  • Complete documentation for all 8 Nuxt SEO modules
  • 10 documented error patterns
  • Production-tested patterns

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Codex

36.12%
按下载量换算283

Claude Code

25.31%
按下载量换算198

windsurf

19.08%
按下载量换算149

Cursor

12.65%
按下载量换算99

github-copilot

5.26%
按下载量换算41

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills