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

agent-skills-specAgent 技能规范

Agent Skill

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

总安装

247

周安装

10

GitHub Stars

14

下载量

78
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/connorads/dotfiles --skill agent-skills-spec

简介

确保技能符合 agentskills.io 的结构化规范要求。

  • 适合内容质量控制和专业知识传递场景。agent-skills-spec 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 通过 GitHub 安装,定义三层渐进披露模型。
  • 每层有严格约束:元数据、指令和资源按需加载。
  • 建议使用 skill-creator-v2 进行更全面的内容开发。

SKILL.md

Agent Skills Spec

Structural compliance for the agentskills.io specification. For content quality and expertise transfer, use skill-creator-v2 instead.

Mental Model

A skill is a progressive disclosure pipeline. Each layer has strict constraints:

Layer 1: METADATA (~100 tokens)                    ← always loaded
  name + description in YAML frontmatter
  Must be precise enough for activation decisions

Layer 2: INSTRUCTIONS (<5000 tokens recommended)   ← loaded on activation
  SKILL.md body, <500 lines
  Core workflows, decision frameworks, essential examples

Layer 3: RESOURCES (on demand)                      ← loaded when referenced
  references/*.md, scripts/*, assets/*
  Deep knowledge, executable code, templates

Every spec rule serves this pipeline. Name/description enable discovery. Body enables execution. Resources enable depth without cost.

Create Workflow

Create a new spec-compliant skill:

  1. Name: Choose lowercase kebab-case, 1–64 chars
  2. Directory: mkdir -p skill-name/references
  3. Frontmatter: Write valid YAML with name + description
  4. Body: Core instructions in imperative mood, <500 lines
  5. Split: Move detailed content into references/
  6. Scripts: Add to scripts/ if needed (see script guidelines)
  7. Validate: Run skills-ref validate./skill-name or walk through validation checklist

Minimal valid skill:

---
name: my-skill
description: >
  Extract text from PDFs and fill forms. Use when working with PDF files
  or when the user mentions PDFs, forms, or document extraction.
---

# My Skill

[Instructions here]

Audit Workflow

Audit an existing skill for spec compliance:

  1. Check frontmatter against hard rules (required fields, character limits, naming)
  2. Check for disallowed frontmatter fields (see below)
  3. Verify directory structure (only scripts/, references/, assets/ allowed)
  4. Scan for non-standard top-level files (README, LICENSE, CHANGELOG)
  5. Count SKILL.md body lines (<500)
  6. Assess description quality (specific triggers? capability + when?)
  7. Assess progressive disclosure (too much in SKILL.md?)
  8. Check script interfaces if scripts/ exists
  9. Report findings with severity + fix recommendations

For the full checklist: see references/validation-checklist.md

Fix Workflow

Remediate common issues. For the complete decision tree with before/after examples: see references/common-fixes.md

Quick reference:

IssueSeverityFix
Non-spec frontmatter fieldsErrorMove to metadata or remove
Name/directory mismatchErrorRename to match
allowed-tools as YAML arrayErrorConvert to space-delimited string
Interactive prompts in scriptsErrorReplace with CLI flags/stdin
SKILL.md >500 linesWarningSplit into references/
README/LICENSE/CHANGELOG presentWarningRemove (AI meta-docs)
Non-standard directories (rules/, templates/)WarningRename to references//assets/
Vague descriptionWarningAdd specific triggers and "Use when..."
Scripts without --helpInfoAdd usage documentation

Frontmatter Rules

Required fields

FieldConstraints
name1–64 chars. Lowercase alphanumeric + hyphens only. No leading/trailing/consecutive hyphens. Must match parent directory name (after NFKC normalisation).
description1–1024 chars. Non-empty. Describe what the skill does AND when to use it. Include specific trigger keywords.

Optional fields

FieldConstraints
licenseString. License name or reference to bundled file.
compatibility1–500 chars. Environment requirements only. Most skills don't need this.
metadataKey-value map (string → string). For client-specific properties.
allowed-toolsSpace-delimited string (not YAML array). Experimental. e.g. Bash(git:*) Read

Disallowed fields

Any field not in {name, description, license, compatibility, metadata, allowed-tools} is a validation error. Common offenders:

FoundFix
versionMove to metadata.version
authorMove to metadata.author
tagsMove to metadata.tags
referencesRemove (use directory convention)
user-invocableRemove (non-spec)
argument-hintRemove (non-spec)

Directory Structure

skill-name/                   # Must match frontmatter name
├── SKILL.md                  # Required
├── scripts/                  # Optional: executable code
├── references/               # Optional: on-demand documentation
└── assets/                   # Optional: static resources

Should not exist at top level:

  • README.md, LICENSE, CHANGELOG.md — AI meta-docs
  • package.json, tsconfig.json, lock files — build artifacts
  • Bare .md files other than SKILL.md — move to references/

Non-standard directories (rename):

  • rules/references/
  • templates/assets/
  • examples/references/
  • src/, docs/, test/ → remove or restructure

Progressive Disclosure

Keep SKILL.md body under 500 lines. When approaching this limit, offload to references/:

Content typeMove to
Detailed examplesreferences/examples.md
API reference tablesreferences/api.md
Edge cases/gotchasreferences/advanced.md
Installation/setupreferences/setup.md
Pattern librariesreferences/patterns.md

Replace offloaded content with a one-line reference:

For detailed examples, see [references/examples.md](references/examples.md).

Keep references one level deep from SKILL.md. Avoid chains (A → B → C).

Description Quality

A description is effective when an agent can answer from it alone:

  1. "What does this skill do?" (capability)
  2. "Should I activate it for this task?" (trigger)
QualityPatternExample
PoorVague noun phrase"Helps with documents"
FairCapability only"Processes PDF files"
GoodCapability + trigger"Extract text from PDFs. Use when working with PDF files."
ExcellentCapability + specific triggers + scope"Extract text and tables from PDFs, fill forms, merge documents. Use when working with PDF files or when the user mentions PDFs, forms, or document extraction."

Validation

With skills-ref installed:

skills-ref validate ./my-skill        # structural validation
skills-ref read-properties ./my-skill  # dump parsed frontmatter

Install if needed:

uv tool install skills-ref   # or: pip install skills-ref

Without the tool, walk through references/validation-checklist.md manually.

Script Rules (Summary)

Full guide: references/script-guidelines.md

Non-negotiable:

  • No interactive prompts — agents cannot respond to TTY input
  • Support --help — agents discover script interfaces through help output
  • Structured output (JSON/CSV) to stdout, diagnostics to stderr
  • Meaningful exit codes — document in --help
  • Pin dependency versions — reproducibility across environments
  • --dry-run for destructive operations

References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.37%
按下载量换算31

Claude

31.03%
按下载量换算24

Cursor

18.36%
按下载量换算14

Gemini CLI

9.13%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills