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

create-expert-skill创造专家技能

Agent Skill

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

总安装

480

周安装

20

GitHub Stars

14

下载量

160
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

create-expert-skill 用于将领域专业知识转化为生产就绪的 AI 技能,融合行业规则与系统理解。

  • 它强调避免“有智能但无常识”的问题,要求同时掌握领域知识和实际系统运作方式。
  • 适用于金融、医疗、法律等专业领域自动化处理,提升 AI 助手在实际工作中的可靠性。
  • 失败常见原因是缺乏行业特定规则或系统上下文,需针对性补充这两方面知识。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Expert Skill Creation

Transform expert knowledge into production-ready skills that combine domain expertise with system-specific understanding.

Why Skills Fail in Production

AI assistants fail not because they lack intelligence, but because they lack:

  1. Domain Expertise — Industry-specific rules, edge cases, unwritten conventions
  2. Ontology Understanding — How YOUR systems, data structures, and workflows actually work

Both are required. Domain knowledge without system context produces generic output. System knowledge without domain expertise produces structurally correct but semantically wrong results.

Workflow

Assess → Discover (Expertise + Ontology) → Design → Create → Refine → Ship

Quick Assessment

Create a skill when:

  • Used 3+ times (or will be)
  • Follows consistent procedure
  • Saves >300 tokens per use
  • Requires specialized knowledge not in Claude's training
  • Must produce trusted output (not "close enough")

Don't create for: one-time tasks, basic knowledge Claude already has, rapidly changing content.

Discovery: Two Streams

Stream 1: Domain Expertise

Deep knowledge that transcends any specific company:

  • Industry standards and their versions
  • Professional conventions and best practices
  • Edge cases only practitioners know
  • Validation rules from specifications

*Example (LEDES validation):* LEDES 98B vs XML 2.0 formats, UTBMS code taxonomy, date format requirements, required vs optional fields.

Stream 2: Ontology Understanding

How the skill maps to specific systems and organizations:

  • Company-specific policies and constraints
  • Data structures and identifiers unique to the system
  • Cross-references between entities (timekeepers → IDs → rates)
  • Workflow states and transitions

*Example (LEDES validation):* Firm-specific timekeeper codes, matter numbering conventions, approved billing rates, outside counsel guideline requirements.

Discovery Questions

When starting, I'll ask about:

  1. Domain & Purpose — What problem? What industry standards apply?
  2. Ontology Requirements — What system-specific structures must the skill understand?
  3. Content Source — Conversation, docs, specifications, or files to distill from?
  4. Automation Potential — What can be deterministic (scripts)? What needs interpretation (LLM)?
  5. Complexity Level — Simple (SKILL.md only), Enhanced (+scripts), or Full (+resources)?

Skill Architecture

skill-name/
├── SKILL.md              # Layer 1: Core (300-500 tokens)
├── scripts/              # Layer 0: Automation (0 tokens to run)
│   └── validate.py
└── resources/            # Layer 2: Details (loaded selectively)
    └── ADVANCED.md

Layer 0 (Scripts): Free execution, structured JSON output Layer 1 (SKILL.md): Loaded when triggered - keep lean Layer 2 (Resources): Fetched only when specific section needed

Token Optimization

TechniqueInstead ofDo thisSavings
Scripts500 tokens explaining validationpython scripts/validate.py~450 tokens
ReferenceInline schema (200 tokens)Link to resources/schema.json~185 tokens
Layer 2Everything in SKILL.mdLink to resources/ADVANCED.md~750 tokens

Description Formula

<Action> <Object> for <Purpose>. Use when <Trigger>.

Example: "Validate billing data for system migration. Use before importing invoices."

Shipping

When content is finalized:

python scripts/package_skill.py skill-name 1.0

Creates skill-name-v1.0.zip with:

  • DIRECTORY_STRUCTURE.txt (auto-generated)
  • README.md with deployment instructions
  • All skill files properly organized

Templates & Examples

See resources/templates/ for:

  • Minimal skill template
  • Enhanced skill template
  • Script template

See resources/examples/ for domain-specific patterns.

Quality Checklist

Before shipping:

  • Description <30 tokens
  • SKILL.md <500 tokens (Layer 1)
  • Scripts for deterministic operations
  • Advanced content in resources/ (Layer 2)
  • Version in frontmatter
  • All referenced files exist

Version: 2.2 | Target: <500 tokens Layer 1

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

27.72%
按下载量换算44

windsurf

23.85%
按下载量换算38

OpenCode

17.73%
按下载量换算28

Codex

12.01%
按下载量换算19

Antigravity

7.86%
按下载量换算13

Gemini CLI

3.46%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills