install
source · Clone the upstream repo
git clone https://github.com/leon-ai/leon
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/leon-ai/leon "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/guess_the_number_skill" ~/.claude/skills/leon-ai-leon-guess-the-number-skill && rm -rf "$T"
manifest:
skills/guess_the_number_skill/SKILL.mdsource content
Guidance
Choose This Skill When
- The owner wants to start or continue the guess-the-number game.
Resolve With Context
- During the game loop, a bare number should usually continue the current guessing action.
- Treat replay as a yes or no decision only after the game has completed.
Avoid
- Do not restart the game if the owner is obviously continuing an active round.
- Do not treat unrelated numbers as a guess when the game context is inactive.