Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计提醒

skill-creator技能创建器

Agent Skill

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

总安装

356

周安装

15

GitHub Stars

公开资料未说明

下载量

125
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/jkappers/agent-skills --skill skill-creator

简介

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

  • 适用于技能库构建、功能模块设计和 Agent 能力扩展等场景。
  • 支持基于任务线索进行定向信息聚合与筛选。
  • 安装前建议确认权限范围、维护状态及是否触发联网或文件读写。
  • 可结合原始 README 和仓库路径进一步验证具体功能和使用方法。

SKILL.md

Skill Authoring

Create agent skills (SKILL.md files) following the Agent Skills open standard. Skills produce consistent, deterministic agent behavior across any compatible platform. Skills are filesystem-based instruction sets that transform an agent into a domain specialist.

When invoked with arguments, create a skill for: $ARGUMENTS

Workflow

  1. Define scope: Identify the domain, target tasks, and activation triggers
  2. Gather requirements: Collect domain knowledge, constraints, expected inputs/outputs, and success criteria. Ask clarifying questions for missing context
  3. Determine freedom levels: Classify each instruction as high/medium/low freedom based on task sensitivity
  4. Write frontmatter: Name, description with activation triggers
  5. Write instructions: Imperative commands, structured for LLM parsing
  6. Add examples: Concrete input/output pairs for ambiguous or complex behaviors
  7. Add supporting files: Move detailed reference material to separate files when SKILL.md approaches 300 lines
  8. Verify: Run through the checklist below

SKILL.md Structure

Every skill requires a SKILL.md file in a named directory:

skill-name/
├── SKILL.md              # Required. Main instructions (under 500 lines)
├── references/           # Optional. Deep-dive material
│   └── *.md              # One level deep only
├── scripts/              # Optional. Executable utilities
│   └── *.py|*.sh
└── assets/               # Optional. Templates, schemas, static resources

Frontmatter

YAML frontmatter between --- markers. The open standard requires name and description.

---
name: kebab-case-name
description: What this skill does. Use when (1) trigger one, (2) trigger two, (3) trigger three, (4) trigger four, or (5) trigger five.
---

Name (required)

Must match the parent directory name. Lowercase letters, numbers, hyphens only. Maximum 64 characters. Must not start or end with a hyphen. Must not contain consecutive hyphens (--).

Description (required)

Maximum 1024 characters. Write in third person. Include both what the skill does AND when to activate.

Template: [Value proposition sentence]. Use when (1) [trigger], (2) [trigger],... (N) [trigger].

Enumerate 4-6 specific activation triggers. Base triggers on user intent and tasks, not file types.

Optional Universal Fields

FieldConstraints
licenseLicense name or reference to a bundled license file. Include when sharing or publishing.
compatibilityMax 500 chars. Declare environment requirements (required tools, network access, intended platform).
metadataArbitrary key-value map. Use reasonably unique key names to avoid conflicts.
allowed-toolsSpace-delimited list of pre-approved tools. Experimental; support varies across platforms.

For platform-specific extensions (Claude Code's argument-hint, context, agent, disable-model-invocation, user-invocable, model, hooks), see references/frontmatter.md.

Writing Instructions

Core Principles

The context window is a shared resource. Only add context the model lacks. Assume high baseline capability.

Imperative language only. "Validate input at boundaries" not "You should consider validating input."

Zero ambiguity. Every instruction must have exactly one interpretation. Eliminate hedge words: "consider", "try to", "when possible", "generally".

Specificity scales with risk. Use high freedom (text instructions) when multiple approaches are valid. Use low freedom (exact commands, scripts) when consistency is critical.

Formatting for LLM Parsing

FormatUse For
HeadingsScope and context boundaries
TablesStructured comparisons, reference data, decision matrices
ListsDiscrete, parallel, independent items
ProseRelationships between ideas, conditional logic, rationale
Code blocksExact commands, templates, output formats (always language-labeled)
BoldHard constraints where violation causes failure (max 10% of content)
BlockquotesKey insights, breaking changes, critical warnings

Emphasis Modifiers

Use MUST, MUST NOT, REQUIRED only for hard constraints where violation causes failure. If every instruction uses MUST, none stand out. Reserve bold for the same purpose.

Terminology Consistency

Choose one term per concept. Use it throughout the entire skill. Do not alternate between synonyms.

Progressive Disclosure

Keep SKILL.md body under 500 lines. Start with core instructions. Link to separate files for deep-dive material.

Pattern: High-level guide in SKILL.md with [reference.md](reference.md) links for specialized content.

Keep all references one level deep from SKILL.md. Do not chain: SKILL.md -> advanced.md -> details.md.

Reference files longer than 100 lines include a table of contents at the top.

Instruction Patterns

Workflow Pattern

Use for procedural, multi-step tasks. Numbered steps with clear sequencing.

## Workflow
1. Detect framework from `package.json`
2. Select base image from Image Guide table
3. Generate Dockerfile using selected pattern
4. Create `.dockerignore` if missing
5. Validate with checklist

Decision Table Pattern

Use for selection logic with discrete options.

| Condition | Action |
|-----------|--------|
| API endpoint | Validate input schema, return JSON |
| Background job | Log start/end, handle timeout |
| CLI command | Parse args with yargs, exit codes 0/1 |

Template Pattern

Use when output must follow an exact structure.

Output format:

[Title]

Summary

[2-3 sentence overview]

Findings

FindingSeverityRecommendation

Conditional Workflow Pattern

Use when the workflow branches based on input.

1. Determine modification type:
   **Creating new?** -> Follow Creation workflow
   **Editing existing?** -> Follow Editing workflow

Examples Pattern

Use input/output pairs to demonstrate expected behavior. Wrap in <example> tags for complex cases.

<example>
Input: User requests API endpoint for user registration
Output:

// POST /api/users export async function handler(req: Request) { const body = await req.json() // validate, create user, return 201 }

</example>

For additional patterns (feedback loops, checklist tracking, dynamic context), see references/patterns.md.

Content Guidelines

What to Include

  • Domain-specific knowledge the model lacks
  • Exact commands with all flags and arguments
  • Concrete examples demonstrating desired output format
  • Decision tables for selection logic
  • Verification steps for critical operations
  • Constraints and prohibited actions

What to Exclude

  • Information the model already knows (framework basics, language syntax)
  • Decorative language ("please", "remember", "it's important")
  • Welcome messages, motivational text, background history
  • Time-sensitive information ("Before August 2025, use...")
  • Hypothetical scenarios ("If we ever migrate to...")
  • Vague best practices ("Functions should be small")

Reducing Hallucination Risk

When a skill processes external documents or data:

  • Instruct to extract direct quotes before analyzing
  • Require citations for claims
  • Include explicit fallback: "If information is unavailable, state 'Insufficient data' instead of inferring"
  • Restrict to provided context when accuracy is critical

For comprehensive anti-patterns reference, see references/anti-patterns.md.

Platform Extensions

The open standard defines the universal format above. Individual platforms add extensions for deeper integration. Use universal fields by default; add platform extensions only when the extra capability is needed.

Claude Code Extensions

Skills double as slash commands in Claude Code. Support argument passing with $ARGUMENTS.

---
name: review-pr
description: Review a pull request for code quality and standards
argument-hint: "[PR number or URL]"
---
Review pull request $ARGUMENTS.
1. Fetch PR diff
2. Check against coding standards
3. Report findings

Positional arguments: $0, $1, $2 or $ARGUMENTS[0], $ARGUMENTS[1].

Dynamic context injection runs shell commands and inserts output before the model sees the content. Prefix a backtick-wrapped command with the bang character (the exclamation mark).

For complete syntax reference and a working example, see references/frontmatter.md.

Other platforms may define their own extensions. Consult the target platform's documentation for available fields.

For the complete Claude Code extension reference, see references/frontmatter.md.

Verification Checklist

Run through before finalizing any skill.

Frontmatter (Universal)

  • name is kebab-case, under 64 characters, matches parent directory name
  • name does not start/end with hyphen, no consecutive hyphens
  • description is non-empty, under 1024 characters, third person
  • Description includes what the skill does AND 4-6 activation triggers
  • license field present if skill will be shared or published
  • compatibility field present if skill requires specific environment

Frontmatter (Platform-Specific)

  • argument-hint present if skill accepts slash command arguments (Claude Code)
  • Platform-specific fields only used when universal fields are insufficient

Instructions

  • All instructions use imperative mood
  • No hedge words (consider, try to, when possible, generally)
  • No decorative language (please, remember, make sure)
  • Zero ambiguity: each instruction has exactly one interpretation
  • Emphasis modifiers (MUST, bold) reserved for hard constraints only
  • Consistent terminology: one term per concept throughout
  • Code blocks are language-labeled

Structure

  • SKILL.md body under 500 lines
  • Sections follow: Title -> Overview -> Workflow/Principles -> Detail -> Examples -> Checklist
  • Tables used for structured data, lists for discrete items, prose for relationships
  • Supporting files one level deep from SKILL.md
  • Reference files over 100 lines have a table of contents

Content

  • Only adds context the model lacks
  • No framework documentation the model already knows
  • No time-sensitive information
  • Examples are concrete input/output pairs, not abstract descriptions
  • Output format explicitly defined when consistency matters
  • Verification/validation steps included for critical operations

Execution

  • Produces consistent behavior across multiple runs
  • Includes clear invocation conditions (when to use AND when NOT to use)
  • Specifies expected inputs, outputs, and validation criteria
  • Freedom levels match task sensitivity (high freedom for creative tasks, low for critical operations)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.06%
按下载量换算45

Claude

26.93%
按下载量换算34

Cursor

18.49%
按下载量换算23

Gemini CLI

9.55%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/jkappers/agent-skills --skill skill-creator 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills