{
  "markdown": "# Pokemon Pokedex — Claude Code Plugin\n\nA comprehensive Pokemon Pokedex plugin for Claude Code. Covers all 1,025 Pokemon across Generations 1–9\nwith full base stats, abilities, moves, type matchups, species data, and Pokedex entries from every main\nseries game.\n\n## Features\n\n- Complete Pokedex for Generations 1–9 (Bulbasaur through Pecharunt)\n- Base stats (HP, Atk, Def, SpA, SpD, Spe, BST) for all 1,025 Pokemon\n- Abilities (Slot 1, Slot 2, Hidden) for every Pokemon\n- 765 moves from Gen 1–9 with type, category, power, accuracy, PP, and effect descriptions\n- Full type effectiveness chart for all 18 types including dual-type calculations\n- Legendary, mythical, and pseudo-legendary flags\n- Egg groups, catch rates, growth rates\n- Pokedex entries from every game (Red/Blue through Scarlet/Violet)\n- A command-line search utility for fast data queries\n\n## Installation\n\n### Test locally with `--plugin-dir`\n\n```bash\nclaude --plugin-dir ./pokemon-pokedex-plugin\n```\n\nThen try the skill:\n\n```\n/pokemon-pokedex:pokedex\n```\n\n### Install from a marketplace\n\nIf this plugin is published to a marketplace, install it with:\n\n```\n/plugin install pokemon-pokedex\n```\n\n## Usage\n\nOnce installed, Claude will automatically use the Pokedex skill when you ask Pokemon-related questions.\nYou can also invoke it directly:\n\n```\n/pokemon-pokedex:pokedex\n```\n\n### What you can ask\n\n- \"What type is Garchomp and what are its base stats?\"\n- \"Which Pokemon from Gen 1 are pure Fire type?\"\n- \"What are Mewtwo's abilities and catch rate?\"\n- \"Show me all Dragon/Flying type Pokemon\"\n- \"What are the strongest Fire-type special moves?\"\n- \"What beats Steel/Fairy dual type?\"\n- \"List all pseudo-legendary Pokemon\"\n- \"Write me a Python script to load and filter the Pokedex by BST\"\n- \"Build a type effectiveness calculator in JavaScript\"\n- \"Which legendary Pokemon have the highest Speed stat?\"\n\n### Command-line search utility\n\nThe plugin includes `skills/pokedex/scripts/search_pokemon.py` for direct data queries:\n\n```bash\n# From inside the skills/pokedex/ directory:\npython3 scripts/search_pokemon.py --name charizard --with-stats\npython3 scripts/search_pokemon.py --type fire --gen 1\npython3 scripts/search_pokemon.py --pseudo\npython3 scripts/search_pokemon.py --bst-min 600\npython3 scripts/search_pokemon.py --dual-type water flying\npython3 scripts/search_pokemon.py --moves --move-type electric --power-min 90\npython3 scripts/search_pokemon.py --ability intimidate\npython3 scripts/search_pokemon.py --stats\n```\n\n## Bundled Data Files\n\n| File | Description | Size |\n|------|-------------|------|\n| `references/pokemon_compact.json` | Core Pokedex — all 1,021 Pokemon with type, gen, species, habitat, height, weight, and a description | ~282KB |\n| `references/pokemon_data.json` | Full Pokedex with all game-specific Pokedex entries | ~1.5MB |\n| `references/pokemon_extra_data.json` | Base stats, abilities, egg groups, catch rates, growth rates, legendary flags | ~476KB |\n| `references/pokemon_moves.json` | 765 moves from Gen 1–9 | ~139KB |\n| `references/type_chart.json` | Complete type matchup chart for all 18 types | ~3.5KB |\n\nData sources: Psypokes Pokedex (PDF), augmented from training knowledge for stats, abilities, and moves.\n\n## What's Not Included\n\nFor data that isn't in the bundled files, the plugin will direct Claude to\n[PokeAPI](https://pokeapi.co/api/v2/) (free, no auth required):\n- Individual Pokemon move learnsets\n- TM/TR/HM compatibility lists\n- Breeding compatibility chains\n- Held item details\n- Competitive EV spreads and natures\n\n## Plugin Structure\n\n```\npokemon-pokedex-plugin/\n├── .claude-plugin/\n│   └── plugin.json          # Plugin manifest\n├── skills/\n│   └── pokedex/\n│       ├── SKILL.md         # Skill instructions and examples\n│       ├── references/      # Bundled JSON data files\n│       │   ├── pokemon_compact.json\n│       │   ├── pokemon_data.json\n│       │   ├── pokemon_extra_data.json\n│       │   ├── pokemon_moves.json\n│       │   └── type_chart.json\n│       └── scripts/\n│           └── search_pokemon.py  # CLI search utility\n└── README.md\n```\n\n## License\n\nMIT\n",
  "bytes": 4092,
  "sha": "11332ea9ec2be81a09f814384e7f59006c5149c42e7675253f0e508928fd5740",
  "repo_slug": "snlabat/pokemon-pokedex-plugin",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/plg_snlabat_pokemon_pokedex_plugin_pok_dex_94a22961/readme"
}