plugins/python-engineering/skills/typer/SKILL.md
Use when building CLI applications with Typer — creating commands, defining arguments and options with enum restrictions, path validation, date and UUID types, composing subcommands, testing with CliRunner, or using advanced features like colored output, progress bars, shell autocompletion, and version callbacks.
npx skillsauth add jamie-bitflight/claude_skills typerInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Build CLI applications with Typer by annotating Python functions. Typer converts type annotations into validated CLI parameters with auto-generated help text.
Typer version:
!python -c "import typer; print(typer.__version__)" 2>/dev/null || echo "not found in PATH"
Consult python-engineering:python3-core for standing defaults (architecture, typing, testing, CLI rules).
TRIGGER: Activate when the user asks about building CLIs with Typer, defining CLI arguments or options, composing subcommands, testing CLI apps, or using Typer features like prompts, enums, progress bars, or autocompletion.
COVERS:
typer.Typer() and typer.run()typer.Argument()) and options (typer.Option())app.add_typer()typer.testing.CliRunnerDOES NOT COVER:
typer.echo / typer.styleflowchart TD
Start([Task received]) --> Q1{Task type?}
Q1 -->|Create app or add commands| AppCmd[Load reference — app-and-commands.md]
Q1 -->|Define arguments or options| Params[Load reference — parameters.md]
Q1 -->|Use enum, path, date, UUID| Types[Load reference — parameter-types.md]
Q1 -->|Add subcommands or sub-apps| Sub[Load reference — subcommands.md]
Q1 -->|Write tests| Test[Load reference — testing.md]
Q1 -->|Callbacks, output, progress, packaging| Adv[Load reference — advanced-patterns.md]
Core patterns for creating Typer apps, registering commands with @app.command(), configuring multi-command apps, and controlling command naming and help text.
Load when creating a new app, adding commands, or configuring app-level behavior.
../python3-cli/references/typer-app-and-commands.md
Complete reference for CLI arguments and CLI options — typer.Argument(), typer.Option(), defaults, required vs optional, help text, prompts, password input, option names, environment variable bindings, multiple values, bool flags, and version options.
Load when defining any CLI parameter or controlling how input is received.
../python3-cli/references/typer-parameters.md
Type annotations Typer understands — str, int, float, bool, enum.Enum, Literal, pathlib.Path, file objects, datetime, UUID, and custom Click ParamType subclasses.
Load when restricting parameter values to a set, validating paths, parsing dates, or implementing custom types.
../python3-cli/references/typer-parameter-types.md
Composing multiple typer.Typer() instances with app.add_typer() to create nested command hierarchies. Covers single-file and multi-file patterns, naming, help text, and callback overrides.
Load when adding sub-apps, creating command groups, or building git-style multi-level command trees.
../python3-cli/references/typer-subcommands.md
Testing Typer apps with pytest and typer.testing.CliRunner. Covers invoking the app in tests, checking exit codes and output, simulating prompt input, and testing bare functions.
Load when writing tests for any Typer CLI.
../python3-cli/references/typer-testing.md
Context (typer.Context), eager callbacks, typer.echo/typer.secho/typer.style, progress bars, typer.Exit/typer.Abort, typer.confirm, autocompletion setup, packaging with pyproject.toml, and typer.launch.
Load when implementing version flags, colored output, progress reporting, shell completion, or packaging a CLI as a distributable tool.
../python3-cli/references/typer-advanced-patterns.md
import typer
from typing import Annotated
app = typer.Typer()
@app.command()
def main(
name: str, # required argument
count: Annotated[int, typer.Option()] = 1, # optional option
formal: bool = False, # --formal / --no-formal
):
"""Greet NAME."""
for _ in range(count):
greeting = f"Good day, {name}." if formal else f"Hello {name}"
typer.echo(greeting)
if __name__ == "__main__":
app()
$ python main.py Alice --count 2 --formal
Good day, Alice.
Good day, Alice.
development
When an application needs to store config, data, cache, or state files. When designing where user-specific files should live. When code writes to ~/.appname or hardcoded home paths. When implementing cross-platform file storage with platformdirs.
testing
Enforce mandatory pre-action verification checkpoints to prevent pattern-matching from overriding explicit reasoning. Use this skill when about to execute implementation actions (Bash, Write, Edit) to verify hypothesis-action alignment. Blocks execution when hypothesis unverified or action targets different system than hypothesis identified. Critical for preventing cognitive dissonance where correct diagnosis leads to wrong implementation.
tools
Reference guide for the Twelve-Factor App methodology — 15 principles (12 original + 3 modern extensions) for building portable, resilient, cloud-native applications. Use when evaluating application architecture, designing cloud-native services, reviewing codebases for methodology compliance, advising on configuration, scaling, observability, security, and deployment patterns. Incorporates the 2025 open-source community evolution and cloud-native reinterpretations of each factor.
tools
Converts user-facing documentation (how-to guides, tutorials, API references, examples) in any format — Markdown, PDF, DOCX, PPTX, XLSX, AsciiDoc, RST, HTML, Jupyter notebooks, man pages, TOML/YAML/JSON configs, and plain text — into Claude Code skill directories with SKILL.md plus thematically grouped references/*.md files. Use when given a docs directory or mixed-format documentation to transform into an AI skill. Uses MCP file-reader server for binary formats.