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.
curl -O https://raw.githubusercontent.com/GhostTypes/pokemon-go-mcp/main/.claude/skills/mypy/SKILL.mdgit clone --depth 1 https://github.com/GhostTypes/pokemon-go-mcpWrote 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.
[](https://agentmods.dev/skills/ghosttypes/pokemon-go-mcp/mypy)<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.
<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>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once 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 |
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.
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.
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):
mypy.ini.mypy.inipyproject.toml(with[tool.mypy]section)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
- Start with
--check-untyped-defsfor gradual typing - Use
# type: ignorecomments sparingly for temporary exceptions - Add type annotations incrementally, module by module
- Enable stricter checks progressively
See references/existing_code.md for migration strategies.
Resolving Type Errors
When mypy reports errors:
- Check the error code (e.g.,
[attr-defined]) - Consult error code documentation:
references/error_code_list.md- Default errorsreferences/error_code_list2.md- Optional checks
- Use type narrowing techniques when needed
- 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)
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.
- references/additional_features.md 17 KB
- references/builtin_types.md 3.7 KB
- references/changelog.md 242 KB
- references/cheat_sheet_py3.md 12 KB
- references/class_basics.md 13 KB
- references/command_line.md 45 KB
- references/common_issues.md 27 KB
- references/config_file.md 37 KB
- references/duck_type_compatibility.md 1.3 KB
- references/dynamic_typing.md 4.7 KB
- references/error_code_list.md 35 KB
- references/error_code_list2.md 19 KB
- references/error_codes.md 3.9 KB
- references/existing_code.md 9.6 KB
- references/extending_mypy.md 9.6 KB
- references/faq.md 9.0 KB
- references/final_attrs.md 6.6 KB
- references/generics.md 43 KB
- references/getting_started.md 14 KB
- references/index.md 31 KB
- references/inline_config.md 1.0 KB
- references/installed_packages.md 6.1 KB
- references/kinds_of_types.md 24 KB
- references/literal_types.md 16 KB
- references/metaclasses.md 3.6 KB
- references/more_types.md 33 KB
- references/mypy_daemon.md 14 KB
- references/protocols.md 20 KB
- references/running_mypy.md 25 KB
- references/runtime_troubles.md 12 KB
- references/stubgen.md 6.3 KB
- references/stubs.md 4.9 KB
- references/stubtest.md 6.8 KB
- references/supported_python_features.md 941 B
- references/type_inference_and_annotations.md 8.9 KB
- references/type_narrowing.md 16 KB
- references/typed_dict.md 12 KB
- scripts/clean_markdown.py 3.0 KB runs code
- scripts/discover_pages.py 4.5 KB runs code
- scripts/scrape_docs.py 7.8 KB runs code
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.
- 9d ago First seen · 273 lines · 146 tokens per session scan A db8e0ea1afb6
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.
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.
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…
dd-code-generation
Use pup CLI for immediate Datadog operations or generate code for integration into applications.
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…
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.
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.