Skip to main content

buddy-reroll

Reroll your Claude Code buddy (companion) to get a specific species, rarity, or shiny variant. Use when the user says "reroll buddy", "change my buddy", "I want a shiny buddy", "give me a legendary dragon", "/buddy-reroll", or any request to customize their Claude Code companion pet.

Aller à l'installation

Informations de source

Dépôt
nangongwentian-fe/jay-skills
Dernière activité de la source
1 avril 2026 à 04:17
Langue détectée de SKILL.md
anglais
Étoiles
12
Forks
0

Options d'installation

Le prompt qui vérifie d'abord la source est sélectionné par défaut. Vous pouvez passer à une commande directe ou télécharger une copie locale.

Vérifiez les fichiers source

Lisez SKILL.md et les fichiers associés affichés par SkillsMP avant de décider de l'installer.

Explorateur de fichiers
2 fichiers

Affichage de SKILL.md

SKILL.md
Instructions source · Aperçu en lecture seule
name
buddy-reroll
description
Reroll your Claude Code buddy (companion) to get a specific species, rarity, or shiny variant. Use when the user says "reroll buddy", "change my buddy", "I want a shiny buddy", "give me a legendary dragon", "/buddy-reroll", or any request to customize their Claude Code companion pet.
# Buddy Reroll Reroll the Claude Code `/buddy` companion by brute-forcing the internal SALT constant to find a seed that produces the desired buddy for the user's account. ## How it works Buddy generation is deterministic: `hash(userId + SALT)` seeds a PRNG that decides species, rarity, shiny, etc. Changing SALT changes the outcome. The script tries up to 500k SALT values to find matches. ## Available attributes - **species** (18): duck, goose, blob, cat, dragon, octopus, owl, penguin, turtle, snail, ghost, axolotl, capybara, cactus, robot, rabbit, mushroom, chonk - **rarity**: common (60%), uncommon (25%), rare (10%), epic (4%), legendary (1%) - **shiny**: 1% chance per roll - **eye**: `·` `✦` `×` `◉` `@` `°` - **hat**: none, crown, tophat, propeller, halo, wizard, beanie, tinyduck (common rarity always gets none) ## Workflow ### Step 1: Ask what the user wants If the user didn't specify, ask which attributes matter to them (species, rarity, shiny, etc.). Not all combinations are findable within 500k iterations — rarer combos (e.g. legendary + shiny + specific species) may have 0-3 results. ### Step 2: Search for matching SALTs Run the bundled script with the user's criteria: ```bash node <skill-dir>/scripts/buddy_reroll.mjs --species dragon --rarity legendary --shiny --max-results 10 ``` Flags: `--species X`, `--rarity X`, `--shiny`, `--eye X`, `--hat X`, `--max-results N`, `--show-current` The script auto-detects the user's userId from their Claude config. Output is JSON. ### Step 3: Present results Show a table of matching buddies with salt, rarity, species, eye, hat, shiny, and stats. Let the user pick one. ### Step 4: Apply the chosen SALT Run with `--apply <salt>` to patch cli.js and clear the old companion: ```bash node <skill-dir>/scripts/buddy_reroll.mjs --species dragon --shiny --apply "friend-2026-1578" ``` This will: 1. Replace the SALT in the installed `cli.js` (auto-detected via `which claude`) 2. Delete the `companion` field from the user's Claude config ### Step 5: Instruct user Tell the user to **restart Claude Code** and run `/buddy` to hatch their new companion. Warn: upgrading Claude Code (`npm update`) will reset the SALT — they'll need to reroll again.
Voir sur GitHub