원클릭으로
skill-creator
Save successful workflows as reusable pi skills. Use when a workflow worked well and should be preserved for future use.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Save successful workflows as reusable pi skills. Use when a workflow worked well and should be preserved for future use.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Create or update AGENTS.md / CLAUDE.md using industry best practices. Use when the user asks to create AGENTS.md, update project documentation, or after code changes that need documentation updates.
Resolve git merge/rebase conflicts by analyzing git history, commit intent, and code context. Use when merge or rebase produces conflicts.
4-phase root cause debugging: understand bugs before fixing.
TDD: enforce RED-GREEN-REFACTOR, tests before code.
| name | skill-creator |
| description | Save successful workflows as reusable pi skills. Use when a workflow worked well and should be preserved for future use. |
After completing a task that involved a non-obvious workflow:
~/.agents/skills/<name>/SKILL.md---
name: skill-name
description: "One-line description of what this skill does and when to use it."
---
# Skill Title
## When to Use
- Trigger condition 1
- Trigger condition 2
## Steps
1. Step one with exact commands
2. Step two
3. Verification step
## Pitfalls
- Common mistake and how to avoid it
mkdir -p ~/.agents/skills/<skill-name>
# Write SKILL.md there
Skills in ~/.agents/skills/ are user-local and automatically discovered by pi.
Good skill: Specific procedure with exact commands
## Steps
1. Run `uv run pytest tests/ -q` to get baseline
2. Check for `FAILED` in output
3. If failures, run `uv run pytest tests/test_specific.py -v` for details
Bad skill: Vague advice
## Steps
1. Run tests
2. Check results
3. Fix issues