Use when the user wants to reroll their Claude Code /buddy companion pet. Triggers on "/reroll-buddy", "buddy 다시 뽑기", "펫 초기화", "companion 리셋", "buddy 리롤", "다른 펫 뽑고 싶어".
Claude Code /buddy 펫(companion)을 초기화하여 다시 뽑을 수 있게 하는 스킬.
/buddy로 뽑은 펫 정보는 ~/.claude.json 파일의 companion 키에 저장된다. 이 키를 제거하면 /buddy를 다시 실행하여 새 펫을 뽑을 수 있다.
python3 -c "
import json, os
path = os.path.expanduser('~/.claude.json')
with open(path, 'r') as f:
data = json.load(f)
if 'companion' not in data:
print('NO_COMPANION')