From pokeclaude
Use when building Claude Code skills or plugins for Pokemon TCG Pocket. Activates when creating Pokemon-specific commands, integrating MCP servers, scaffolding deck-building workflows, or writing Pokemon automation tools. Provides templates, MCP tool references, and Pokemon-specific skill patterns.
How this skill is triggered — by the user, by Claude, or both
Slash command
/pokeclaude:pokemon-skill-builderThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create Claude Code skills and plugins for Pokemon TCG Pocket with proven templates.
Create Claude Code skills and plugins for Pokemon TCG Pocket with proven templates.
---
name: skill-name
description: |
Use when [trigger condition].
Activates when user mentions [keywords].
Provides [capability summary].
---
# Skill Title
## Overview
[100-200 word capability description]
## Workflow
[Step-by-step process with MCP tool calls]
## MCP Integration
[Which tools this skill uses]
## Examples
[2-3 real usage scenarios]
1. Get user requirements (core Pokemon, playstyle)
2. search_cards → find core + evolution line
3. find_synergies → discover partner cards
4. Plan point map (1-1-3 for Mega decks)
5. Validate: 20 cards, max 2 copies, 1-2 energy types
6. analyze_deck → composition check
7. find_counters → counter-strategy advice
1. get_card or search_cards → retrieve data
2. Evaluate: HP, attacks, abilities, energy costs
3. find_synergies → partner discovery
4. find_counters → threat identification
5. Rate competitive tier
1. get_type_stats → type distribution
2. query_cards → SQL analysis (usage rates, damage benchmarks)
3. find_counters → matchup analysis
4. Synthesize into tier list or trend report
{
"mcpServers": {
"pokemon-pocket-mcp": {
"command": "npx",
"args": ["pokemon-pocket-mcp-server"]
}
}
}
| Tool | Purpose | Key Parameters |
|---|---|---|
search_cards | Filter cards by attributes | name, type, hp, set, rarity |
get_card | Single card details | id |
find_synergies | Partner card discovery | card name or type |
find_counters | Counter-strategy identification | type or card |
get_type_stats | Type distribution & averages | (none required) |
query_cards | Custom SQL on card database | SQL query string |
analyze_deck | Deck composition analysis | card list |
pokemon://cards/all — Full databasepokemon://cards/unique — Deduplicated cardspokemon://stats/types — Type breakdownsfind_synergies / find_counters instead of hardcoding card relationshipsValidate new Pokemon skills against:
npx claudepluginhub briansunter/pokeclaudeCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.