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

skill-creator-plus技能创建器加

Agent Skill

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

总安装

890

周安装

36

GitHub Stars

11

下载量

279
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

skill-creator-plus 用于查找、检索和筛选相关信息,支持根据关键词快速定位候选结果。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中需要多步骤工作流或模板化任务的场景。
  • 设计目标是创建可靠且轻量的 Agent 技能,避免过度复杂或依赖外部不可控资源。
  • 建议先判断用户是否真正需要独立技能,否则优先考虑组合脚本或提示词方案。
  • 安装前建议确认权限范围和维护状态,注意是否会触发联网、命令执行或文件读写。

SKILL.md

Skill Creator+

Design and review Agent Skills that trigger reliably and stay lean.

Decision Flow

Start by deciding whether the user really needs a skill.

NeedUse
Reusable multi-step workflow with bundled scripts, references, or templatesSkill
Single focused slash task with parameterized inputPrompt
Always-on or file-scoped guidanceInstruction
Persona, tool restrictions, delegation, or handoffsCustom Agent
Deterministic enforcement or lifecycle automationHook

If the answer is not Skill, stop and create the right primitive instead.

references/customization-primitives.md for the full selection guide

When to Use

  • Create skill, /create-skill, new skill, review skill, fix skill trigger, SKILL.md, スキル作成
  • Creating a new skill from scratch
  • Updating or refactoring an existing skill
  • Reviewing existing SKILL.md files
  • Deciding whether a customization should be a skill before authoring it

Core Principles

PrincipleDescription
Concise is KeyContext window is shared. Only add what Claude doesn't already know.
Discovery FirstThe description is the routing surface. Triggers must be explicit.
Degrees of FreedomMatch specificity to task fragility (high/medium/low freedom)
Progressive DisclosureSplit into 3 levels: Metadata → Body → References
Integrate Before AddUpdate, merge, or replace existing guidance before appending more.
Right PrimitiveA good skill is not a fallback for prompt/agent/instruction design.
Scope Before FileDecide workspace vs profile before creating anything.
Default assumption: Claude is already very smart. Challenge each piece: "Does this justify its token cost?"

Before adding a new section, ask three questions:

  1. Can this update an existing rule instead?
  2. Can this move to references/ instead of staying in SKILL.md?
  3. Is this actually reusable, or is it just a session-specific note?

Skill Structure

references/skill-structure.md for locations, frontmatter, and bundled resource rules

skill-name/
├── SKILL.md (required)        # Lean overview + decision points
├── scripts/                   # Deterministic helpers
├── references/                # Load on demand
└── assets/                    # Templates and reusable outputs

→ See skill-structure.md > What NOT to Include for excluded files.

Creation Process

references/creation-process.md for the end-to-end workflow

StepAction
0Choose primitive + scope (skill vs prompt/agent/etc.)
1Understand with concrete examples and trigger phrases
2Plan reusable contents (scripts/references/assets)
3Initialize or refactor the skill folder
4Write SKILL.md and implement resources
5Validate frontmatter, structure, and trigger quality
6Test on real prompt patterns and iterate

Refactor Order

When improving an existing skill, use this order:

  1. Delete stale or low-value guidance
  2. Merge duplicate rules
  3. Move long detail to references/
  4. Add genuinely missing guidance last

Frontmatter and Triggering

Use the smallest viable frontmatter.

---
name: skill-name
description: "What it does. Use when [trigger conditions]. Triggers on 'keyword', 'phrase'."
argument-hint: "Optional slash-command hint"
user-invocable: true
disable-model-invocation: false
---
  • name must match the folder name
  • description must say both what and when
  • Optional fields should be intentional, not boilerplate
  • Resource links must stay relative and shallow

references/common-pitfalls.md for silent failures and trigger misses

SKILL.md Guidelines

Size Target

→ See skill-review-checklist.md > Line Count Target for size guidelines.

Quick rule: < 150 lines is good, > 300 lines must split to references.

✅ Good❌ Bad
Extract text and tables from PDF files, fill forms, merge documents. Use when working with PDF files or when the user mentions PDFs, forms, or document extraction.Helps with documents
Set up book writing workspace. Triggers on "book writing", "執筆ワークスペース", "technical writing project".Creates workspaces

When to Use Section

Start with generic keywords users are likely to say:

## When to Use

- **PDF**, **extract text**, **form filling** ← Keywords first
- Processing documents with embedded images
- Filling PDF forms programmatically

Body

  • Use imperative/infinitive form
  • Link to references for details
  • Keep essential workflow only
  • Add decision points when misuse is common
  • Reuse a proven shape from references/skill-structure-gallery.md before inventing a custom layout
  • Push reference material out of SKILL.md aggressively
  • Prefer replacing or compressing existing text over appending a new subsection

Review Checklist

references/skill-review-checklist.md

For bloat review specifically, use references/skill-bloat-review.md.

- [ ] SKILL.md under 150 lines?
- [ ] Request truly needs a skill?
- [ ] Description has trigger conditions?
- [ ] Optional frontmatter fields are intentional?
- [ ] Details moved to references/?
- [ ] No README.md or auxiliary docs?

Key References

Done Criteria

  • Request is confirmed to be a skill, not another primitive
  • Scope is decided before file creation
  • SKILL.md created and under 150 lines
  • Frontmatter has name + description with trigger conditions
  • Optional fields are added only when they change behavior
  • Details moved to references/ (Progressive Disclosure)
  • Review checklist passed

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.32%
按下载量换算93

Claude

30%
按下载量换算84

Cursor

18%
按下载量换算50

Gemini CLI

8.94%
按下载量换算25

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills