pokemon-go-mcp: Skill for Claude Code

.claude/skills/mypy/SKILL.md

mypy is a skill for Claude Code from GhostTypes/pokemon-go-mcp. It costs 146 tokens per session (1,856 once invoked), scanned A, original, MIT.

A Python static type checker and guidance package built around mypy, which finds potential bugs from type information before code runs.

In plain words
What is it for?
Use it to annotate Python code, run checks, configure mypy in common project files, enable stricter checks, and manage module-specific settings.
Why use it?
It helps introduce type checking gradually, configure it consistently, and understand errors caused by missing or incompatible Python types.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is GhostTypes/pokemon-go-mcp's own configuration. It tells Claude Code how to work on pokemon-go-mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything pokemon-go-mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to GhostTypes/pokemon-go-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/GhostTypes/pokemon-go-mcp/main/.claude/skills/mypy/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/GhostTypes/pokemon-go-mcp

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for mypy

README.md
[![agentmods](https://agentmods.dev/badge/skills/ghosttypes/pokemon-go-mcp/mypy/github.svg)](https://agentmods.dev/skills/ghosttypes/pokemon-go-mcp/mypy)
Your own site
<a href="https://agentmods.dev/skills/ghosttypes/pokemon-go-mcp/mypy"><img src="https://agentmods.dev/badge/skills/ghosttypes/pokemon-go-mcp/mypy/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for mypy

Your own site · 80×15
<a href="https://agentmods.dev/skills/ghosttypes/pokemon-go-mcp/mypy"><img src="https://agentmods.dev/badge/skills/ghosttypes/pokemon-go-mcp/mypy.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 146 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,856 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00146 $0.01856
Opus 5 $0.00073 $0.00928
Sonnet 5 $0.00029 $0.00371
Haiku 4.5 $0.00015 $0.00186

Measured 9d ago against content hash db8e0ea1afb6, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

mypy scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

The scan reads SKILL.md. This mod also ships 3 executable files (scripts/clean_markdown.py, scripts/discover_pages.py, scripts/scrape_docs.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/mypy/SKILL.md · 273 lines

How it starts

The opening of the file, as written. The whole thing — 273 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Mypy - Professional Static Type Checking

Mypy is a static type checker for Python that finds bugs without running code. This skill provides comprehensive guidance for professional mypy integration and usage.

Quick Start

Installation and Basic Usage

# Install mypy
python3 -m pip install mypy

# Check a file
mypy program.py

# Check with strict mode
mypy --strict program.py

Basic Type Annotations

def greeting(name: str) -> str:
    return 'Hello ' + name

# Type checking catches errors
greeting(3)  # Error: Argument has incompatible type "int"; expected "str"

Configuration

Mypy supports multiple configuration formats (discovery order):

  1. mypy.ini
  2. .mypy.ini
  3. pyproject.toml (with [tool.mypy] section)
  4. setup.cfg (with [mypy] section)

Essential Configuration Options

# mypy.ini
[mypy]
python_version = 3.11
warn_return_any = True
warn_unused_configs = True
disallow_untyped_defs = True

# Per-module configuration
[mypy-module_name.*]
ignore_missing_imports = True

See references/config_file.md for complete configuration reference.

Core Workflows

Adding Types to Existing Code

  1. Start with --check-untyped-defs for gradual typing
  2. Use # type: ignore comments sparingly for temporary exceptions
  3. Add type annotations incrementally, module by module
  4. Enable stricter checks progressively

See references/existing_code.md for migration strategies.

Resolving Type Errors

When mypy reports errors:

  1. Check the error code (e.g., [attr-defined])
  2. Consult error code documentation:
    • references/error_code_list.md - Default errors
    • references/error_code_list2.md - Optional checks
  3. Use type narrowing techniques when needed
  4. Consider reveal_type() for debugging type inference

See references/common_issues.md for troubleshooting.

Working with Advanced Types

Generics: references/generics.md

  • TypeVar, Generic classes, bounded type variables
  • Variance (covariant, contravariant, invariant)

Read the full file on GitHub · 273 lines

Files

What ships with it

40 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 273 lines · 146 tokens per session scan A db8e0ea1afb6

Subscribe to this mod's changes

mypy is a skill published in the GitHub repository GhostTypes/pokemon-go-mcp (7 stars, last pushed today), licensed MIT. It adds 146 tokens to every session and 1,856 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

matlab

Build, review, migrate, and safely plan MATLAB or GNU Octave numerical workflows, including arrays, tabular/time data, tests, projects, graphics, MAT files, and explicit Python interoperability.

K-Dense-AI/scientific-agent-skills · 42 tokens

pennylane

Hardware-agnostic quantum ML framework with automatic differentiation. Use when training quantum circuits via gradients, building hybrid quantum-classical models, or needing device portability across IBM/Google/Rigetti/IonQ. Best for variational algorithms (VQE, QAOA), quantum neural networks, and integration with…

K-Dense-AI/scientific-agent-skills · 98 tokens

dd-code-generation

Use pup CLI for immediate Datadog operations or generate code for integration into applications.

DataDog/pup · 16 tokens

rocm-kernels

Provides guidance for writing and benchmarking optimized Triton kernels for AMD GPUs (MI355X, R9700) on ROCm, targeting HuggingFace diffusers (LTX-Video, SD3, FLUX) and transformers. Core kernels: RMSNorm, RoPE 3D, GEGLU, AdaLN. Includes XCD swizzle, autotune, diffusers integration patterns, and LTX-Video pipeline…

huggingface/kernels · 93 tokens

holoscan-install-wheel

Install Holoscan SDK Python wheel via pip into a venv. Use for Python installs; not for native C++/apt or Conda installs.

NVIDIA/skills · 37 tokens

typing-exclusion-worker

Python typing exclusion worker: remove assigned mypy exclusion modules in small scoped batches, fix typing issues, run validation, and produce a structured completion summary. Use when running parallel typing-debt workers or when asked to remove modules from pyproject mypy exclusion overrides.

getsentry/skills · 57 tokens