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

skill-builder技能构建

Agent Skill

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

总安装

245

周安装

10

GitHub Stars

公开资料未说明

下载量

79
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/personizeai/personize-skills --skill skill-builder

简介

用于查找、检索和筛选与技能构建相关的信息。

  • 适合根据关键词或任务场景快速定位候选结果。
  • 通过 GitHub 安装,兼容 Codex、Claude、Cursor 等宿主环境。
  • 使用前建议确认权限范围和数据来源可靠性。skill-builder 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 注意避免触发联网或文件操作,确保安全边界可控。

SKILL.md

Skill Builder

Skill Name: Skill-Builder Description: Guide for creating new skills to extend agent capabilities, following the OpenAI Codex CLI skills standard.

Overview

Skills are modular, reusable packages of instructions that help AI agents perform specific tasks reliably. This skill documents how to create, structure, and add new skills to the Skills/ folder.


Skill Folder Structure

Based on OpenAI's Codex CLI skills framework:

Skills/
├── README.md                    # Skill catalog + routing guide
├── my-skill/                    # Skill folder (use kebab-case)
│   ├── SKILL.md                 # Required: Main instructions + metadata
│   ├── scripts/                 # Optional: Executable code/automation
│   ├── reference/               # Optional: Additional documentation
│   └── assets/                  # Optional: Templates, images, resources
│
├── skill-builder/SKILL.md       # This skill — how to create new skills
└── _internal/                   # Platform dev docs (not discoverable skills)

Creating a New Skill

Option 1: Single-File Skill (Simple)

For straightforward skills, create a single .md file:

---
name: My Skill Name
description: Brief description of what this skill does
metadata:
  short-description: One-line summary
---

# My Skill Name

> **Skill Name**: My-Skill-Name
> **Description**: Detailed description of the skill's purpose.

---

## Overview
[What this skill does and when to use it]

## Instructions
[Step-by-step guide]

## Examples
[Code samples or usage examples]

## References
[Links to relevant documentation]

Option 2: Folder-Based Skill (Complex)

For skills with scripts, assets, or extensive documentation:

Skills/
└── My-Complex-Skill/
    ├── SKILL.md           # Main skill file (required)
    ├── scripts/
    │   └── setup.sh       # Automation scripts
    ├── references/
    │   └── api-docs.md    # Supporting documentation
    └── assets/
        └── template.json  # Templates or resources

SKILL.md Template

---
name: [Skill Name]
description: [What this skill helps accomplish - used for skill selection]
metadata:
  short-description: [One-line summary for UI display]
  version: 1.0.0
  author: [Your name or team]
  tags: [api, database, frontend, etc.]
---

# [Skill Name]

## Overview
[Comprehensive description of the skill's purpose and use cases]

## Prerequisites
- [Required knowledge or setup]
- [Dependencies]

## Instructions

### Step 1: [First Action]
[Detailed instructions]

### Step 2: [Second Action]
[Detailed instructions]

## Verification
- [ ] [How to verify the skill worked correctly]

## Troubleshooting
| Issue | Solution |
|-------|----------|
| [Common problem] | [How to fix it] |

## References
- [Link to relevant documentation]
- [Related skills or resources]

Skill Naming Conventions

ConventionExampleUsage
Kebab-caseAdd-Data-Type-CRUD.mdFile names
Title CaseAdd Data Type CRUDSkill display name
DescriptiveHow to add new data type...Description field

Best Practices

  1. RFC 2119 Constraints: Use MUST/SHOULD/MAY with rationale clauses in all enforcement sections (see Writing Standard below)
  2. Progressive Disclosure: Put the most important info first; details later
  3. Actionable Steps: Use numbered lists for procedures
  4. Code Examples: Include working code snippets
  5. Verification: Always include a way to verify success
  6. Links: Reference source files with relative paths

Writing Standard: RFC 2119 Constraints

All skills use RFC 2119 keywords to express enforcement levels. This replaces informal patterns like "always", "never", "important", and "prefer" in rule sections.

Inspired by Amazon's Agent SOPs from the Strands SDK — natural language markdown with formal requirement keywords creates a middle ground between rigid code and freeform prompting.

Keywords

KeywordMeaningAgent BehaviorWhen to Use
MUST / MUST NOTAbsolute requirementAgent fails the task if violatedData integrity, security, user trust, API correctness
SHOULD / SHOULD NOTStrong defaultFollow unless you state explicit reasoning to deviateBest practices, performance, quality patterns
MAYAgent discretionChoose either way without justificationOptimization hints, convenience, stylistic choices

Rationale Clauses

Every constraint gets a "because" rationale after an em dash. This gives the agent context to make good decisions in edge cases rather than blindly following rules.

Format:

- **MUST** [do X] -- because [consequence of not doing it].
- **SHOULD** [do Y] -- because [benefit, with acceptable override conditions].
- **MAY** [do Z] -- because [benefit when applicable].

Before/After examples:

Before: "ALWAYS show the admin what you're about to change before calling the API."
After:  "MUST show the admin the proposed change before calling any mutating API
         -- because silent modifications erode trust and prevent catching errors
         before they reach production."

Before: "Prefer section-level updates over full replace."
After:  "SHOULD use section-level updates over full replace -- because scoped edits
         reduce blast radius and allow concurrent editing; override only when
         structural reorganization requires full rewrite."

Before: "Optionally add an IF node to check success."
After:  "MAY add an IF node after the API call to check success -- because explicit
         success checks simplify debugging in complex workflows."

Section Naming

Use ## Constraints (H2) for top-level enforcement sections. Use ### Constraints (H3) for per-action constraints within a dispatch skill.

Do NOT use: "Critical Rules", "Key Rules", "Important Rules", "Guardrails". The three-tier MUST/SHOULD/MAY gradient replaces severity signaling.

Balance Check

Not everything should be MUST. A skill with zero SHOULD or MAY rules is probably over-constraining. The gradient exists so agents can exercise judgment on best practices while never violating safety-critical requirements.


SOP Files (.sop.md)

For procedural workflows (multi-step processes with sequenced actions, branching, and explicit success criteria), create a .sop.md file alongside or instead of a SKILL.md.

When to Use .sop.md vs SKILL.md

SignalUse SKILL.mdUse .sop.md
Multiple independent actionsYesNo
Dispatch table ("jump to action")YesNo
Linear procedure with ordered stepsNoYes
Steps have pre/post-conditionsNoYes
Branching decision pointsEitherYes (preferred)
Measurable success criteriaEitherYes (preferred)

Both formats use the same RFC 2119 keywords and rationale clauses.

SOP Template

---
name: [procedure-name]
description: [what this SOP accomplishes]
type: sop
metadata:
  version: 1.0.0
  author: [your name or team]
---

# SOP: [Procedure Name]

## Overview
[What this procedure does, when to use it, expected duration]

## Parameters
| Parameter | Required | Default | Description |
|-----------|----------|---------|-------------|
| [param]   | yes/no   | [value] | [what it controls] |

## Pre-conditions
- [What MUST be true before starting]

## Steps

### Step 1: [Action Name]
[Instructions]

**Constraints:**
- **MUST** [requirement] -- because [rationale].
- **SHOULD** [recommendation] -- because [rationale].

### Step 2: [Action Name]
[Instructions]

**Constraints:**
- **MUST** [requirement] -- because [rationale].
- **MAY** [option] -- because [rationale].

## Success Criteria
- [ ] [Measurable outcome 1]
- [ ] [Measurable outcome 2]

## Artifacts
| Artifact | Location | Description |
|----------|----------|-------------|
| [output] | [path]   | [what it is] |

Skills Catalog & Routing

For the full skill catalog and routing guide, see the Skills README.


References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.3%
按下载量换算30

Claude

30.48%
按下载量换算24

Cursor

18.34%
按下载量换算14

Gemini CLI

8.91%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills