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

skill-builder技能构建

Agent Skill

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

总安装

840

周安装

35

GitHub Stars

14

下载量

280
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/bntvllnt/agent-skills --skill skill-builder

简介

skill-builder 是统一的安全优先技能构建工具,强调简化变更和避免重叠描述。

  • 它偏好最小化改动,创建的技能应具备可测试性和防误用设计,保持单一清晰路由。
  • 适用于跨模型和多宿主环境的技能开发,支持创建、更新和删除操作,并生成助记符。
  • 使用时需遵循安全第一原则,避免引入复杂依赖或高风险命令执行。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Skill Builder

Unified, security-first skill builder.

This skill is intentionally opinionated:

  • Prefer no new skill if a simpler change works.
  • When you do create a skill, make it boring, testable, and hard to misuse.
  • Keep one clear router and avoid overlapping descriptions across skills.
  • Stay model-agnostic and harness-agnostic unless the target environment explicitly requires otherwise.

Operation Router

User intentOperationOutput
create/build/make/new skillCREATEnew skill folder + SKILL.md + only the companion files actually needed
update/modify/improve skillUPDATEminimal diff, keep scope stable
delete/remove skillDELETEremove skill + update any dependent references
add content/route/workflow to skillADDnew router row + minimal supporting procedure
validate skillVALIDATEevidence-backed validation report + fixes
rename skillRENAMEsafe rename + reference updates

Operation Selection Rules

Use the smallest operation that solves the request:

  • CREATE — new user-facing capability or clearly distinct intent/description domain.
  • UPDATE — improve an existing skill without changing its core scope.
  • ADD — add one new route, example, or sub-workflow inside the current scope.
  • RENAME — change identity/path/name while preserving mostly the same behavior.
  • DELETE — remove obsolete capability because it is superseded, merged, or no longer useful.
  • VALIDATE — inspect correctness without broadening scope.

If uncertain, default to UPDATE rather than CREATE.

What "Correct" Means

This skill treats "correct" as:

  • Conforms to the Agent Skills spec where the spec is explicit.
  • Uses progressive disclosure: concise SKILL.md, deeper docs only when needed.
  • Has unambiguous activation: specific description + non-overlapping neighboring skills.
  • Is safe: no secrets, no default-destructive commands, explicit confirmation boundaries.
  • Produces validation evidence instead of relying on vibes.

Phase 0: First-Principles Check (Mandatory)

Run this before any CREATE or UPDATE:

  1. QUESTION: what problem, for who, measured how?
  2. DELETE: can an existing skill, README section, script, or template solve it?
  3. SIMPLIFY: what is the smallest change that works?
  4. ACCELERATE: only after (2) and (3)
  5. AUTOMATE: create a new skill only if it will be reused

If the answer is "no skill", propose:

  • a README section
  • a small script
  • a usage snippet users can copy
  • a targeted update to an existing skill

Phase 1: Detect Target + Name

Required by the Agent Skills spec

  • Skill directory contains SKILL.md.
  • SKILL.md starts with valid YAML frontmatter.
  • name matches the parent directory name.
  • description explains what the skill does and when to use it.

Recommended by this skill

  • Keep SKILL.md focused on router + core rules.
  • Add references/, scripts/, assets/, or README.md only when they add real value.
  • Keep references one level deep from SKILL.md.
  • Put nonstandard metadata under metadata instead of inventing new top-level fields.

Naming

  • Use kebab-case (my-skill-name).
  • Avoid generic names (tools, helper).
  • Prefer names that describe a distinct job to be done.

Description design

The description field is the primary discovery surface.

Write it to cover:

  • what the skill does
  • when to use it
  • likely user wording, domain terms, and near-synonyms

Do not depend on a custom top-level triggers field for portability. If you want trigger examples, keep them in the body, metadata, or eval fixtures.

Confirmation Boundary

Safe without confirmation:

  • read-only inspection
  • drafting content
  • local validation
  • proposing diffs

Require confirmation before:

  • deleting files or folders
  • renaming skill folders
  • overwriting user-authored content
  • changing trigger semantics in ways that may alter discovery behavior
  • editing repo indexes or catalogs
  • installing dependencies or using networked side effects

Phase 2: CREATE Flow

Inputs (minimum)

  • Name
  • Goal + non-goals
  • Description draft that covers what + when
  • Optional capability constraints if the target client supports them

CREATE Steps

  1. Discover existing conventions in the target repo.
  2. Draft a micro-spec: goal, non-goals, router, safety boundary.
  3. Create /<skill-name>/SKILL.md with:

- frontmatter (name, description, optional spec-supported fields) - router table - safety and confirmation rules - short workflows or links to references/

  1. Add companion files only if justified:

- README.md for human-facing install/overview - references/ for deep workflows - scripts/ for executable helpers - assets/ for templates/resources

  1. Validate using the evidence rules below.
  2. If the repo maintains an index, update it.

Output Contract (CREATE)

Always return:

  • files created/edited
  • description added or changed
  • whether optional fields like compatibility, metadata, or allowed-tools were used
  • one minimal smoke-test prompt
  • validation report: pass/fail + evidence + remaining risks

Phase 3: UPDATE Flow

  1. Read the current skill.
  2. Identify the actual user goal.
  3. Apply the smallest diff that solves it.
  4. Re-run validation.
  5. Keep scope and description stable unless a broader change is explicitly requested.

Output Contract (UPDATE)

Return:

  • files changed
  • behavior changed
  • description change: yes/no
  • validation report
  • risks or follow-ups

Phase 4: DELETE Flow

  1. Confirm the target skill folder.
  2. Identify dependents: indexes, references, sibling skills.
  3. Remove the skill and update references.
  4. Provide rollback instructions.

Output Contract (DELETE)

Return:

  • removed paths
  • references updated
  • rollback note
  • validation/report of any remaining broken links

Phase 5: ADD Content to a Skill

Rules for skill growth:

  • Never duplicate description intent across multiple skills in the same install.
  • Route by intent first, then load deeper sections.
  • Keep SKILL.md readable: short tables, stable templates, deep detail in references/.

Add steps:

  1. Add one new router row or one tightly scoped section.
  2. Add the minimal new procedure.
  3. If it grows, split into references/<topic>.md.
  4. Add or update examples.
  5. Re-check neighboring skills for overlap.

Phase 6: RENAME Flow

  1. Confirm old and new names.
  2. Rename the folder and update frontmatter name.
  3. Update internal and repo-level references.
  4. Validate links, name/path parity, and discovery wording.

Output Contract (RENAME)

Return:

  • old name → new name
  • moved paths
  • references updated
  • validation report

Validation

Validation Requirements

A skill is not validated until you produce evidence for all three layers:

  1. Spec validation — structure and YAML correctness
  2. Trigger validation — the description should trigger when it should, and not trigger on near-misses
  3. Output validation — the skill improves or constrains the resulting work on realistic tasks

Skill Validation Checklist

  • Frontmatter includes valid name and description.
  • Frontmatter is valid YAML, not just visually plausible Markdown metadata.
  • name matches the parent directory.
  • Description clearly states what + when.
  • Any extra frontmatter stays within spec-supported fields unless the target environment explicitly supports more.
  • Router is present.
  • Confirmation boundary is explicit.
  • No secrets; no private paths unless the target repo is intentionally private.
  • No unscoped destructive instructions.
  • Progressive disclosure is respected.
  • Trigger hygiene has been checked against neighboring skills.

Spec Validation (Recommended)

If available:

skills-ref validate ./<skill-name>

If not available, validate manually using the rules in references/validation.md.

Capability Safety

  • Prefer the least-privileged capability that can complete the task.
  • Inspect/search before executing commands.
  • If command execution is needed, scope it tightly.
  • Never recommend rm -rf, git reset --hard, or push --force as defaults.

Templates

Skill Frontmatter

---
name: my-skill
description: Use this skill when you need to do X, Y, or Z. It handles A and B and is relevant when the user asks for C.
compatibility: Optional. Mention required runtimes, system tools, or environment assumptions.
metadata:
  version: "0.1"
allowed-tools: Optional experimental field. Only include it when the target client supports it and the skill benefits from a constrained tool list.
---

Minimum Viable Portable Skill

  1. Frontmatter
  2. One-paragraph purpose/activation guidance
  3. Router table
  4. Safety + confirmation rules
  5. Short workflows
  6. Optional references/ only when needed

References

  • references/checklist.md (authoring checklist)
  • references/templates.md (copy/paste templates)
  • references/validation.md (spec, trigger, and output validation)

What This Skill Is For (Practical Examples)

  • "Create a skill that scaffolds new skills" → CREATE.
  • "Make this skill more portable across agent products" → UPDATE.
  • "Rename this skill without breaking references" → RENAME.
  • "Check whether this skill will trigger reliably" → VALIDATE.
  • "Make skills consistent across repos" → UPDATE or ADD, depending on scope.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.14%
按下载量换算104

Claude

32.02%
按下载量换算90

Cursor

17.43%
按下载量换算49

Gemini CLI

10.17%
按下载量换算28

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills