From tkm
Executes Tokenmon CLI commands to manage Pokémon party, view Pokédex/status/items/achievements, switch regions/generations, nickname/call Pokémon, and handle starter selection. English/Korean support.
npx claudepluginhub thunderconch/tkm --plugin tkmThis skill uses the workspace's default tool permissions.
Run a Tokenmon CLI command for the user.
Initializes Tokenmon plugin by resolving root, installing npm dependencies, selecting Pokémon generation/language/starter, running setup, and verifying status.
Displays the player's creature collection by calling the Node.js CLI command 'node scripts/cli.js collection'. Free view operation with no energy cost.
Sets up PokeClaw Android app for on-device AI agent using Gemma 4 via LiteRT-LM with tool calling, accessibility automation for UI tasks like tap, swipe, messaging.
Share bugs, ideas, or general feedback.
Run a Tokenmon CLI command for the user.
Run with the Bash tool and show the result:
P="${CLAUDE_PLUGIN_ROOT:-$(ls -d ~/.claude/plugins/marketplaces/tkm 2>/dev/null || ls -d ~/.claude/plugins/cache/tkm/tkm/*/ 2>/dev/null | sort -V | tail -1)}"
"$P/bin/tsx-resolve.sh" "$P/src/cli/tokenmon.ts" $ARGUMENTS
If $ARGUMENTS is empty, default to status.
If $ARGUMENTS is --help or -h, run help.
| Command | Description |
|---|---|
status | Show party and stats |
starter | List starter options (only before choosing) |
starter <id> | Choose starter by number or pokemon ID |
party | View current party |
party add <name> | Add Pokémon to party |
party remove <name> | Remove Pokémon from party |
party dispatch <name> | Set subagent dispatch Pokémon (1.5x XP) |
nickname <name> <nick> | Set a nickname for a Pokémon |
call <name> | Call a Pokémon (EV bond system) |
unlock list | List unlocked Pokémon |
pokedex | Browse Pokédex (--type/--region/--rarity filters) |
pokedex <name> | Show Pokémon details |
region | Show current region (within active generation) |
region list | List all regions in the active generation |
region move <id> | Move to a region by ID (e.g. region move 3) |
gen | Show active generation |
gen list | List available generations |
gen switch <id> | Switch generation (e.g. gen switch gen1) |
items | Show items |
achievements | Show achievements |
config set <key> <value> | Change config (e.g. config set language en) |
config set language en | Switch to English mode |
config set language ko | Switch to Korean mode (한국어 모드) |
help | Show full help |
When starter is called without an argument, it lists options and exits.
Use AskUserQuestion to let the user pick, then run starter <id>.
starter → shows numbered list of startersstarter <number> with the user's choiceImportant: starter only works before a starter is chosen. If already chosen, it shows a warning.
gen switch <id> (e.g. gen switch gen1), not region commands.