一键导入
skill-builder
Create new skills for Claude Code. This skill automates the creation of skill directories and boilerplate SKILL.md files.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create new skills for Claude Code. This skill automates the creation of skill directories and boilerplate SKILL.md files.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | skill-builder |
| description | Create new skills for Claude Code. This skill automates the creation of skill directories and boilerplate SKILL.md files. |
Follow these steps to create a new skill for Claude Code.
Understand the Request: Identify the name of the skill the user wants to create and its purpose/description. If the name is not clear, ask the user or propose a name (kebab-case preferred, e.g., feature-implementer).
Create Skill Directory:
.claude/skills/<skill_name> (where <skill_name> is the name of the new skill).Create SKILL.md:
SKILL.md inside the new directory.---
name: <skill_name>
description: <short description of what the skill does>
---
# <Skill Name> Instructions
<Detailed instructions on how to perform the skill. Break it down into steps.>
## Usage
<Examples of when to use this skill>
Optional: Create Support Directories:
scripts/ or examples/ directories within the skill folder.Notify User:
.claude/skills/<skill_name>.Implement and run tests adhering to valid architecture and best practices.
Implement and run tests adhering to valid architecture and best practices.
Bump the version of any apps/* module following semver, including syncing dependency references and secondary version files.
Use this skill to implement new scrappers using the Scrapling framework (https://github.com/D4Vinci/Scrapling).
Implement and run tests adhering to valid architecture and best practices.
Create and run E2E tests using Playwright in the `apps/e2e` module.