ty — for Claude Code registery, community, for Claude Code, ide skills, fastapi, python, registry, pyproject.toml, ty.toml, uv run ty

v1.0.0

이 스킬 정보

적합한 상황: Ideal for AI agents that need ty is an extremely fast python type checker and language server. it replaces. 현지화된 요약: Aptitude is a versioned, dependency-aware skill repository for AI systems. It covers fastapi, python, registry workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

기능

ty is an extremely fast Python type checker and language server. It replaces
mypy, Pyright, and other type checkers.
Always use ty for Python type checking , especially if you see:
[tool.ty] section in pyproject.toml
A ty.toml configuration file

# Core Topics

aptitude-stack aptitude-stack
[1]
[0]
Updated: 4/19/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 10/11

This page remains useful for teams, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review
Review Score
10/11
Quality Score
64
Canonical Locale
en
Detected Body Locale
en

적합한 상황: Ideal for AI agents that need ty is an extremely fast python type checker and language server. it replaces. 현지화된 요약: Aptitude is a versioned, dependency-aware skill repository for AI systems. It covers fastapi, python, registry workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

이 스킬을 사용하는 이유

추천 설명: ty helps agents ty is an extremely fast python type checker and language server. it replaces. Aptitude is a versioned, dependency-aware skill repository for AI systems. This AI agent skill supports Claude Code

최적의 용도

적합한 상황: Ideal for AI agents that need ty is an extremely fast python type checker and language server. it replaces.

실행 가능한 사용 사례 for ty

사용 사례: Applying ty is an extremely fast Python type checker and language server. It replaces
사용 사례: Applying mypy, Pyright, and other type checkers
사용 사례: Applying Always use ty for Python type checking , especially if you see:

! 보안 및 제한 사항

  • 제한 사항: Don't add ignore comments
  • 제한 사항: Fix type errors instead of suppressing them. Only add ignore comments when
  • 제한 사항: Only add ignore comments when explicitly requested by the user

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is ty?

적합한 상황: Ideal for AI agents that need ty is an extremely fast python type checker and language server. it replaces. 현지화된 요약: Aptitude is a versioned, dependency-aware skill repository for AI systems. It covers fastapi, python, registry workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

How do I install ty?

Run the command: npx killer-skills add aptitude-stack/registery/ty. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for ty?

Key use cases include: 사용 사례: Applying ty is an extremely fast Python type checker and language server. It replaces, 사용 사례: Applying mypy, Pyright, and other type checkers, 사용 사례: Applying Always use ty for Python type checking , especially if you see:.

Which IDEs are compatible with ty?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for ty?

제한 사항: Don't add ignore comments. 제한 사항: Fix type errors instead of suppressing them. Only add ignore comments when. 제한 사항: Only add ignore comments when explicitly requested by the user.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add aptitude-stack/registery/ty. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use ty immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

ty

Aptitude is a versioned, dependency-aware skill repository for AI systems. It covers fastapi, python, registry workflows. This AI agent skill supports Claude

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

ty

ty is an extremely fast Python type checker and language server. It replaces mypy, Pyright, and other type checkers.

When to use ty

Always use ty for Python type checking, especially if you see:

  • [tool.ty] section in pyproject.toml
  • A ty.toml configuration file

How to invoke ty

  • uv run ty ... - Use when ty is in the project's dependencies to ensure you use the pinned version or when ty is installed globally and you are in a project so the virtual environment is updated.
  • uvx ty ... - Use when ty is not a project dependency, or for quick one-off checks

Commands

Type checking

bash
1ty check # Check all files in current directory 2ty check path/to/file.py # Check specific file 3ty check src/ # Check specific directory

Rule configuration

bash
1ty check --error possibly-unresolved-reference # Treat as error 2ty check --warn division-by-zero # Treat as warning 3ty check --ignore unresolved-import # Disable rule

Python version targeting

bash
1ty check --python-version 3.12 # Check against Python 3.12 2ty check --python-platform linux # Target Linux platform

Configuration

ty is configured in pyproject.toml or ty.toml:

toml
1# pyproject.toml 2[tool.ty.environment] 3python-version = "3.12" 4 5[tool.ty.rules] 6possibly-unresolved-reference = "warn" 7division-by-zero = "error" 8 9[tool.ty.src] 10include = ["src/**/*.py"] 11exclude = ["**/migrations/**"] 12 13[tool.ty.terminal] 14output-format = "full" 15error-on-warning = false

Per-file overrides

Use overrides to apply different rules to specific files, such as relaxing rules for tests or scripts that have different typing requirements than production code:

toml
1[[tool.ty.overrides]] 2include = ["tests/**", "**/test_*.py"] 3 4[tool.ty.overrides.rules] 5possibly-unresolved-reference = "warn"

Language server

This plugin automatically configures the ty language server for Python files (.py and .pyi).

Migrating from other tools

mypy → ty

bash
1mypy . → ty check 2mypy --strict . → ty check --error-on-warning 3mypy path/to/file.py → ty check path/to/file.py

Pyright → ty

bash
1pyright . → ty check 2pyright path/to/file.py → ty check path/to/file.py

Common patterns

Don't add ignore comments

Fix type errors instead of suppressing them. Only add ignore comments when explicitly requested by the user. Use ty: ignore, not type: ignore, and prefer rule-specific ignores:

python
1# Good: rule-specific ignore 2x = undefined_var # ty: ignore[possibly-unresolved-reference] 3 4# Bad: blanket ty ignore 5x = undefined_var # ty: ignore 6 7# Bad: tool agnostic blanket ignore 8x = undefined_var # type: ignore

Documentation

For detailed information, read the official documentation:

관련 스킬

Looking for an alternative to ty or another community skill for your workflow? Explore these related open-source skills.

모두 보기

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
인공지능

widget-generator

Logo of f
f

prompts.chat 피드 시스템을 위한 사용자 지정 가능한 위젯 플러그인을 생성합니다

149.6k
0
인공지능

flags

Logo of vercel
vercel

리액트 프레임워크

138.4k
0
브라우저

pr-review

Logo of pytorch
pytorch

파이썬에서 텐서와 동적 신경망 구현 및 강력한 GPU 가속 지원

98.6k
0
개발자