Token导航 LogoToken导航TokenDH.com
前端设计操作浏览器github未标认证来源可访问许可证需确认审计通过

agent-skills-creatorAgent 技能创建器

Agent Skill

agent-skills-creator 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,715

周安装

243

GitHub Stars

33

下载量

2,002
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

用于创建符合 Agent Skills 开放格式的标准化技能。

  • 适合完整生命周期管理:从模式选择到验证更新。
  • 通过 GitHub 安装,提供格式规范和作者技巧参考。
  • 覆盖技能类型选择、结构设计和高信号内容编写建议。
  • 帮助产出可直接发布的合规技能包。agent-skills-creator 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Agent Skills Creator

Create skills that follow the Agent Skills open format. Covers the full lifecycle from pattern selection through validation and README update.

Reference Files

FileRead When
references/format-specification.mdDefault: frontmatter constraints, directory structure, naming rules, advanced features
references/skill-categories.mdChoosing what type of skill to build (Step 1)
references/skill-patterns.mdChoosing a structural pattern or need a template for a specific skill type
references/authoring-tips.mdWriting high-signal content, degrees of freedom, content patterns, setup, storage, hooks
references/executable-code.mdSkill includes scripts, depends on packages, or invokes MCP tools
references/rules-folder-structure.mdBuilding a rules-based audit/lint skill with categorized rule files
references/evaluation-and-iteration.mdDesigning evaluations, testing across models, iterating on a shipped skill
references/quality-checklist.mdFinal validation before shipping

Choose a Skill Category

Determine what type of problem the skill solves. Category informs pattern choice.

CategoryWhat it solvesCommon pattern
Library & API ReferenceHow to use a library/CLI/SDK correctlySimple/hub
Product VerificationTest/verify with tools (Playwright, tmux)Workflow
Data Fetching & AnalysisConnect to data/monitoring stacksWorkflow, Mixed
Business Process AutomationAutomate repetitive team workflowsWorkflow
Code Scaffolding & TemplatesGenerate boilerplate and project structureWorkflow
Code Quality & ReviewEnforce code quality standardsRules-based, Workflow
CI/CD & DeploymentFetch, push, deploy codeWorkflow
RunbooksSymptom to investigation to structured reportWorkflow, Mixed
Infrastructure OperationsMaintenance with guardrailsWorkflow

Load references/skill-categories.md for detailed guidance per category including authoring tips and examples.

Choose a Skill Pattern

PatternWhen to useExampleKey files
Simple/hubDispatch to 2-5 focused files by trackui-designSKILL.md + track files
WorkflowMulti-step process with progressive loadingagents-md, review-prSKILL.md + references/
Rules-basedAudit/lint with categorized rulestypography-audit, docs-writingSKILL.md + rules/
MixedWorkflow with conditional referencesmulti-tenant-architectureSKILL.md + references/

Decision guide:

  • Auditing or linting against a checklist: rules-based
  • Guiding a multi-step process: workflow
  • Dispatching to different tracks by context: simple/hub
  • Unsure: start with workflow (most flexible)

Load references/skill-patterns.md for structural templates and skeletons of each pattern.

Creation Workflow

Copy this checklist to track progress:

Skill creation progress:
- [ ] Step 1: Choose skill category and pattern
- [ ] Step 2: Create directory and frontmatter
- [ ] Step 3: Write SKILL.md body
- [ ] Step 4: Add reference or rule files
- [ ] Step 5: Validate with quality checklist
- [ ] Step 6: Update README.md
- [ ] Step 7: Smoke-test installation
- [ ] Step 8: Evaluate and iterate

Step 1: Choose skill category and pattern

First determine the category (what problem the skill solves), then pick the structural pattern. Load references/skill-categories.md for category guidance and references/skill-patterns.md for structural templates.

Step 2: Create directory and frontmatter

Load references/format-specification.md for hard constraints.

  • Create skills/<name>/SKILL.md
  • Folder name must match name field (kebab-case)
  • name: max 64 chars, lowercase letters/numbers/hyphens, no "anthropic" or "claude"
  • description: max 1024 chars, third-person voice, include "Use when..." triggers with specific keywords

Step 3: Write SKILL.md body

  • Keep under 500 lines; split into reference files if longer
  • Only add context Claude does not already have (see "Don't State the Obvious" in references/authoring-tips.md)
  • Use consistent terminology throughout
  • Match degrees of freedom to task fragility — prose for open-ended work, specific scripts for fragile or destructive operations (see "Degrees of Freedom" in references/authoring-tips.md)
  • Reach for named content patterns when they fit: template for fixed output, examples for format-sensitive output, conditional for decision points
  • Include a copyable progress checklist for multi-step workflows
  • Include validation/feedback loops for quality-critical tasks
  • Build a Gotchas section from observed failure points — this is the highest-signal content
  • Load references/authoring-tips.md for content strategy guidance on voice, degrees of freedom, content patterns, descriptions, and more

Step 4: Add reference or rule files

Workflow/mixed pattern: add references/ folder with focused files. Link each from SKILL.md with "Read when..." guidance in a table.

Rules-based pattern: add rules/ folder. Load references/rules-folder-structure.md for the _sections.md, _template.md, file-naming, and priority-table layout.

Simple/hub pattern: add track files alongside SKILL.md. Link from a tracks table.

Key constraints:

  • References must be one level deep from SKILL.md (no chains)
  • Files over 100 lines need a table of contents at the top
  • Files are only loaded when explicitly listed in SKILL.md

Advanced options:

  • Include executable scripts in scripts/ for Claude to compose — load references/executable-code.md for error handling, constants, plan-validate-execute, runtime environment, package deps, and MCP tool naming
  • Add config.json for skills needing user-specific setup context across sessions
  • Define on-demand hooks (PreToolUse/PostToolUse) for safety gates or observation

Step 5: Validate

Load references/quality-checklist.md and run all applicable checks.

Step 6: Update README.md

Add a row to the Skills table:

| `<skill-name>` | <phase> | <one-line description> |

Phases used in this repo: Before coding, Project start, Design, Build, Design/dev, Writing/audit, Pre-ship, Pre-merge, Pre-launch, Architecture, Maintenance, Authoring.

Step 7: Smoke-test

Install and confirm files appear in the target directory:

cp -R skills/<name> ~/.claude/skills/
ls ~/.claude/skills/<name>/

Step 8: Evaluate and iterate

Load references/evaluation-and-iteration.md. Define 3+ evaluation scenarios, test on each target model, and iterate based on observed Claude behavior — not assumptions about what Claude should need.

Anti-patterns

  • Dumping full specification into SKILL.md body (use reference files)
  • Creating reference-to-reference chains (keep one level deep)
  • Including time-sensitive content ("before August 2025, use...")
  • Restating what Claude already knows (how to write Markdown, general coding advice, standard conventions)
  • Using "I audit..." or "Use this to..." voice in descriptions (use third-person)
  • Adding README.md, CHANGELOG.md, or INSTALLATION_GUIDE.md to the skill folder
  • Dropping files in folders without linking them from SKILL.md
  • Over-constraining Claude's approach when specifying outcomes would suffice (railroading)
  • Writing the description as a human summary instead of a model trigger with "Use when..." phrases and quoted user phrases
  • Skipping a Gotchas section for skills with known failure modes
  • Hardcoding absolute paths for persistent data instead of using ${CLAUDE_PLUGIN_DATA}
  • Storing persistent data in the skill directory itself (gets deleted on upgrade)
  • Referencing MCP tools without the server prefix (bigquery_schema instead of BigQuery:bigquery_schema)
  • Magic numbers in scripts with no justifying comment (voodoo constants)
  • Shipping a skill without testing it on every target model — what reads well to Opus may underspecify for Haiku

Related Skills

  • agents-md for auditing AGENTS.md/CLAUDE.md instruction files
  • docs-writing for documentation quality rules

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.53%
按下载量换算731

Claude

30%
按下载量换算601

Cursor

20.16%
按下载量换算404

Gemini CLI

8.79%
按下载量换算176

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills