agent-skills-creator by mblode/agent-skills
npx skills add https://github.com/mblode/agent-skills --skill agent-skills-creator创建遵循 Agent Skills 开放格式的技能。涵盖从模式选择到验证和 README 更新的完整生命周期。
| 文件 | 何时读取 |
|---|---|
references/format-specification.md | 默认:frontmatter 约束、目录结构、命名规则、高级功能 |
references/skill-categories.md | 选择要构建的技能类型(步骤 1) |
references/skill-patterns.md | 选择结构模式或需要特定技能类型的模板 |
references/authoring-tips.md | 编写高价值内容、注意事项部分、设置模式、存储、钩子 |
references/quality-checklist.md |
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
| 发布前的最终验证 |
确定技能解决何种类型的问题。类别影响模式选择。
| 类别 | 解决的问题 | 常见模式 |
|---|---|---|
| 库与 API 参考 | 如何正确使用库/CLI/SDK | Simple/hub |
| 产品验证 | 使用工具(Playwright, tmux)进行测试/验证 | Workflow |
| 数据获取与分析 | 连接到数据/监控栈 | Workflow, Mixed |
| 业务流程自动化 | 自动化重复的团队工作流程 | Workflow |
| 代码脚手架与模板 | 生成样板代码和项目结构 | Workflow |
| 代码质量与审查 | 强制执行代码质量标准 | Rules-based, Workflow |
| CI/CD 与部署 | 获取、推送、部署代码 | Workflow |
| 运行手册 | 从症状到调查再到结构化报告 | Workflow, Mixed |
| 基础设施运维 | 带有防护措施维护 | Workflow |
加载 references/skill-categories.md 获取每个类别的详细指导,包括编写技巧和示例。
| 模式 | 何时使用 | 示例 | 关键文件 |
|---|---|---|---|
| Simple/hub | 根据轨道(track)分发到 2-5 个专注的文件 | ui-design | SKILL.md + 轨道文件 |
| Workflow | 具有渐进式加载的多步骤流程 | agents-md, review-pr | SKILL.md + references/ |
| Rules-based | 使用分类规则进行审计/检查 | typography-audit, docs-writing | SKILL.md + rules/ |
| Mixed | 带有条件引用的工作流 | multi-tenant-architecture | SKILL.md + references/ |
决策指南:
加载 references/skill-patterns.md 获取每个模式的结构模板和骨架。
复制此清单以跟踪进度:
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
首先确定类别(技能解决的问题),然后选择结构模式。加载 references/skill-categories.md 获取类别指导,加载 references/skill-patterns.md 获取结构模板。
加载 references/format-specification.md 了解硬性约束。
skills/<name>/SKILL.mdname 字段匹配(kebab-case)name:最多 64 个字符,小写字母/数字/连字符,不能包含 "anthropic" 或 "claude"description:最多 1024 个字符,使用第三人称,包含带有特定关键词的 "Use when..." 触发器references/authoring-tips.md 中的 "Don't State the Obvious")references/authoring-tips.md 获取关于语气、引导、描述等内容策略指导Workflow/mixed 模式:添加包含专注文件的 references/ 文件夹。在 SKILL.md 中使用表格链接每个文件,并提供"何时读取..."指导。
Rules-based 模式:添加 rules/ 文件夹。参见下面的规则文件夹部分。
Simple/hub 模式:在 SKILL.md 旁边添加轨道文件。通过轨道表链接。
关键约束:
高级选项:
scripts/ 中包含可执行脚本供 Claude 组合使用(参见 references/authoring-tips.md)config.json 用于需要在会话间进行用户特定设置上下文的技能加载 references/quality-checklist.md 并运行所有适用的检查。
在技能表中添加一行:
| `<skill-name>` | <phase> | <one-line description> |
此仓库中使用的阶段:Before coding, Project start, Design, Build, Design/dev, Writing/audit, Pre-ship, Pre-merge, Pre-launch, Architecture, Maintenance, Authoring。
安装并确认文件出现在目标目录中:
cp -R skills/<name> ~/.claude/skills/
ls ~/.claude/skills/<name>/
对于基于规则的技能(审计、检查、清单),创建一个包含以下内容的 rules/ 文件夹:
rules/_sections.md包含影响级别的类别映射。格式:
# Sections
This file defines all sections, their ordering, impact levels, and descriptions.
The section ID (in parentheses) is the filename prefix used to group rules.
---
## 1. Category Name (prefix)
**Impact:** CRITICAL | HIGH | MEDIUM-HIGH | MEDIUM | LOW-MEDIUM
**Description:** One sentence explaining why this category matters.
rules/_template.md单个规则文件的模板:
---
title: Rule Title Here
impact: MEDIUM
tags: tag1, tag2
---
## Rule Title Here
Brief explanation of the rule and why it matters.
**Incorrect (description of what's wrong):**
[code block with bad example]
**Correct (description of what's right):**
[code block with good example]
<prefix>-<slug>.md,其中前缀与章节 ID 匹配_template.md 结构包含一个将类别映射到前缀和规则数量的表格:
| Priority | Category | Impact | Prefix | Rules |
|----------|----------|--------|--------|-------|
| 1 | Category Name | CRITICAL | `prefix-` | N |
${CLAUDE_PLUGIN_DATA}agents-md 用于审计 AGENTS.md/CLAUDE.md 指令文件docs-writing 用于文档质量规则每周安装次数
111
仓库
GitHub 星标数
19
首次出现时间
Feb 9, 2026
安全审计
安装于
gemini-cli105
opencode105
codex104
cursor103
github-copilot102
kimi-cli100
Create skills that follow the Agent Skills open format. Covers the full lifecycle from pattern selection through validation and README update.
| File | Read When |
|---|---|
references/format-specification.md | Default: frontmatter constraints, directory structure, naming rules, advanced features |
references/skill-categories.md | Choosing what type of skill to build (Step 1) |
references/skill-patterns.md | Choosing a structural pattern or need a template for a specific skill type |
references/authoring-tips.md | Writing high-signal content, gotchas sections, setup patterns, storage, hooks |
references/quality-checklist.md | Final validation before shipping |
Determine what type of problem the skill solves. Category informs pattern choice.
| Category | What it solves | Common pattern |
|---|---|---|
| Library & API Reference | How to use a library/CLI/SDK correctly | Simple/hub |
| Product Verification | Test/verify with tools (Playwright, tmux) | Workflow |
| Data Fetching & Analysis | Connect to data/monitoring stacks | Workflow, Mixed |
| Business Process Automation | Automate repetitive team workflows | Workflow |
| Code Scaffolding & Templates | Generate boilerplate and project structure | Workflow |
| Code Quality & Review | Enforce code quality standards | Rules-based, Workflow |
| CI/CD & Deployment | Fetch, push, deploy code | Workflow |
| Runbooks | Symptom to investigation to structured report | Workflow, Mixed |
| Infrastructure Operations | Maintenance with guardrails |
Load references/skill-categories.md for detailed guidance per category including authoring tips and examples.
| Pattern | When to use | Example | Key files |
|---|---|---|---|
| Simple/hub | Dispatch to 2-5 focused files by track | ui-design | SKILL.md + track files |
| Workflow | Multi-step process with progressive loading | agents-md, review-pr | SKILL.md + references/ |
| Rules-based | Audit/lint with categorized rules | typography-audit, docs-writing |
Decision guide:
Load references/skill-patterns.md for structural templates and skeletons of each pattern.
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
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.
Load references/format-specification.md for hard constraints.
skills/<name>/SKILL.mdname 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 keywordsreferences/authoring-tips.md)references/authoring-tips.md for content strategy guidance on voice, railroading, descriptions, and moreWorkflow/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. See the rules folder section below.
Simple/hub pattern : add track files alongside SKILL.md. Link from a tracks table.
Key constraints:
Advanced options:
scripts/ for Claude to compose (see references/authoring-tips.md)config.json for skills needing user-specific setup context across sessionsLoad references/quality-checklist.md and run all applicable checks.
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.
Install and confirm files appear in the target directory:
cp -R skills/<name> ~/.claude/skills/
ls ~/.claude/skills/<name>/
For rules-based skills (audits, lints, checklists), create a rules/ folder with:
rules/_sections.mdCategory map with impact levels. Format:
# Sections
This file defines all sections, their ordering, impact levels, and descriptions.
The section ID (in parentheses) is the filename prefix used to group rules.
---
## 1. Category Name (prefix)
**Impact:** CRITICAL | HIGH | MEDIUM-HIGH | MEDIUM | LOW-MEDIUM
**Description:** One sentence explaining why this category matters.
rules/_template.mdTemplate for individual rule files:
---
title: Rule Title Here
impact: MEDIUM
tags: tag1, tag2
---
## Rule Title Here
Brief explanation of the rule and why it matters.
**Incorrect (description of what's wrong):**
[code block with bad example]
**Correct (description of what's right):**
[code block with good example]
<prefix>-<slug>.md where prefix matches the section ID_template.md structureInclude a table mapping categories to prefixes and rule counts:
| Priority | Category | Impact | Prefix | Rules |
|----------|----------|--------|--------|-------|
| 1 | Category Name | CRITICAL | `prefix-` | N |
${CLAUDE_PLUGIN_DATA}agents-md for auditing AGENTS.md/CLAUDE.md instruction filesdocs-writing for documentation quality rulesWeekly Installs
111
Repository
GitHub Stars
19
First Seen
Feb 9, 2026
Security Audits
Gen Agent Trust HubPassSocketPassSnykPass
Installed on
gemini-cli105
opencode105
codex104
cursor103
github-copilot102
kimi-cli100
AI Elements:基于shadcn/ui的AI原生应用组件库,快速构建对话界面
67,500 周安装
阿里云平台文档API审查冒烟测试指南 - 自动化测试与云服务验证
136 周安装
敏捷教练技能指南:团队转型、框架选择与GROW模型辅导
125 周安装
Auth0 迁移指南:从 Firebase、Cognito 等平台批量导入用户到 Auth0
156 周安装
AgentMail 工具包:为 AI 智能体添加电子邮件收发与管理功能 | 支持多框架
168 周安装
Boss直聘职位搜索技能 - AI自动化爬取招聘信息,支持薪资、公司规模筛选
139 周安装
Windows 基础设施管理员:Active Directory、组策略、PowerShell 自动化与混合身份管理专家
132 周安装
| Workflow |
SKILL.md + rules/ |
| Mixed | Workflow with conditional references | multi-tenant-architecture | SKILL.md + references/ |