Token导航 LogoToken导航TokenDH.com
开发执行命令github未标认证来源可访问许可证需确认审计提醒

skill-seekers-ref技能寻求者参考

Agent Skill

skill-seekers-ref 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

326

周安装

14

GitHub Stars

24

下载量

114
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/tenequm/skills --skill skill-seekers-ref

简介

skill-seekers-ref 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合整理项目状态与变更。

  • 适用于围绕仓库状态、代码变更或协作事项进行信息梳理的场景。
  • 通过 npx skills add 命令从 GitHub 安装,需结合原始 README 确认具体用法。
  • 安装前建议确认权限范围、维护状态及是否触发联网或文件操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Skill Seekers

Skill Seekers converts documentation, GitHub repos, PDFs, codebases, videos, and 10+ other source types into structured AI skills. One command takes a source and produces a platform-ready skill package.

Install: pip install skill-seekers

Core Concept

The pipeline is: Source -> Extract -> Analyze -> Organize -> (Enhance) -> Package

The create command handles the full pipeline automatically by detecting source type from the input:

# URL -> docs scraping
skill-seekers create https://react.dev --target claude

# owner/repo -> GitHub scraping
skill-seekers create facebook/react --target claude

# ./path -> local codebase analysis
skill-seekers create ./my-project --target claude

# file.pdf -> PDF extraction
skill-seekers create ./manual.pdf --target claude

Quick Start

# Create a skill from docs (simplest case)
skill-seekers create https://tailwindcss.com/docs --target claude --max-pages 50

# With AI enhancement (much higher quality)
skill-seekers create https://tailwindcss.com/docs --target claude --max-pages 50 --enhance-workflow default

# Upload to Claude
skill-seekers upload output/tailwindcss-claude.zip --target claude

# Or install directly to an agent's directory
skill-seekers install-agent output/tailwindcss/ --agent claude

Presets for Speed Control

The -p flag controls analysis depth:

PresetTimeWhen to Use
-p quick1-2 minPrototyping, testing the pipeline
-p standard5-10 minDefault, good balance
-p comprehensive20-60 minProduction skills, deep analysis
skill-seekers create https://docs.astral.sh/ruff --target claude -p quick

Source Types

Documentation Websites

skill-seekers create https://react.dev --target claude --max-pages 100

# With parallel workers for speed
skill-seekers scrape --url https://react.dev --workers 5 --async

# Resume interrupted scrape
skill-seekers resume --list
skill-seekers resume <job-id>

The scraper checks for llms.txt first (10x faster when available), then falls back to BFS page crawling.

GitHub Repositories

skill-seekers create microsoft/TypeScript --target claude

# With local clone for unlimited analysis (bypasses API limits)
skill-seekers github --repo django/django --local-repo-path ./django-clone

# Skip issues/changelog to speed up
skill-seekers github --repo owner/repo --no-issues --no-changelog

Set a GitHub token for private repos and higher rate limits:

skill-seekers config --github

Local Codebases (C3.x Analysis)

Analyzes code patterns, architecture, tests, and config across 27+ languages:

skill-seekers analyze --directory ./my-project --preset standard

# Skip specific analysis phases
skill-seekers analyze --directory ./src --skip-patterns --skip-test-examples

C3.x detects: design patterns (Singleton, Factory, Observer...), test examples, config patterns (9 formats), architecture (MVC, MVVM...), and generates how-to guides.

PDFs

skill-seekers create ./handbook.pdf --target claude
skill-seekers pdf --pdf ./manual.pdf --name "product-manual"

Supports OCR for scanned documents.

Other Sources

Each has a dedicated subcommand with specific options:

SourceCommandKey Flags
Word docsskill-seekers word --docx file.docx
EPUB booksskill-seekers epub --epub file.epub
Videos/YouTubeskill-seekers video --url URL--visual, --whisper-model
Jupyter notebooksskill-seekers jupyter --notebook file.ipynb
OpenAPI specsskill-seekers openapi --spec spec.yaml--spec-url URL
PowerPointskill-seekers pptx
HTML filesskill-seekers html
RSS feedsskill-seekers rss
Man pagesskill-seekers manpage
Confluenceskill-seekers confluence
Notionskill-seekers notion
Slack/Discordskill-seekers chat --platform slack--channel, --max-messages
AsciiDocskill-seekers asciidoc

Multi-Source (Unified)

Combine docs + GitHub + PDF into one skill using a config file:

skill-seekers unified --config configs/my-project.json

Config file format - see references/config-and-workflows.md.

AI Enhancement

Enhancement transforms raw extraction (quality ~3/10) into polished skills (~9/10). It uses AI to extract best practices, create quick references, and improve organization.

Local Enhancement (Free with Claude Code)

skill-seekers enhance output/my-skill/
skill-seekers enhance output/my-skill/ --background   # non-blocking
skill-seekers enhance output/my-skill/ --daemon        # survives terminal close
skill-seekers enhance-status output/my-skill/          # check progress

API Enhancement

export ANTHROPIC_API_KEY=sk-ant-...
skill-seekers enhance output/my-skill/ --target claude

# Or Gemini / OpenAI
export GOOGLE_API_KEY=AIzaSy...
skill-seekers enhance output/my-skill/ --target gemini

Enhancement Workflows (v3.1.0+)

Workflow presets apply specific enhancement strategies:

# Built-in presets
skill-seekers enhance output/my-skill/ --enhance-workflow default
skill-seekers enhance output/my-skill/ --enhance-workflow security-focus
skill-seekers enhance output/my-skill/ --enhance-workflow api-documentation
skill-seekers enhance output/my-skill/ --enhance-workflow architecture-comprehensive
skill-seekers enhance output/my-skill/ --enhance-workflow minimal

# Chain multiple workflows
skill-seekers create URL --enhance-workflow security-focus --enhance-workflow minimal

# Inline custom stage
skill-seekers create URL --enhance-stage 'perf:Analyze for performance bottlenecks'

# List / manage workflows
skill-seekers workflows list
skill-seekers workflows show security-focus
skill-seekers workflows copy default    # copy to ~/.config/skill-seekers/workflows/ for editing
skill-seekers workflows add ./my-workflow.yaml
skill-seekers workflows validate my-workflow

See references/config-and-workflows.md for custom workflow YAML format.

Output Formats and Packaging

Package skills for 16+ platforms:

# Package for a specific platform
skill-seekers package output/my-skill/ --target claude
skill-seekers package output/my-skill/ --target gemini
skill-seekers package output/my-skill/ --target cursor
skill-seekers package output/my-skill/ --target openai

# Upload directly
skill-seekers upload output/my-skill.zip --target claude

# Install to agent directory
skill-seekers install-agent output/my-skill/ --agent claude
skill-seekers install-agent output/my-skill/ --agent cursor
skill-seekers install-agent output/my-skill/ --agent all

Supported targets:

  • AI platforms: claude, gemini, openai
  • Coding assistants: cursor, windsurf, cline, continue
  • RAG/vector: langchain, llamaindex, chroma, faiss, haystack, qdrant, weaviate, pinecone
  • Generic: markdown, json, yaml

RAG Chunking

For vector database targets, enable semantic chunking:

skill-seekers package output/my-skill/ --target chroma --chunk-for-rag --chunk-tokens 512 --chunk-overlap-tokens 50

Complete Workflow (install command)

The install command runs the full pipeline: fetch -> scrape -> enhance -> package -> upload:

skill-seekers install --config configs/react.json
skill-seekers install --config react --no-upload    # skip upload step
skill-seekers install --config react --dry-run      # preview only

Quality Scoring

Check skill quality before shipping:

skill-seekers quality output/my-skill/
skill-seekers quality output/my-skill/ --report --threshold 7

Utility Commands

# Estimate page count before scraping
skill-seekers estimate configs/react.json

# Incremental update (no full rescrape)
skill-seekers update output/my-skill/ --check-changes
skill-seekers update output/my-skill/ --force

# Stream large files chunk by chunk
skill-seekers stream large-doc.md --output output/

# Configure tokens and API keys
skill-seekers config --show
skill-seekers config --github
skill-seekers config --api-keys
skill-seekers config --test

Common Patterns

"I want to create a skill from X docs quickly"

skill-seekers create https://docs.example.com --target claude -p quick --max-pages 30

"I want a production-quality skill"

skill-seekers create https://docs.example.com --target claude -p comprehensive --enhance-workflow default

"I want to analyze my local codebase"

skill-seekers analyze --directory ./my-project --preset comprehensive
skill-seekers enhance output/my-project/
skill-seekers install-agent output/my-project/ --agent claude

"I want skills for multiple platforms"

skill-seekers create https://docs.example.com -o output/my-skill
skill-seekers package output/my-skill/ --target claude
skill-seekers package output/my-skill/ --target cursor
skill-seekers package output/my-skill/ --target chroma --chunk-for-rag

"I want to keep skills up to date automatically"

Use CI/CD with the install command - see references/automation.md.

Reference Files

For detailed information on specific topics:

  • references/cli-commands.md - Full CLI reference with all flags for every command
  • references/config-and-workflows.md - Config file schema, unified configs, custom workflow YAML format
  • references/config-examples.md - Ready-to-use config examples for common frameworks
  • references/automation.md - CI/CD integration, Docker, batch processing

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.96%
按下载量换算40

Claude

30.61%
按下载量换算35

Cursor

20.38%
按下载量换算23

Gemini CLI

10.08%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills