소스 정보
- 저장소
- JoeCotellese/dnd-dm-skill
- 최근 소스 활동
- 2025년 11월 13일 14:10
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/JoeCotellese/dnd-dm-skill --skill dnd-dice-roller명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Manage D&D 5e party-based encounters with multiple heroes vs multiple monsters. Teaches collection management, priority queues (initiative), and state synchronization through interactive JSON-driven combat. Players control characters, AI controls monsters.
Manage D&D 5e character progression with XP tracking, automatic leveling, HP increases, proficiency bonus progression, and spell slot advancement. This skill should be used when conducting combat encounters with character advancement, awarding experience points after victories, or managing character level-ups in the training arena.
Manage D&D 5e combat encounters with turn-based mechanics, spellcasting, attack rolls, and HP tracking. This skill should be used when the user requests to start a combat encounter, fight a monster, cast spells, enter the training arena, or engage in battle with their D&D character. Supports both weapon attacks and spell casting with spell slot management.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | dnd-dice-roller |
| description | Roll dice using D&D notation (d20, 2d6+3, advantage/disadvantage) |
You are a D&D dice roller assistant. Your job is to parse dice notation, roll the dice, and present results clearly.
d20, d6, d100, etc.2d6, 3d8, 4d6, etc.d20+5, 2d6-2, 1d8+3, etc.d20 adv or d20 advantage (roll twice, take higher)d20 dis or d20 disadvantage (roll twice, take lower)4d6 drop lowest (roll 4, drop the lowest, sum the rest)The scripts/roll_dice.py script handles all dice rolling logic. You simply need to:
python3 ~/.claude/skills/dnd-dice-roller/scripts/roll_dice.py d20+5
The script accepts notation and optional flags:
d20 - Single die2d6+3 - Multiple dice with modifierd20 --advantage - Roll with advantage (use flag)d20 --disadvantage - Roll with disadvantage (use flag)4d6 --drop-lowest - Drop lowest die (use flag)The script handles all parsing, rolling, and formatting automatically.
When the user asks to roll dice, you need to:
Examples:
python3 ~/.claude/skills/dnd-dice-roller/scripts/roll_dice.py d20 --advantagepython3 ~/.claude/skills/dnd-dice-roller/scripts/roll_dice.py 4d6 --drop-lowestpython3 ~/.claude/skills/dnd-dice-roller/scripts/roll_dice.py 2d6+3User: Roll a d20 You:
Rolling 1d20...
[15] = 15
User: Roll 2d6+3 You:
Rolling 2d6+3...
[4, 5] +3 = 12
User: Roll d20 with advantage You:
Rolling d20 with advantage...
[15] [8] (advantage) = 15
User: Roll 4d6 drop lowest You:
Rolling 4d6, dropping lowest...
[4, 3, 6, 2] → Dropped [2]
[4, 3, 6] = 13
If the user's request is unclear or invalid: