원클릭으로
skillify
Capture this session's repeatable process into a reusable skill. Call at the end of a workflow you want to automate in the future.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Capture this session's repeatable process into a reusable skill. Call at the end of a workflow you want to automate in the future.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | skillify |
| description | Capture this session's repeatable process into a reusable skill. Call at the end of a workflow you want to automate in the future. |
| allowed-tools | ["Read","Write","Edit","Glob","Grep","AskUserQuestion","Bash(mkdir:*)"] |
| when_to_use | Use when the user wants to turn a completed workflow into a reusable skill. Trigger phrases: "turn this into a skill", "make this reusable", "skillify this", "save this workflow". |
| argument-hint | [description of the process you want to capture] |
| compatibility | Claude Code |
You are capturing this session's repeatable process as a reusable skill.
Before asking any questions, analyze the conversation to identify:
Use AskUserQuestion for ALL questions. Never ask questions via plain text. For each round, iterate as needed until the user is happy. The user always has a freeform "Other" option — do NOT add your own "Needs tweaking" option.
Round 1: High-level confirmation
Round 2: More details
.claude/skills/<name>/SKILL.md) — for project-specific workflows~/.claude/skills/<name>/SKILL.md) — follows you across all reposRound 3: Breaking down each step For each major step, if not obvious, ask:
You may do multiple rounds here, especially with 3+ steps. Pay attention to user corrections during the session.
Round 4: Final questions
Don't over-ask for simple processes.
Create the skill directory and file at the user-chosen location.
Use this format:
---
name: {{skill-name}}
description: {{one-line description}}
allowed-tools:
- {{list of tool permission patterns}}
when_to_use: {{when Claude should auto-invoke, with trigger phrases and examples}}
argument-hint: "{{hint showing argument placeholders}}"
arguments:
- arg1
- arg2
context: {{inline or fork — omit for inline}}
---
# {{Skill Title}}
Description of skill.
## Inputs
- `$arg_name`: Description of this input
## Goal
Clearly stated goal. Define artifacts or completion criteria.
## Steps
### 1. Step Name
What to do. Be specific and actionable.
**Success criteria**: What proves this step is done.
**Artifacts**: (optional) Data produced for later steps.
**Human checkpoint**: (optional) When to pause for user confirmation.
**Rules**: (optional) Hard constraints.
...
Frontmatter rules:
allowed-tools: Minimum permissions (use patterns like Bash(gh:*) not just Bash)context: fork: Only for self-contained skills that don't need mid-process user inputwhen_to_use is CRITICAL — start with "Use when..." and include trigger phrasesarguments and argument-hint: Only include if the skill takes parametersStep structure tips:
[human] in the titleBefore writing, output the complete SKILL.md as a code block for review. Ask for confirmation using AskUserQuestion: "Does this look good to save?"
After writing, tell the user:
/{{skill-name}} [arguments]Skills for accessing and searching docs in DeepWiki/GitHub’s public code repositories can help users understand open-source project source codes, and users can also ask questions directly about the code docs.
Interact with local Chrome browser session (only on explicit user approval after being asked to inspect, debug, or interact with a page open in Chrome)
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
Web reading, search, academic research, NLP, screenshots, and PDF extraction via Jina AI mcpcall. TRIGGER when need to read a URL, search the web, find academic papers (arXiv/SSRN), classify text, rerank documents, deduplicate content, capture screenshots, or extract PDF figures.
Guide and template for converting MCP servers into self-contained Claude Code skills with a Python wrapper script. TRIGGER when creating a new MCP skill, wrapping an MCP server as a skill, or need the mcpcall script template.
AI-powered documentation for GitHub repositories via DeepWiki MCP. TRIGGER when need to understand a GitHub repository, read its documentation topics, ask questions about a repo's codebase, architecture, or usage, or explore how an open-source project works.