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

grey-haven-skill-creator灰色港湾技能创建器

Agent Skill

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

总安装

214

周安装

9

GitHub Stars

24

下载量

75
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/greyhaven-ai/claude-code-config --skill grey-haven-skill-creator

简介

用于查找、检索和筛选相关信息。grey-haven-skill-creator 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合根据关键词或任务场景快速定位候选结果。
  • 使用时需结合来源仓库和原始 README 核验具体用法。
  • 安装前建议确认权限范围和维护状态。
  • 注意是否会触发联网、命令执行或文件读写操作。

SKILL.md

Skill Creator

Guide for creating effective skills that extend Claude's capabilities.

About Skills

Skills are modular, self-contained packages that extend Claude's capabilities by providing specialized knowledge, workflows, and tools. Think of them as "onboarding guides" for specific domains—they transform Claude from a general-purpose agent into a specialized agent equipped with procedural knowledge.

What Skills Provide

  1. Specialized workflows - Multi-step procedures for specific domains
  2. Tool integrations - Instructions for working with specific file formats or APIs
  3. Domain expertise - Company-specific knowledge, schemas, business logic
  4. Bundled resources - Scripts, references, and assets for complex tasks

Core Principles

Concise is Key

The context window is a public good. Skills share context with system prompts, conversation history, other skills, and user requests.

Default assumption: Claude is already very smart. Only add context Claude doesn't already have. Challenge each piece: "Does Claude really need this?" and "Does this justify its token cost?"

Prefer concise examples over verbose explanations.

Set Appropriate Degrees of Freedom

Match specificity to task fragility:

Freedom LevelWhen to UseFormat
HighMultiple approaches valid, context-dependentText-based instructions
MediumPreferred pattern exists, some variation OKPseudocode or parameterized scripts
LowOperations fragile, consistency criticalSpecific scripts, few parameters

Think of Claude exploring a path: narrow bridge needs guardrails (low freedom), open field allows many routes (high freedom).

Grey Haven Skill Anatomy

Every Grey Haven skill follows this structure:

skill-name/
├── SKILL.md (required)
│   ├── YAML frontmatter (required)
│   │   ├── name: grey-haven-{skill-name}
│   │   ├── description: (comprehensive, includes triggers)
│   │   ├── skills: (optional, v2.0.43)
│   │   └── allowed-tools: (optional, v2.0.74)
│   └── Markdown body (required)
└── Bundled Resources (optional)
    ├── scripts/      - Executable code
    ├── references/   - Documentation for context
    ├── examples/     - Usage examples
    ├── templates/    - Reusable templates
    └── checklists/   - Validation checklists

SKILL.md Frontmatter

---
name: grey-haven-your-skill
description: "What the skill does. When to use it. Trigger phrases."
# v2.0.43: Auto-load these skills when this skill activates
skills:
  - grey-haven-code-style
  - grey-haven-testing-strategy
# v2.0.74: Restrict available tools when skill is active
allowed-tools:
  - Read
  - Write
  - Bash
  - TodoWrite
---

Description is critical: This is the primary trigger mechanism. Include:

  • What the skill does
  • When to use it
  • Specific trigger phrases

Bundled Resources

DirectoryPurposeWhen to Include
scripts/Executable codeRepeated code, deterministic operations
references/DocumentationDetailed guides, schemas, API docs
examples/Usage examplesComplex patterns, before/after
templates/Reusable formatsBoilerplate, standard structures
checklists/ValidationQuality gates, pre-flight checks

Progressive Disclosure

Skills use a three-level loading system:

  1. Metadata (~100 words) - Always in context
  2. SKILL.md body (<5K words) - When skill triggers
  3. Bundled resources - As needed by Claude

Keep SKILL.md under 500 lines. Split into reference files when approaching this limit. Always reference split files from SKILL.md with clear "when to read" guidance.

Skill Creation Process

Step 1: Understand with Concrete Examples

Before creating, understand concrete usage:

  • "What functionality should this skill support?"
  • "Give examples of how this skill would be used."
  • "What would a user say that should trigger this skill?"

Conclude when you clearly understand the functionality needed.

Step 2: Plan Reusable Contents

Analyze each example:

  1. How would you execute this from scratch?
  2. What scripts, references, assets would help when doing this repeatedly?

Example analyses:

Skill GoalAnalysisResource Needed
Rotate PDFsSame code every timescripts/rotate_pdf.py
Build webappsSame boilerplate each timetemplates/react-starter/
Query BigQueryRediscover schemas each timereferences/schema.md

Step 3: Initialize the Skill

Run the initialization script:

python scripts/init_skill.py my-skill --path grey-haven-plugins/core/skills

This creates:

  • SKILL.md template with TODO placeholders
  • Example resource directories
  • Proper structure for Grey Haven

Step 4: Edit the Skill

Writing Guidelines:

  • Use imperative/infinitive form
  • Challenge every paragraph's token cost
  • Prefer examples over explanations

Frontmatter:

  • name: Use grey-haven- prefix
  • description: Include what + when + triggers
  • skills: Optional dependent skills
  • allowed-tools: Optional tool restrictions

Body:

  • Start with clear overview
  • Include practical examples
  • Reference bundled resources with "when to read" guidance

Design Patterns (see references/):

  • Multi-step processes: See references/workflows.md
  • Output formats: See references/output-patterns.md

Step 5: Test and Iterate

After creating:

  1. Use the skill on real tasks
  2. Notice struggles or inefficiencies
  3. Update SKILL.md or resources
  4. Test again

What NOT to Include

Skills should only contain essential files. Do NOT create:

  • README.md (SKILL.md is the readme)
  • INSTALLATION_GUIDE.md
  • CHANGELOG.md
  • User-facing documentation
  • Process documentation

The skill is for Claude, not humans. Include only what helps Claude do the job.

Grey Haven Conventions

Naming

  • Skill name: grey-haven-{domain}-{function}
  • Directory: skills/{skill-name}/
  • Examples: grey-haven-tdd-python, grey-haven-api-design-standards

Description Format

description: "{What it does}. {When to use it}. Triggers: '{trigger1}', '{trigger2}', '{trigger3}'."

File Organization

skill-name/
├── SKILL.md
├── examples/
│   └── practical-example.md
├── references/
│   └── detailed-guide.md
├── templates/
│   └── reusable-template.md
└── checklists/
    └── validation-checklist.md

Quick Start

# Initialize new skill
python scripts/init_skill.py my-new-skill --path grey-haven-plugins/core/skills

# Edit the generated SKILL.md
# Add resources as needed
# Test with real usage

Skill Version: 1.0 Based on: Anthropic skill-creator (Dec 2025) Last Updated: 2025-01-15

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.08%
按下载量换算25

Claude

29.16%
按下载量换算22

Cursor

21.01%
按下载量换算16

Gemini CLI

10.11%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills