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

skills-discovery技能发现

Agent Skill

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

总安装

222

周安装

9

GitHub Stars

26

下载量

70
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/outfitter-dev/agents --skill skills-discovery

简介

skills-discovery 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于技能库探索、功能发现或 Agent 能力扩展等场景。
  • 通过关键词匹配返回可用技能列表、使用说明或集成方式。
  • 安装命令为 npx skills add https://github.com/outfitter-dev/agents --skill skills-discovery。
  • 使用前请确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。

SKILL.md

Skills Discovery

Find community skills and plugins, evaluate quality and safety before use.

<when_to_use>

  • Searching for existing skills before building from scratch
  • Evaluating community plugins for safety and quality
  • Finding inspiration for skill design patterns
  • Auditing plugins before installation

NOT for: creating new skills (use skills-dev), validating your own skills (use skills-dev)

</when_to_use>

Discovery Workflow

  1. Search — Find candidates via GitHub topics or code search
  2. Filter — Apply quality heuristics to shortlist
  3. Audit — Security review before installation
  4. Adapt — Customize or extract patterns for your use

GitHub Discovery

Topic Pages

High-signal discovery starting points:

TopicContentURL
claude-code-pluginPluginshttps://github.com/topics/claude-code-plugin
claude-code-plugin-marketplaceMarketplaceshttps://github.com/topics/claude-code-plugin-marketplace
claude-code-skillsSkill packshttps://github.com/topics/claude-code-skills
claude-code-skillIndividual skillshttps://github.com/topics/claude-code-skill

Code Search Patterns

Precise searches for specific artifacts:

# Find SKILL.md files in .claude/skills paths
filename:SKILL.md path:.claude/skills

# Find marketplace configurations
".claude-plugin/marketplace.json"

# Find plugin manifests
".claude-plugin/plugin.json"

# Find hook configurations
"PreToolUse" AND hooks

# Find skills with specific features
filename:SKILL.md "context: fork"
filename:SKILL.md "allowed-tools"
filename:SKILL.md "disable-model-invocation"

Recency Filters

Focus on actively maintained projects (adjust dates as needed):

# Updated in last 90 days (calculate: date -v-90d +%Y-%m-%d)
pushed:>YYYY-MM-DD

# Updated since plugins era (Oct 2025+)
pushed:>2025-10-01

Official Sources

SourceTrust LevelNotes
anthropics/claude-plugins-officialHighCurated, reviewed
agentskills/agentskillsHighSpec + reference skills
platform.claude.com docsHighOfficial patterns
Community topicsMediumPopularity ≠ quality
"Awesome" listsLow-MediumCurated but not audited

Quality Heuristics

Real Usage Signals

SignalGoodSuspicious
UpdatesRecent commits, active issuesStale for 6+ months
StarsSteady growthSudden spike (star farming)
Issues/PRsOpen and being addressedMany open, no responses
Install docsUses official commands"curl \bash" installs
DependenciesMinimal, explainedMany unexplained deps

Content Quality

CheckGoodBad
DescriptionClear WHAT + WHEN + TRIGGERSVague "helps with files"
allowed-toolsMinimal, justifiedFull tool access
disable-model-invocationUsed for side effectsMissing for deploy/commit
ScriptsDocumented, minimalObfuscated, complex
HooksObvious purposeHidden network calls

Marketplaces

Good SignRed Flag
Version pinningFloating branches
Listed sources visibleOpaque references
Clear update policySilent auto-updates
Curated with criteria"Everything goes"

Security Audit

Threat Model

Installing skills/plugins = running code. Treat with same care as npm packages.

SurfaceRiskMitigation
Skills with BashCommand executionReview allowed-tools
HooksLifecycle interceptionReview hook scripts
MCP serversExternal connectionsReview endpoints
Preprocessing !Shell before thinkingReview commands

Audit Checklist

Before installing, review:

For Skills:

  • Read SKILL.md frontmatter (allowed-tools, disable-model-invocation)
  • Check for scripts/ directory — review any scripts
  • Search for ! ` `` preprocessing commands
  • Verify no secrets/credentials in files

For Plugins:

  • Read.claude-plugin/plugin.json
  • Check for hooks/ — review hook scripts
  • Check for.mcp.json — review MCP endpoints
  • Review all referenced skill SKILL.md files

For Hooks:

  • Understand exit code semantics (0=allow, 2=block)
  • Check for network calls in hook scripts
  • Verify no data exfiltration patterns

Sandboxing

When running untrusted skills:

  1. Restrict tools — Start with minimal allowed-tools, expand as needed
  2. Isolate context — Use context: fork to limit blast radius
  3. Block side effects — Add disable-model-invocation: true initially
  4. Monitor first run — Watch tool calls on first execution

Safe First Run

# Test skill in restricted mode:
---
name: untrusted-skill-test
allowed-tools: Read, Grep, Glob  # read-only first
context: fork                     # isolated
disable-model-invocation: true   # explicit only
---

Expand permissions only after reviewing behavior.

Use Case Catalog

Common skill categories with examples (for inspiration, not endorsement):

Workflow Automation

PatternWhat It DoesKey Features
PR workflowsSummarize, review, update PRsPreprocessing with gh
Issue pipelinesTriage → implement → shipArtifact-based state
Release automationPreflight → deploy → verifySide-effect gates

Code Quality

PatternWhat It DoesKey Features
Spec gatesVerify scope before codingFork for clean analysis
Adversarial reviewSecurity-focused code reviewThreat model in artifacts
Refactor loopsSafe read-only explore firstTool restrictions

Domain Skills

PatternWhat It DoesKey Features
Framework-specificRails, React, etc conventionsNested skill discovery
DB-awareSchema injection for queriesPreprocessing with psql
Platform integrationsJira, Linear, GitHubMCP or API wrappers

Safety & Guardrails

PatternWhat It DoesKey Features
Safety netsBlock irreversible operationsPreToolUse hooks
HardstopsRequire human acknowledgmentExit code blocking
Test gatesEnforce tests before commitHook enforcement

Context Management

PatternWhat It DoesKey Features
Memory pluginsPersist across sessionsMCP-backed storage
Context ledgersRolling state in filesHook-driven updates
Constraint filesMinimal "always load" contextShared conventions

Extraction Patterns

When you find a useful skill, extract patterns rather than copying wholesale:

  1. Identify the pattern — What makes it work?
  2. Adapt to your context — Match your conventions
  3. Minimize scope — Take only what you need
  4. Document provenance — Note where the pattern came from

ALWAYS:

  • Verify recency (prefer active projects)
  • Review security surfaces before install
  • Start with restricted permissions
  • Document what you installed and why

NEVER:

  • Blindly install from unknown sources
  • Trust stars as quality signal
  • Run obfuscated scripts
  • Skip hook script review

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.69%
按下载量换算23

Claude

32.38%
按下载量换算23

Cursor

16.79%
按下载量换算12

Gemini CLI

9.13%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills