Skip to main content

skill-create

Create new project-local skills with proper directory structure and SKILL.md template. Generates a ready-to-use skill that Gemini CLI can activate immediately. Use proactively when user wants to create a new custom skill or slash command. Triggers: skill-create, new skill, create skill, add skill, custom skill, 스킬 생성, 새 스킬, 스킬 만들기, 커스텀 스킬, スキル作成, 新しいスキル, カスタムスキル, 创建技能, 新技能, 自定义技能, crear skill, nueva habilidad, habilidad personalizada, créer compétence, nouvelle compétence, compétence personnalisée, Skill erstellen, neuer Skill, benutzerdefinierter Skill, creare skill, nuova competenza, competenza personalizzata Do NOT use for: modifying existing skills, listing skills (use /skill-status)

설치로 이동

소스 정보

저장소
ww-w-ai/bkit-gemini
최근 소스 활동
2026년 4월 9일 13:39
감지된 SKILL.md 언어
영어
스타
66
포크
16

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
skill-create
classification
C
description
Create new project-local skills with proper directory structure and SKILL.md template. Generates a ready-to-use skill that Gemini CLI can activate immediately. Use proactively when user wants to create a new custom skill or slash command. Triggers: skill-create, new skill, create skill, add skill, custom skill, 스킬 생성, 새 스킬, 스킬 만들기, 커스텀 스킬, スキル作成, 新しいスキル, カスタムスキル, 创建技能, 新技能, 自定义技能, crear skill, nueva habilidad, habilidad personalizada, créer compétence, nouvelle compétence, compétence personnalisée, Skill erstellen, neuer Skill, benutzerdefinierter Skill, creare skill, nuova competenza, competenza personalizzata Do NOT use for: modifying existing skills, listing skills (use /skill-status)
user-invocable
true
argument-hint
[skill-name]
allowed-tools
["read_file","write_file","glob","list_directory"]
imports
[]
agents
{}
context
session
memory
project
pdca-phase
plan
# Skill Create > Generate new project-local skills with proper structure ## Commands | Command | Description | Example | |---------|-------------|---------| | `/skill-create [name]` | Create a new skill | `/skill-create api-monitor` | ## How to Execute ### 1. Validate Name - Must be lowercase with hyphens only (`[a-z0-9-]+`) - Must not conflict with existing skills in `skills/` directory - Must be 2-30 characters long ### 2. Create Directory Create `skills/{name}/` directory. ### 3. Generate SKILL.md Write `skills/{name}/SKILL.md` with the following template: ```markdown --- name: {name} classification: C description: | {User-provided description or placeholder} Triggers: {name}, {related keywords} user-invocable: true argument-hint: "[args]" allowed-tools: - read_file - write_file - glob - grep_search imports: [] agents: {} context: session memory: project pdca-phase: do --- # {Name} Skill > {One-line description} ## Commands | Command | Description | Example | |---------|-------------|---------| | `/{name}` | {Main action} | `/{name} [args]` | ## How to Execute 1. {Step 1} 2. {Step 2} 3. {Step 3} ## Output Format {Define expected output} ``` ### 4. Verify Creation - Confirm the directory exists - Confirm SKILL.md has valid YAML frontmatter - Show the user the created file path ### 5. Interactive Refinement After creating the template, ask the user: 1. What should this skill do specifically? 2. What MCP tools should it use? 3. What triggers should activate it (in multiple languages)? Then update the SKILL.md with their answers. ## Skill Classification | Code | Type | Description | |------|------|-------------| | `W` | Workflow | Multi-step process (PDCA, deploy, QA) | | `C` | Command | Single action (audit, status, create) | | `G` | Guide | Educational/reference content | ## File Structure ``` skills/{name}/ SKILL.md # Required - skill definition and instructions ``` ## Naming Conventions - Use descriptive, action-oriented names: `api-monitor`, `db-migrate`, `log-analyzer` - Avoid generic names: `helper`, `util`, `misc` - Use hyphens to separate words, not underscores or camelCase ## Output Format ```markdown ## Skill Created: {name} - **Path**: skills/{name}/SKILL.md - **Classification**: C (Command) - **Status**: Ready to use Next steps: 1. Review and customize `skills/{name}/SKILL.md` 2. Add specific triggers for your use case 3. Test with `/{name}` command ``` ## Validation Rules 1. **No duplicate names** - check `skills/` directory first 2. **Valid characters** - lowercase alphanumeric and hyphens only 3. **Valid YAML** - frontmatter must parse correctly 4. **Required fields** - name, classification, description, user-invocable
GitHub에서 보기