Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计异常

skill-seekers技能寻求者

Agent Skill

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

总安装

593

周安装

25

GitHub Stars

14

下载量

418
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/bahayonghang/my-claude-code-settings --skill skill-seekers

简介

用于查找、检索和筛选特定领域的信息资源。skill-seekers 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合在定向研究或专项调查任务中提供支持。
  • 通过 GitHub 仓库安装,兼容 Codex、Claude 等宿主环境。
  • 支持基于时间范围、作者或机构等多维度过滤。
  • 检索结果需结合上下文判断适用性和权威性。

SKILL.md

Skill Seekers

Prerequisites

pip install skill-seekers
# Or: uv pip install skill-seekers

Commands

SourceCommand
Local codeskill-seekers-codebase --directory./path
Docs URLskill-seekers scrape --url https://...
GitHubskill-seekers github --repo owner/repo
PDFskill-seekers pdf --file doc.pdf

Quick Start

# Analyze local codebase
skill-seekers-codebase --directory /path/to/project --output output/my-skill/

# Package for Claude
yes | skill-seekers package output/my-skill/ --no-open

Options

FlagDescription
--depth surface/deep/fullAnalysis depth
--skip-patternsSkip pattern detection
--skip-test-examplesSkip test extraction
--ai-mode none/api/localAI enhancement

Skill_Seekers Codebase

Description

Local codebase analysis and documentation generated from code analysis.

Path: /home/lyh/Documents/Skill_Seekers Files Analyzed: 140 Languages: Python Analysis Depth: deep

When to Use This Skill

Use this skill when you need to:

  • Understand the codebase architecture and design patterns
  • Find implementation examples and usage patterns
  • Review API documentation extracted from code
  • Check configuration patterns and best practices
  • Explore test examples and real-world usage
  • Navigate the codebase structure efficiently

⚡ Quick Reference

Codebase Statistics

Languages:

  • Python: 140 files (100.0%)

Analysis Performed:

  • ✅ API Reference (C2.5)
  • ✅ Dependency Graph (C2.6)
  • ✅ Design Patterns (C3.1)
  • ✅ Test Examples (C3.2)
  • ✅ Configuration Patterns (C3.4)
  • ✅ Architectural Analysis (C3.7)

🎨 Design Patterns Detected

*From C3.1 codebase analysis (confidence > 0.7)*

  • Factory: 44 instances
  • Strategy: 28 instances
  • Observer: 8 instances
  • Builder: 6 instances
  • Command: 3 instances

*Total: 90 high-confidence patterns*

*See references/patterns/ for complete pattern analysis*

📝 Code Examples

*High-quality examples extracted from test files (C3.2)*

Workflow: test full join multigraph (complexity: 1.00)

G = nx.MultiGraph()
G.add_node(0)
G.add_edge(1, 2)
H = nx.MultiGraph()
H.add_edge(3, 4)
U = nx.full_join(G, H)
assert set(U) == set(G) | set(H)
assert len(U) == len(G) + len(H)
assert len(U.edges()) == len(G.edges()) + len(H.edges()) + len(G) * len(H)
U = nx.full_join(G, H, rename=('g', 'h'))
assert set(U) == {'g0', 'g1', 'g2', 'h3', 'h4'}
assert len(U) == len(G) + len(H)
assert len(U.edges()) == len(G.edges()) + len(H.edges()) + len(G) * len(H)
G = nx.MultiDiGraph()
G.add_node(0)
G.add_edge(1, 2)
H = nx.MultiDiGraph()
H.add_edge(3, 4)
U = nx.full_join(G, H)
assert set(U) == set(G) | set(H)
assert len(U) == len(G) + len(H)
assert len(U.edges()) == len(G.edges()) + len(H.edges()) + len(G) * len(H) * 2
U = nx.full_join(G, H, rename=('g', 'h'))
assert set(U) == {'g0', 'g1', 'g2', 'h3', 'h4'}
assert len(U) == len(G) + len(H)
assert len(U.edges()) == len(G.edges()) + len(H.edges()) + len(G) * len(H) * 2

Instantiate DataFrame: See gh-7407 (complexity: 1.00)

df = pd.DataFrame([[0, 1, 0, 0], [0, 0, 1, 0], [0, 0, 0, 1], [0, 0, 0, 0]], index=[1010001, 2, 1, 1010002], columns=[1010001, 2, 1, 1010002])

test edge removal (complexity: 1.00)

embedding_expected.set_data({1: [2, 7], 2: [1, 3, 4, 5], 3: [2, 4], 4: [3, 6, 2], 5: [7, 2], 6: [4, 7], 7: [6, 1, 5]})
assert nx.utils.graphs_equal(embedding, embedding_expected)

Instantiate Graph: test graph1 (complexity: 1.00)

G = nx.Graph([(3, 10), (2, 13), (1, 13), (7, 11), (0, 8), (8, 13), (0, 2), (0, 7), (0, 10), (1, 7)])

Instantiate Graph: test graph2 (complexity: 1.00)

G = nx.Graph([(1, 2), (4, 13), (0, 13), (4, 5), (7, 10), (1, 7), (0, 3), (2, 6), (5, 6), (7, 13), (4, 8), (0, 8), (0, 9), (2, 13), (6, 7), (3, 6), (2, 8)])

Configuration example: test davis birank (complexity: 1.00)

answer = {'Laura Mandeville': 0.07, 'Olivia Carleton': 0.04, 'Frances Anderson': 0.05, 'Pearl Oglethorpe': 0.04, 'Katherina Rogers': 0.06, 'Flora Price': 0.04, 'Dorothy Murchison': 0.04, 'Helen Lloyd': 0.06, 'Theresa Anderson': 0.07, 'Eleanor Nye': 0.05, 'Evelyn Jefferson': 0.07, 'Sylvia Avondale': 0.07, 'Charlotte McDowd': 0.05, 'Verne Sanderson': 0.05, 'Myra Liddel': 0.05, 'Brenda Rogers': 0.07, 'Ruth DeSand': 0.05, 'Nora Fayette': 0.07, 'E8': 0.11, 'E7': 0.09, 'E10': 0.07, 'E9': 0.1, 'E13': 0.05, 'E3': 0.07, 'E12': 0.07, 'E11': 0.06, 'E2': 0.05, 'E5': 0.08, 'E6': 0.08, 'E14': 0.05, 'E4': 0.06, 'E1': 0.05}

Configuration example: test davis birank with personalization (complexity: 1.00)

answer = {'Laura Mandeville': 0.29, 'Olivia Carleton': 0.02, 'Frances Anderson': 0.06, 'Pearl Oglethorpe': 0.04, 'Katherina Rogers': 0.04, 'Flora Price': 0.02, 'Dorothy Murchison': 0.03, 'Helen Lloyd': 0.04, 'Theresa Anderson': 0.08, 'Eleanor Nye': 0.05, 'Evelyn Jefferson': 0.09, 'Sylvia Avondale': 0.05, 'Charlotte McDowd': 0.06, 'Verne Sanderson': 0.04, 'Myra Liddel': 0.03, 'Brenda Rogers': 0.08, 'Ruth DeSand': 0.05, 'Nora Fayette': 0.05, 'E8': 0.11, 'E7': 0.1, 'E10': 0.04, 'E9': 0.07, 'E13': 0.03, 'E3': 0.11, 'E12': 0.04, 'E11': 0.03, 'E2': 0.1, 'E5': 0.11, 'E6': 0.1, 'E14': 0.03, 'E4': 0.06, 'E1': 0.1}

test junction tree directed confounders (complexity: 1.00)

J.add_edges_from([(('C', 'E'), ('C',)), (('C',), ('A', 'B', 'C')), (('A', 'B', 'C'), ('C',)), (('C',), ('C', 'D'))])
assert nx.is_isomorphic(G, J)

test junction tree directed cascade (complexity: 1.00)

J.add_edges_from([(('A', 'B'), ('B',)), (('B',), ('B', 'C')), (('B', 'C'), ('C',)), (('C',), ('C', 'D'))])
assert nx.is_isomorphic(G, J)

test junction tree undirected (complexity: 1.00)

J.add_edges_from([(('A', 'D'), ('A',)), (('A',), ('A', 'C')), (('A', 'C'), ('C',)), (('C',), ('B', 'C')), (('B', 'C'), ('C',)), (('C',), ('C', 'E'))])
assert nx.is_isomorphic(G, J)

*See references/test_examples/ for all extracted examples*

⚙️ Configuration Patterns

*From C3.4 configuration analysis*

Configuration Files Analyzed: 23 Total Settings: 165 Patterns Detected: 0

Configuration Types:

  • unknown: 23 files

*See references/config_patterns/ for detailed configuration analysis*

📚 Available References

This skill includes detailed reference documentation:

  • API Reference: references/api_reference/ - Complete API documentation
  • Dependencies: references/dependencies/ - Dependency graph and analysis
  • Patterns: references/patterns/ - Detected design patterns
  • Examples: references/test_examples/ - Usage examples from tests
  • Configuration: references/config_patterns/ - Configuration patterns

Generated by Skill Seeker | Codebase Analyzer with C3.x Analysis

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenCode

26.97%
按下载量换算113

Claude Code

26.43%
按下载量换算110

Gemini CLI

18.59%
按下载量换算78

Antigravity

13.72%
按下载量换算57

Codex

9.15%
按下载量换算38

windsurf

3.22%
按下载量换算13

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills