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

agent-skill-creatorAgent 技能创建器

Agent Skill

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

总安装

824

周安装

33

GitHub Stars

13

下载量

267
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ravnhq/ai-toolkit --skill agent-skill-creator

简介

agent-skill-creator 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。

  • 它支持自动生成新技能原型或扩展现有技能库。
  • 可通过模板化方式快速搭建技能基础结构。
  • 安装前建议确认是否涉及系统级修改或权限提升操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Skill Creator

Create effective, portable skills that work across Claude.ai, Claude Code, and the API. A skill is a folderized instruction set that encodes a reusable workflow once, then applies it consistently.

Skill Structure

skill-name/
├── SKILL.md              # Required: YAML frontmatter + markdown instructions
├── scripts/              # Optional: executable code for deterministic tasks
├── references/           # Optional: docs loaded into context as needed
└── assets/               # Optional: files used in output (templates, images, fonts)

SKILL.md

Two parts:

  1. Frontmatter (YAML) — name and description fields. Always in context. Determines when the skill triggers.
  2. Body (Markdown) — Instructions, workflows, and pointers to bundled resources. Loaded only after triggering.

Bundled Resources

DirectoryPurposeLoaded into context?
scripts/Executable code (Python/Bash) for deterministic operationsOnly when Claude reads them
references/Documentation Claude consults while workingOn demand
assets/Files used in output (templates, images, fonts)Never — used directly in output

Do not include README.md, CHANGELOG.md, or any auxiliary documentation files.

Core Principles

Context Budget

The context window is shared. Only include what Claude does not already know. Prefer concise examples over verbose explanations. Every paragraph must justify its token cost — remove paragraphs that do not.

Hard limit: Keep SKILL.md body under 5,000 words. Move detailed content to references/.

Degrees of Freedom

Match specificity to the task's fragility:

  • High freedom (text guidance) — multiple valid approaches, context-dependent
  • Medium freedom (pseudocode/parameterized scripts) — preferred pattern, some variation ok
  • Low freedom (exact scripts) — fragile operations, consistency critical

Progressive Disclosure

Three-layer loading minimizes context usage:

  1. Frontmatter (under 100 words) — always in context
  2. SKILL.md body (under 5,000 words) — loaded when skill triggers
  3. Bundled resources (unlimited) — loaded as needed

Keep SKILL.md lean. Split into reference files when exceeding 300 lines. Always reference split files from SKILL.md with clear descriptions of when to read them.

Composability and Portability

  • Skills must coexist without conflicting instructions
  • Skills must work across Claude.ai, Claude Code, and the API
  • Do not hard-depend on environment-specific tooling

Workflow

1. Understand

Gather concrete use cases before building anything.

Entry: User request to create or improve a skill.

Actions:

  • Identify 2-3 concrete examples of how the skill will be used
  • For each example: what triggers it, what steps run, what the end result looks like
  • Ask targeted questions — avoid overwhelming the user with too many at once

Exit: Clear understanding of the skill's scope, triggers, and expected outputs.

2. Plan

Determine what reusable resources the skill needs.

Entry: Concrete use cases from Step 1.

Actions:

  • For each use case: what gets rewritten every time? That belongs in the skill.
  • Categorize resources:

- Code rewritten repeatedly → scripts/ - Knowledge referenced repeatedly → references/ - Templates/assets used in output → assets/

  • Decide SKILL.md structure — see references/workflows.md for common patterns.

Exit: List of resources to create and SKILL.md outline.

3. Build

Create the skill folder and write its contents.

Entry: Resource list and SKILL.md outline from Step 2.

Actions:

  1. Create the skill folder following the structure above. If scripts/init_skill.py is available in the environment, use it as a scaffolding accelerator: scripts/init_skill.py <skill-name> --path <output-directory> Otherwise, create the folder and SKILL.md manually.
  2. Write bundled resources first — scripts, references, assets. Test scripts by running them. Delete any scaffolding files not needed.
  3. Write SKILL.md:

- Frontmatter: Follow references/description-authoring.md for the description formula - Body: Use imperative/infinitive form. Structure by workflow steps or task categories. - Keep the body lean — point to references for depth - Validate against references/validation-checklist.md to ensure the skill meets all structural requirements

  1. Delete unused scaffolding — remove example files and empty directories.

Exit: Complete skill folder with all resources and SKILL.md.

4. Test

Validate triggering and output quality.

Entry: Complete skill from Step 3.

Actions:

  • Run triggering tests (positive and negative prompts)
  • Run functional tests on real tasks
  • Compare results against baseline (no skill)

See references/testing-iteration.md for detailed testing methodology and success criteria.

Exit: Skill triggers on 9 out of 10 relevant prompts and produces consistent output.

5. Iterate

Refine based on real usage.

Entry: Test results or user feedback.

Actions:

  • Diagnose issues: undertriggering, overtriggering, or execution failures
  • Apply targeted fixes per references/testing-iteration.md
  • Re-test affected areas

Exit: Skill meets success criteria across real-world usage.

Packaging

Package a finished skill as a .skill file (zip with .skill extension). If scripts/package_skill.py is available, use it — it validates and packages automatically:

scripts/package_skill.py <path/to/skill-folder> [output-directory]

Otherwise, zip the skill folder manually ensuring SKILL.md is at the root of the archive.

Reference Guides

Consult these based on the skill's needs:

  • Description and triggers: references/description-authoring.md — formula, trigger phrases, negative triggers, hard constraints
  • Workflow patterns: references/workflows.md — sequential, multi-service, iterative, context-aware, domain intelligence
  • Output patterns: references/output-patterns.md — templates and example-based output guidance
  • Testing and iteration: references/testing-iteration.md — triggering tests, functional tests, performance metrics, diagnostics
  • Validation checklist: references/validation-checklist.md — structural requirements every skill must meet
  • Troubleshooting: references/troubleshooting.md — common failures and resolution paths

Examples

Positive Trigger

User: "Create a new skill for converting PDFs to markdown with reusable scripts."

Expected behavior: Follow this skill's workflow — understand use cases, plan resources, build the skill.

Non-Trigger

User: "Find and fix a TypeScript type error in src/api/client.ts."

Expected behavior: Do not use this skill. Choose a more relevant skill or proceed directly.

Troubleshooting

Created Skill Does Not Trigger

  • Error: The skill is not selected when expected.
  • Cause: Description lacks specific trigger phrases or is too vague.
  • Solution: Rewrite description following references/description-authoring.md.

Created Skill Is Too Verbose

  • Error: SKILL.md exceeds 5,000 words or fills excessive context.
  • Cause: Detailed content belongs in references, not the body.
  • Solution: Move detailed content to references/ files. Keep SKILL.md as a lean workflow guide.

Output Is Inconsistent Across Sessions

  • Error: Skill produces different quality results each time.
  • Cause: Instructions are ambiguous or lack explicit validation steps.
  • Solution: Add concrete examples, exact commands, and verification steps. See references/troubleshooting.md.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

31.72%
按下载量换算85

Claude

31.57%
按下载量换算84

Cursor

19.88%
按下载量换算53

Gemini CLI

8.33%
按下载量换算22

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills