skillify
GitHub将当前会话中发现的可重复工作流提取为可复用的技能草稿。通过质量门禁筛选,捕获包含决策启发式、约束和验证步骤的复杂流程,生成带有YAML元数据的完整技能文件,避免通用代码片段。
Trigger Scenarios
Install
npx skills add Yeachan-Heo/oh-my-claudecode --skill skillify -g -y
SKILL.md
Frontmatter
{
"name": "skillify",
"aliases": [
"learner"
],
"description": "Turn a repeatable workflow from the current session into a reusable OMC skill draft"
}
Skillify
Use this skill when the current session uncovered a repeatable workflow that should become a reusable OMC skill.
Compatibility:
/oh-my-claudecode:learneris a deprecated alias for this skill. Prefer/oh-my-claudecode:skillifyin docs, prompts, and new workflows. Internal implementation modules may still use the learner name.
Goal
Capture a successful multi-step workflow as a concrete skill draft instead of rediscovering it later.
Quality Gate
Before extracting a skill, all three should be true:
- "Could someone Google this in 5 minutes?" → No.
- "Is this specific to this codebase, project, or workflow?" → Yes.
- "Did this take real debugging, design, or operational effort to discover?" → Yes.
Prefer skills that encode decision-making heuristics, constraints, pitfalls, and verification steps. Avoid generic snippets, boilerplate, or library usage examples that belong in normal documentation.
Workflow
- Identify the repeatable task the session accomplished.
- Extract:
- inputs
- ordered steps
- success criteria
- constraints / pitfalls
- verification evidence
- best target location for the skill
- Decide whether the workflow belongs as:
- a repo built-in skill
- a user/project learned skill
- documentation only
- When drafting a learned skill file, output a complete skill file that starts with YAML frontmatter.
- Never emit plain markdown-only skill files.
- Do not write plain markdown without frontmatter.
- Minimum frontmatter:
--- name: <skill-name> description: <one-line description> triggers: - <trigger-1> - <trigger-2> --- - Write learned/user/project skills to flat file-backed paths:
${CLAUDE_CONFIG_DIR:-~/.claude}/skills/omc-learned/<skill-name>.md.omc/skills/<skill-name>.md
- Remember that uncommitted skills are still worktree-local until committed or copied to a user-level directory.
- Draft the rest of the skill file with clear triggers, steps, success criteria, and pitfalls.
- Point out anything still too fuzzy to encode safely.
Rules
- Only capture workflows that are actually repeatable.
- Keep the skill practical and scoped.
- Prefer explicit success criteria over vague prose.
- If the workflow still has unresolved branching decisions, note them before drafting.
- Keep
omc-learnedas the storage directory name for compatibility; do not present it as the public invocation name.
Output
- Proposed skill name
- Target location
- Draft workflow structure or complete skill file
- Verification or quality-gate notes
- Open questions, if any
Version History
- 41a4c0f Current 2026-07-25 07:06


