Use when building Claude Code skills or plugins for Pokemon TCG Pocket. Creates Pokemon-specific commands, integrates MCP servers, scaffolds deck-building workflows, and provides templates for Pokemon automation tools. Covers Claude skill structure and Pokemon integration patterns.
Provides templates and best practices for building Claude Code skills that integrate with Pokemon TCG Pocket. Activates when creating Pokemon-specific commands, deck-building workflows, or MCP server integrations for card analysis and meta strategies.
/plugin marketplace add briansunter/pokeclaude/plugin install briansunter-pokeclaude@briansunter/pokeclaudeThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Build Claude Code skills and plugins for Pokemon TCG Pocket with proven templates and best practices.
This skill helps developers create Claude Code extensions for Pokemon TCG Pocket, integrating the Pokemon Pocket MCP server and providing automation for deck building, card analysis, and meta strategies.
---
name: Skill Name
description: Use when [trigger condition]. Activates when user mentions [keywords].
---
# Skill Title
[Instructions for Claude Code]
---
name: build-deck
description: Build a Pokemon TCG Pocket deck around a specific Pokemon or strategy
---
# Build Pokemon TCG Pocket Deck
Use the Pokemon Pocket MCP server to create a competitive 20-card deck.
## Input Requirements
- Core Pokemon or strategy
- Preferred playstyle (aggro/control/tempo)
- Budget constraints (optional)
- Existing cards (optional)
## Process
1. Search for core Pokemon using MCP `search_cards`
2. Find synergies using `find_synergies`
3. Calculate energy requirements
4. Verify deck composition (20 cards, max 2 copies)
5. Analyze using `analyze_deck`
6. Provide optimization suggestions
## Output
- Complete 20-card deck list
- Energy curve analysis
- Strategic explanation
- Counter-strategy recommendations
---
name: analyze-card
description: Analyze Pokemon card stats, competitive value, and strategic usage
---
# Analyze Pokemon Card
Provide comprehensive card analysis using Pokemon Pocket MCP server.
## Input
- Card name or criteria
- Analysis focus (stats/rarity/meta)
## Process
1. Search card using `get_card` or `search_cards`
2. Retrieve type stats using `get_type_stats`
3. Calculate competitive viability
4. Find counters using `find_counters`
5. Generate comparison data
## Output
- Complete card breakdown
- Competitive tier rating
- Strategic usage guide
- Counter-strategy recommendations
{
"mcpServers": {
"pokemon-pocket-mcp": {
"type": "stdio",
"command": "npx",
"args": ["pokemon-pocket-mcp-server"],
"env": {}
}
}
}
search_cards - Search with filtersget_card - Get specific card detailsfind_synergies - Find card synergiesfind_counters - Find counter cardsget_type_stats - Type analysisquery_cards - Custom SQL queriesanalyze_deck - Deck analysispokemon://cards/all - Full database (2077 cards)pokemon://cards/unique - Unique cards (1068)pokemon://stats/types - Type breakdownsbuild-deck - Deck building promptcounter-deck - Counter-strategy promptoptimize-deck - Deck optimization prompt---
name: Clear name (64 chars max)
description: |
Use when [trigger].
Activates when user mentions [keywords].
Keep under 1024 characters.
---
Deck Building:
Card Analysis:
Meta Analysis:
1. Get user requirements
2. Search core cards via MCP
3. Find synergies
4. Calculate energy curve
5. Verify deck rules
6. Analyze with MCP
7. Provide optimization
8. Suggest counters
1. Retrieve card data via MCP
2. Calculate competitive metrics
3. Find similar cards
4. Identify counters
5. Generate tier rating
6. Provide strategic guide
1. Query database for statistics
2. Calculate usage rates
3. Analyze matchup matrix
4. Generate tier lists
5. Provide strategic advice
Deck Building Test:
Input: "Build Mewtwo ex deck"
Check: 20 cards, proper energy curve, competitive viability
Card Analysis Test:
Input: "Analyze Charizard ex"
Check: All stats, type effectiveness, tier rating
Meta Query Test:
Input: "Current S-tier Pokemon"
Check: Accurate tier list, supporting data
deck-validator.js - Validate deck compositionenergy-calculator.js - Calculate energy curvestype-counter.js - Generate counter listsmeta-analyzer.js - Analyze meta trendspokemon-rules.md - Complete game rulestype-chart.md - Type effectivenesstier-lists.md - Current tier rankingsdeck-archetypes.md - Archetype guidestype-chart.png - Visual type effectivenesstier-rankings.jpg - Tier list graphicenergy-curve.png - Energy curve examples---
name: Pokemon Deck Optimizer
description: Use when optimizing existing Pokemon TCG Pocket decks. Improves deck consistency, fixes energy curves, finds missing synergies, and provides competitive enhancements based on current meta.
---
# Pokemon Deck Optimizer
Optimize Pokemon TCG Pocket decks for competitive play.
## Optimization Process
### 1. Current Deck Analysis
- Use MCP `analyze_deck` for composition
- Identify energy curve issues
- Calculate average HP/attack
- Find missing synergies
### 2. Meta Alignment
- Compare to S-tier strategies
- Identify power level gaps
- Suggest meta-appropriate additions
- Maintain 20-card format
### 3. Energy Curve Fixes
- Calculate energy distribution
- Ensure 1-2 type focus
- Avoid 3+ energy costs
- Balance early/mid/late game
### 4. Synergy Improvements
- Use `find_synergies` for additions
- Enhance type coverage
- Add counter-strategies
- Maintain consistency
## Output Format
OPTIMIZED DECK: [Name]
Changes Made:
Energy Curve: [Before] → [After] Type Distribution: [Chart] Competitive Tier: [Rating]
Key Improvements:
Expected Matchups:
## Pokemon Skill Marketplace
### Publishing Requirements
- Complete README.md
- Working examples
- Tested MCP integration
- Version tag (1.0.0)
- GitHub repository
### Distribution
```json
{
"commands": ["./commands/"],
"skills": ["./skills/"],
"mcpServers": {
"pokemon-pocket": {
"type": "stdio",
"command": "npx",
"args": ["pokemon-pocket-mcp-server"]
}
}
}
Skill Creation:
"Create a skill for deck building"
"Build a command for card analysis"
"Scaffold a meta analysis skill"
Integration:
"Add Pokemon MCP to my plugin"
"Connect deck analysis to existing skill"
"Integrate card search in my workflow"
Templates:
"Show me Pokemon skill template"
"Give me deck building command example"
"Provide Pokemon analysis pattern"