Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问clear审计未展示

ai-discovery-expertAI 发现专家

Agent Skill

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

总安装

242

周安装

10

GitHub Stars

公开资料未说明

下载量

79
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add nguyenthienthanh/aura-frog --skill "ai-discovery-expert"

简介

发现并安装 AI 代理的技能。ai-discovery-expert 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中扩展 Agent 能力时使用。
  • 通过 github 安装,需确认宿主环境兼容性。
  • 建议结合仓库路径查看技能实现细节。
  • 注意是否会触发联网或外部服务调用。

SKILL.md

name
ai-discovery-expert
description
AI Discovery and LLM search optimization expert. PROACTIVELY use when optimizing for Perplexity, ChatGPT Search, Gemini, Claude, AI crawlers. Triggers: AI search, Perplexity, ChatGPT, AI discovery, LLM citation
autoInvoke
true
priority
high
triggers
allowed-tools
Read, Grep, Glob, Edit, Write

AI Discovery Expert Skill

Expert-level optimization for AI-powered search engines and answer engines. Covers Perplexity, ChatGPT Search, Gemini, Claude, and other LLM-based discovery platforms.


Auto-Detection

This skill activates when:

  • Discussing AI search engines (Perplexity, ChatGPT Search, Gemini)
  • Optimizing content for LLM citation and discovery
  • Implementing AI-friendly content structures
  • Working on answer engine optimization (AEO)
  • Discussing generative search and AI crawlers

1. AI Discovery vs Traditional SEO

comparison[4]{aspect,traditional_seo,ai_discovery}:
  Goal,Rank on SERP position 1-10,Get cited in AI answers
  Format,Keywords + backlinks,Clear answers + structured data
  Content,Keyword density,Comprehensive + authoritative
  Measurement,Rankings + clicks,Citations + brand mentions

Key Insight

AI search engines synthesize answers from multiple sources. Your goal is to be cited as an authoritative source, not just ranked.


2. Content Structure for AI Citation

Answer-First Writing

<!-- ✅ GOOD: Direct answer first -->
# What is Server-Side Rendering (SSR)?

Server-Side Rendering (SSR) is a technique where web pages are rendered
on the server and sent as fully-formed HTML to the browser. This improves
initial page load time and SEO compared to client-side rendering.

## How SSR Works
1. User requests a page
2. Server renders the HTML
3. Browser receives complete HTML
4. JavaScript hydrates for interactivity

<!-- ❌ BAD: Buried answer -->
# Understanding Modern Web Development

In the evolving landscape of web development, there are many techniques...
[500 words later]
...which brings us to Server-Side Rendering (SSR).

Structured Answer Patterns

answer_patterns[5]{pattern,usage,example}:
  Definition first,Concepts/terms,"X is a technique that..."
  Step-by-step,How-to guides,"1. First... 2. Then... 3. Finally..."
  Comparison tables,Alternatives,Feature comparison grids
  Pro/con lists,Decision making,"Pros: ... Cons: ..."
  FAQ format,Common questions,"Q: What is? A: It is..."

3. AI-Optimized Content Formats

Comprehensive FAQ Sections

<!-- Structured for both SEO and AI -->
<section itemscope itemtype="https://schema.org/FAQPage">
  <h2>Frequently Asked Questions</h2>

  <div itemscope itemprop="mainEntity" itemtype="https://schema.org/Question">
    <h3 itemprop="name">What is the best framework for SSR?</h3>
    <div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer">
      <p itemprop="text">
        Next.js is widely considered the best framework for SSR due to its
        built-in support for server components, automatic code splitting,
        and excellent developer experience. Alternatives include Nuxt.js
        for Vue and SvelteKit for Svelte.
      </p>
    </div>
  </div>
</section>

Authoritative Data Tables

<!-- Tables are easily parsed by AI -->
<table>
  <caption>SSR Framework Comparison 2025</caption>
  <thead>
    <tr>
      <th>Framework</th>
      <th>Language</th>
      <th>Performance</th>
      <th>Learning Curve</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Next.js</td>
      <td>React/TypeScript</td>
      <td>Excellent</td>
      <td>Medium</td>
    </tr>
    <tr>
      <td>Nuxt.js</td>
      <td>Vue/TypeScript</td>
      <td>Excellent</td>
      <td>Easy</td>
    </tr>
  </tbody>
</table>

4. Entity Optimization (Critical for AI)

Build Topic Authority

entity_signals[5]{signal,implementation}:
  Author entities,Author pages with credentials + schema
  Organization entities,About page with company schema
  Topic clusters,Hub pages linking to detailed subtopics
  External mentions,Citations from authoritative sources
  Consistent naming,Same entity names across all content

Author Schema for E-E-A-T

{
  "@context": "https://schema.org",
  "@type": "Person",
  "@id": "https://example.com/authors/john-doe#person",
  "name": "John Doe",
  "jobTitle": "Senior Software Engineer",
  "description": "10+ years experience in web development, contributor to React and Next.js",
  "url": "https://example.com/authors/john-doe",
  "sameAs": [
    "https://twitter.com/johndoe",
    "https://github.com/johndoe",
    "https://linkedin.com/in/johndoe"
  ],
  "knowsAbout": [
    "React",
    "Next.js",
    "Server-Side Rendering",
    "Web Performance"
  ],
  "alumniOf": {
    "@type": "Organization",
    "name": "MIT"
  },
  "worksFor": {
    "@type": "Organization",
    "name": "Company Name"
  }
}

5. Semantic HTML for AI Parsing

Clear Content Hierarchy

<!-- ✅ GOOD: Clear semantic structure -->
<article>
  <header>
    <h1>Complete Guide to Server-Side Rendering</h1>
    <p class="summary">
      Learn how SSR improves performance and SEO for modern web apps.
    </p>
    <time datetime="2025-01-15">January 15, 2025</time>
  </header>

  <nav aria-label="Table of contents">
    <h2>Contents</h2>
    <ol>
      <li><a href="#what-is-ssr">What is SSR?</a></li>
      <li><a href="#benefits">Benefits of SSR</a></li>
      <li><a href="#implementation">Implementation Guide</a></li>
    </ol>
  </nav>

  <section id="what-is-ssr">
    <h2>What is SSR?</h2>
    <p>Server-Side Rendering is...</p>
  </section>

  <section id="benefits">
    <h2>Benefits of SSR</h2>
    <ul>
      <li>Faster initial page load</li>
      <li>Better SEO performance</li>
      <li>Improved accessibility</li>
    </ul>
  </section>

  <aside>
    <h3>Related Articles</h3>
    <ul>
      <li><a href="/static-generation">Static Site Generation</a></li>
      <li><a href="/client-rendering">Client-Side Rendering</a></li>
    </ul>
  </aside>
</article>

6. AI Crawler Considerations

Perplexity Bot

# robots.txt - Allow Perplexity
User-agent: PerplexityBot
Allow: /
Crawl-delay: 1

Common AI Crawlers

ai_crawlers[6]{bot,engine,recommendation}:
  GPTBot,OpenAI/ChatGPT,Allow for AI search visibility
  Google-Extended,Google Gemini,Allow for Gemini citations
  PerplexityBot,Perplexity,Allow - major AI search engine
  ClaudeBot,Anthropic Claude,Allow for Claude citations
  Applebot-Extended,Apple Intelligence,Allow for Apple AI features
  CCBot,Common Crawl,Allow - trains many AI models

Recommended robots.txt

# Allow major AI crawlers for discovery
User-agent: GPTBot
Allow: /

User-agent: Google-Extended
Allow: /

User-agent: PerplexityBot
Allow: /

User-agent: ClaudeBot
Allow: /

User-agent: Applebot-Extended
Allow: /

# Block training-only crawlers if desired
User-agent: CCBot
Disallow: /

# Standard search engines
User-agent: Googlebot
Allow: /

User-agent: Bingbot
Allow: /

Sitemap: https://example.com/sitemap.xml

7. Content Freshness Signals

Keep-Current Patterns

// Show last updated date prominently
<article>
  <header>
    <h1>Next.js SEO Guide</h1>
    <div className="meta">
      <time dateTime="2025-01-15">
        Last updated: January 15, 2025
      </time>
      <span>Originally published: March 2024</span>
    </div>
  </header>
</article>

// Add update log for major changes
<section>
  <h2>Update History</h2>
  <ul>
    <li><strong>Jan 2025:</strong> Added Next.js 15 features</li>
    <li><strong>Oct 2024:</strong> Updated for App Router changes</li>
    <li><strong>Mar 2024:</strong> Initial publication</li>
  </ul>
</section>

Schema with Dates

{
  "@type": "Article",
  "datePublished": "2024-03-15T08:00:00+00:00",
  "dateModified": "2025-01-15T10:30:00+00:00"
}

8. Citation-Worthy Content Patterns

What Gets Cited

citation_factors[6]{factor,why}:
  Original research,Unique data AI can't find elsewhere
  Expert opinions,Authoritative perspectives
  Concrete numbers,Statistics and benchmarks
  Step-by-step guides,Actionable how-to content
  Comparison tables,Structured decision-making data
  Definition sections,Clear explanations of concepts

Content Quality Signals

quality_signals[5]{signal,implementation}:
  Expertise,Author credentials + experience displayed
  Sources,Citations to authoritative references
  Comprehensiveness,Cover topic fully with depth
  Recency,Regular updates with visible dates
  Uniqueness,Original insights not found elsewhere

9. LLM.txt Standard (Emerging)

What is llm.txt?

A proposed standard (like robots.txt) specifically for AI/LLM consumption.

# llm.txt - AI-specific instructions
# Place at site root: https://example.com/llm.txt

# Site identity
name: Example Tech Blog
description: Expert guides on web development and JavaScript frameworks
author: Example Team
contact:  [email protected] 

# Content focus
topics: React, Next.js, TypeScript, Web Performance, SEO

# Citation preferences
citation-name: Example Tech Blog
citation-url: https://example.com

# Content freshness
update-frequency: weekly
last-major-update: 2025-01-15

# Preferred citation format
cite-as: "According to Example Tech Blog..."

# Key resources for AI understanding
resources:
  - /about - Company and author information
  - /glossary - Technical term definitions
  - /guides - Comprehensive tutorials

10. Monitoring AI Citations

Track Brand Mentions

monitoring_tools[4]{tool,purpose}:
  Perplexity,Search your brand - see if cited
  ChatGPT,Ask about your topic - check citations
  Google Alerts,Monitor brand mentions across web
  BrandMentions,Track citations in AI responses

Manual Testing Prompts

Test queries to check AI citations:

1. "What is [your topic]?" - Check if your definition is cited
2. "Best [your product category]" - Check if you appear in recommendations
3. "How to [task you teach]" - Check if your guide is referenced
4. "[Your brand name] review" - Check brand awareness

Quick Reference Checklist

ai_discovery_checklist[12]{check,priority}:
  Answer-first content structure,Critical
  Clear semantic HTML hierarchy,Critical
  Comprehensive FAQ sections,High
  Author/organization schema,High
  Allow AI crawlers in robots.txt,High
  Visible update dates,High
  Original research/data,High
  Structured comparison tables,Medium
  Topic cluster architecture,Medium
  External authority signals,Medium
  llm.txt file (emerging),Low
  Citation monitoring setup,Low

Related Skills

  • seo-expert - Traditional search engine optimization
  • web-expert - Frontend implementation
  • nextjs-expert - Next.js metadata implementation

Version: 1.0.0

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

OpenCode

29.29%
按下载量换算23

Claude Code

20.67%
按下载量换算16

windsurf

16.54%
按下载量换算13

cline

12.9%
按下载量换算10

Codex

7.51%
按下载量换算6

Antigravity

2.93%
按下载量换算2

安全审计

暂无安全审计结果可展示。

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills