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

skill-builder技能构建

Agent Skill

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

总安装

594

周安装

25

GitHub Stars

16

下载量

208
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/mike-coulbourn/claude-vibes --skill skill-builder

简介

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

  • 适合根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装并使用该技能。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Skill Builder

Build production-quality Skills for Claude Code with proper structure, discoverable descriptions, and best practices.

Quick Reference

Description Formula: [What it does] + [When to use it] + [Trigger terms users say]

Name Rules: Lowercase letters, numbers, hyphens only; max 64 characters; no spaces

Description Rules: Max 1024 characters; must be specific with trigger terms

The Skill Creation Workflow

Phase 1: Requirements Gathering

Use AskUserQuestion to understand what they need:

  1. What should the Skill do?

- What capability or expertise should it provide? - What tasks should it help with?

  1. When should it activate?

- What scenarios or contexts? - What words/phrases would users say? - What file types or operations?

  1. Scope decision

- Personal Skill (~/.claude/skills/) - just for this user - Project Skill (.claude/skills/) - shared with team via git

  1. Structure complexity

- Single file (simple instructions/examples) - Multi-file (scripts, templates, extensive docs)

  1. Tool restrictions

- Full access (default) - Restricted (allowed-tools field for read-only or limited scope)

Phase 2: Description Crafting

The description determines discoverability. Use this proven formula:

[Specific operations] + [When to use] + [Trigger terms]

Example walkthrough:

  • ❌ "Helps with documents" (too vague)
  • ✅ "Extract text and tables from PDF files, fill forms, merge documents. Use when working with PDF files or when user mentions PDFs, forms, or document extraction."

Key elements:

  1. Specific operations: List concrete actions (extract, analyze, generate, validate)
  2. When to use: Scenarios and contexts (when working with X, during Y, for Z tasks)
  3. Trigger terms: Exact words users would say (PDF, forms, commit message, data analysis)

See examples/descriptions.md for more patterns.

Phase 3: Name Validation

Validate and format the name:

  • Convert to lowercase
  • Replace spaces with hyphens
  • Remove invalid characters (only allow: a-z, 0-9, -)
  • Ensure max 64 characters
  • Make it descriptive but concise

Examples:

  • "My PDF Tool" → "my-pdf-tool"
  • "Code Reviewer!!!" → "code-reviewer"
  • "data_analysis" → "data-analysis"

Phase 4: Structure Planning

Single file when:

  • Instructions and examples fit comfortably in one file
  • No scripts or utilities needed
  • Straightforward workflow

Multi-file when:

  • Extensive documentation (split into reference.md)
  • Scripts or utilities needed (scripts/ directory)
  • Templates or boilerplate (templates/ directory)
  • Many examples (examples.md)

Recommended structure for complex Skills:

skill-name/
├── SKILL.md           # Core instructions (loaded first)
├── reference.md       # Detailed API/reference (loaded if needed)
├── examples.md        # Additional examples (loaded if needed)
├── scripts/           # Utility scripts
│   ├── helper.py
│   └── process.sh
└── templates/         # Template files
    └── template.txt

Phase 5: Implementation

Create the directory

# Personal Skill
mkdir -p ~/.claude/skills/skill-name

# Project Skill
mkdir -p .claude/skills/skill-name

# Multi-file structure
mkdir -p ~/.claude/skills/skill-name/{templates,scripts,examples}

Write SKILL.md

Template structure:

---
name: skill-name
description: [Use the formula from Phase 2]
allowed-tools: Read, Grep, Glob  # Optional: only if restricting tools
---

# Skill Name

Brief introduction explaining what this Skill does.

## Quick Start

Provide the most common use case with a concrete example.

## Instructions

Step-by-step guidance for Claude:

1. [First step with specific actions]
2. [Second step with expected behavior]
3. [Continue pattern]

## Examples

Show concrete code examples:

Example code that demonstrates usage


## Best Practices

- Key principle or pattern
- Important consideration
- Common pitfall to avoid

## Requirements

List any dependencies:

pip install required-package

Add supporting files if multi-file

Reference from SKILL.md:

For detailed API reference, see [reference.md](reference.md).

Use the helper script:

python scripts/helper.py input.txt

Phase 6: Validation

Before finalizing, check:

  • [ ] Description follows formula (what + when + triggers)
  • [ ] Description under 1024 characters
  • [ ] Name is lowercase-with-hyphens, under 64 chars
  • [ ] YAML has opening and closing ---
  • [ ] YAML uses spaces not tabs
  • [ ] Instructions are clear and actionable
  • [ ] Examples are concrete and tested
  • [ ] Dependencies are documented
  • [ ] Tool restrictions (if any) are appropriate

See reference/validation-checklist.md for complete checklist.

Phase 7: Testing

  1. Restart Claude Code (required for Skills to load)
  1. Test discovery:

- Ask using trigger terms from your description - Verify Skill activates automatically - Try variations of trigger phrases

  1. Test workflow:

- Follow instructions as Claude - Verify all examples work - Check edge cases

  1. Debug if needed:
   # Check Skill was loaded
   # Ask: "What Skills are available?"

   # View Skill file
   cat ~/.claude/skills/skill-name/SKILL.md

   # Check for YAML syntax errors
   claude --debug

Common Issues and Solutions

Issue: Skill doesn't activate

Causes:

  1. Description too vague
  2. Trigger terms don't match user's words
  3. YAML syntax error
  4. Didn't restart Claude Code

Solutions:

  1. Make description more specific with exact trigger terms
  2. Add more synonyms and related terms
  3. Validate YAML (check --- delimiters, spaces not tabs)
  4. Restart Claude Code

Issue: Skill activates when it shouldn't

Causes:

  1. Description too broad
  2. Overlapping with other Skills

Solutions:

  1. Narrow description scope
  2. Add specific context (file types, operations)
  3. Consider splitting into focused Skills

Issue: YAML syntax errors

Common mistakes:

  • Missing opening --- (line 1)
  • Missing closing --- (before Markdown content)
  • Using tabs instead of spaces
  • Unquoted strings with special characters

Fix:

---
name: skill-name
description: Description text here
---

# Markdown starts here

Iteration and Improvement

After using a Skill, improve it:

  1. Track activation patterns: Does it activate when expected?
  2. Gather feedback: What's confusing or missing?
  3. Refine description: Add trigger terms from actual usage
  4. Expand examples: Add real scenarios encountered
  5. Update instructions: Clarify ambiguous steps

Educational Principles

When creating Skills, remember:

Why descriptions matter: Claude uses them for discovery. Vague descriptions = never activated.

Why multi-file structure works: Progressive loading. Claude reads SKILL.md first, supporting files only when needed. Keeps context focused.

Why tool restrictions are powerful: Creates safe, focused Skills. Read-only analysis Skills can't accidentally modify files.

Why trigger terms are crucial: Users don't know your Skill exists. They ask questions naturally. Trigger terms bridge their words to your Skill.

Quick Templates

Basic Skill template: templates/basic-skill.md

Advanced multi-file template: templates/advanced-skill.md

Description examples: examples/descriptions.md

Tips for Great Skills

  1. Be specific in descriptions - exact operations, file types, scenarios
  2. Include trigger synonyms - users say things differently
  3. Start simple, expand later - single file first, add complexity when needed
  4. Test with real requests - use actual words users would say
  5. Document dependencies clearly - don't assume packages are installed
  6. Provide concrete examples - show don't tell
  7. Make instructions actionable - specific steps, not vague guidance
  8. Consider scope carefully - personal for experimentation, project for team
  9. Use tool restrictions wisely - read-only Skills for analysis/review
  10. Iterate based on usage - refine trigger terms from real activation patterns

Next Steps

After creating a Skill:

  1. Share with team (if project Skill, commit to git)
  2. Document in project CLAUDE.md if it's a pattern others should know
  3. Create related Skills for connected workflows
  4. Consider packaging multiple Skills as a plugin for wider distribution

Remember: Great Skills have specific descriptions with trigger terms. That's the difference between a Skill that gets used and one that never activates.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

29.98%
按下载量换算62

OpenCode

25%
按下载量换算52

Gemini CLI

16.4%
按下载量换算34

Antigravity

12.49%
按下载量换算26

Codex

6.91%
按下载量换算14

trae

3.3%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills