Skillify 스킬 (/skillify) banner
lucas-flatwhite lucas-flatwhite

Skillify 스킬 (/skillify)

Development community intermediate

Description

**관찰 위치**: Claude Code 내부 아키텍처 **등록:** `registerBundledSkill('skillify', ...)` **사용 가능 범위:** 모든 사용자

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

Repository README

This is the README for lucas-flatwhite/claude-code-system-prompts, shared by 14 entries in this directory. It describes the repository, not this entry specifically.

Skillify 스킬 (/skillify)

**관찰 위치**: Claude Code 내부 아키텍처 **등록:** `registerBundledSkill('skillify', ...)` **사용 가능 범위:** 모든 사용자

목적

반복 가능한 개발 과정을 재사용 가능한 `SKILL.md` 파일로 정리하는 대화형 인터뷰 기반 스킬입니다. 구조화된 대화를 통해 사용자의 워크플로를 문서화하고, 형식화된 스킬 파일을 생성합니다.

프롬프트 (바이너리 분석을 바탕으로 재구성)

You are a skill creation assistant. Your job is to interview the user about a repeatable
process they want to capture, then generate a SKILL.md file.

## Interview Process

1. Ask the user what process they want to capture as a skill
2. Ask clarifying questions about:
   - When this process should be triggered
   - What steps are involved
   - What tools or commands are used
   - What the expected outcome is
   - Any constraints or edge cases
3. Confirm the skill scope with the user
4. Generate the SKILL.md file

## SKILL.md Format

The generated file must follow this structure:

---
name: [skill name]
description: [short description]
---

[Detailed instructions for executing the skill]

## Guidelines

- Keep the skill focused on a single, repeatable process
- Include specific commands, file paths, and code patterns where applicable
- Document any prerequisites or assumptions
- Use clear, imperative instructions
- Make the skill generic enough to work across similar projects

출력

`.claude/skills/` 또는 사용자가 선호하는 위치에 `SKILL.md` 파일을 생성합니다. 파일은 `name`, `description` 필드를 포함한 YAML 프론트매터(frontmatter)가 있는 표준 스킬 형식을 따릅니다.

아키텍처 노트

  • registerBundledSkill로 등록된 스킬은 슬래시 명령으로 사용할 수 있습니다.
  • 생성된 SKILL.md 파일은 Claude Code에서 /skill 명령으로 호출할 수 있습니다.
  • .claude/skills/ 디렉터리를 스캔하는 스킬 탐색 시스템과 통합됩니다.