Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问clear审计通过

skill-builder技能构建

Agent Skill

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

总安装

18,367

周安装

656

GitHub Stars

7

下载量

7,950
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/trevors/dot-claude --skill 'Skill Builder'

简介

skill-builder 用于查找、检索和筛选相关信息。

  • 适合根据关键词或任务场景快速定位候选结果。
  • 通过 npx skills add 命令安装,需结合来源仓库和 README 核验用法。
  • 安装前建议确认权限范围、维护状态及是否会触发联网或文件读写。
  • 当前介绍未说明是否支持技能模板生成,需进一步核实功能细节。

SKILL.md

Skill Builder

Create focused, discoverable Agent Skills that solve specific problems with clear descriptions and progressive disclosure patterns.

Workflow

1. Design the Skill

Before building, clarify:

  • What: What specific problem does this skill solve?
  • When: What triggers would tell Claude to use it? (3-5 concrete phrases)
  • Scope: Single capability or multiple related features?
  • Location: Personal (~/.claude/skills/) or project (.claude/skills/)?

Example:

  • What: "Generate clear commit messages from git diffs"
  • When: "user wants to create a commit", "reviewing staged changes", "explaining code changes"
  • Scope: Single capability (commit messages only, not other git tasks)
  • Location: Personal (useful across projects)

2. Write the Description

Description formula: <What it does>. Use when <trigger> or <trigger> or <trigger>

Good: "Generate clear commit messages from git diffs. Use when creating commits, reviewing staged changes, or explaining what changed in your code."

Weak: "Helps with git" (too vague, no triggers)

Effective trigger words:

  • Action verbs: extract, analyze, generate, review, validate, debug, migrate
  • File types: PDF,.xlsx, Python files, YAML
  • Domain terms: commits, staging, forms, spreadsheets, SwiftUI

Length: Name max 64 chars, Description max 1024 chars

3. Create Directory Structure

For minimal skills (single focused task):

my-skill/
└── SKILL.md

For skills needing supporting files:

my-skill/
├── SKILL.md              (main instructions - keep <200 lines)
└── REFERENCE.md          (detailed patterns, examples)

4. Write the SKILL.md

Minimal template (under 200 lines):

---
name: Your Skill Name
description: What it does and when to use. [Include 3-5 trigger phrases]
---

# Your Skill Name

## Quick Start

[One-paragraph overview of what this skill does]

## Instructions

1. Understand the requirement: [Ask clarifying questions]
2. [Core step with specific approach]
3. [Next step]
4. [Final step with verification]

## Examples

[2-3 concrete, realistic examples]

## Best Practices

- Do X in situation Y
- Avoid Z because...
- Use this pattern when...

5. Validate Skill Quality

Structure checklist:

  • YAML frontmatter valid (--- on line 1 and before content)
  • name under 64 characters
  • description under 1024 characters
  • description includes 3-5 trigger phrases and covers "what" + "when"
  • Markdown syntax correct (# for headers, ``` for code blocks)
  • All referenced files exist in skill directory

Discovery checklist:

  • Description could NOT describe a different skill
  • Trigger words match how users actually phrase problems
  • 3-5 concrete terms, not generic language
  • Clear distinction from related skills

Functionality checklist:

  • Instructions are step-by-step and clear
  • Examples are concrete, not abstract
  • Edge cases or limitations documented
  • Workflow is focused on single capability

6. Test Discovery

Generate 2-3 natural prompts matching your description:

For "Commit Message Generator":

  • ✅ "Write a commit message for these staged changes"
  • ✅ "Help me create a clear git commit"
  • ✅ "I need to describe what I just changed"
  • ❌ "Analyze my code" (wrong skill territory)

For "SwiftUI Engineer":

  • ✅ "Review my SwiftUI code for anti-patterns"
  • ✅ "Debug this view rendering issue"
  • ✅ "Help me migrate this from AppKit to SwiftUI"
  • ❌ "Write Python code" (wrong domain)

7. Common Patterns

Single-capability skill: One specific task (commit messages, PDF extraction)

Multi-mode skill: Related capabilities under one umbrella

  • SwiftUI Engineer: architecture, review, debugging, modernization
  • Keep main file 150-200 lines, use REFERENCE.md for detailed patterns
  • Main file explains "what mode to use when"

Structure Reference

Minimal Single-File

Use when: Focused skill with simple instructions

skill/
└── SKILL.md (100-150 lines)

With Progressive Disclosure

Use when: Related capabilities or lots of examples

skill/
├── SKILL.md (150-200 lines with quick patterns)
└── REFERENCE.md (300-400 lines with detailed examples and TOC)

Key Principles

Focused scope: One skill = one primary capability or related group

Specific triggers: Include domain terms users actually say

Progressive disclosure: Load details only when needed (use REFERENCE.md)

Concrete examples: Show real scenarios, not abstract ideas

One-level references: All references point from SKILL.md to supporting files only

No duplication: Don't repeat patterns across skills

Anti-Patterns to Avoid

Overloaded: "Does commits, reviews code, analyzes data, generates docs..." → Split into separate focused skills

Vague triggers: "Helps with stuff", "General purpose" → Add 3-5 specific domain terms

Nested references: SKILL.md → REFERENCE.md → DETAILS.md → Keep references flat (only one level deep)

Marketing language: "Amazing tool for awesome results!" → Be specific about what it does

When to Iterate

If Claude doesn't use your skill when expected:

  1. Check YAML syntax first (most common issue)
  2. Add more specific trigger words to description
  3. Verify description covers both "what" AND "when"
  4. Test with natural language phrasings
  5. Make sure trigger words match user vocabulary

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

27.61%
按下载量换算2,195

windsurf

23.98%
按下载量换算1,906

trae

19.78%
按下载量换算1,573

OpenCode

15.27%
按下载量换算1,214

Codex

8.11%
按下载量换算645

Antigravity

4.13%
按下载量换算328

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源字段存在多来源差异,先按来源优先级自动处理,无法消解时进入异常复核队列。

来源信息

继续浏览同类 Skills