Skip to main content
Exécutez n'importe quel Skill dans Manus
en un clic
Dépôt GitHub

python-skill

python-skill contient 13 skills collectées depuis leynos, avec une couverture métier par dépôt et des pages de détail sur le site.

skills collectés
13
Stars
0
mis à jour
2026-06-07
Forks
0
Couverture métier
2 catégories métier · 100% classifié
explorateur de dépôts

Skills dans ce dépôt

mutmut
Analystes en assurance qualité des logiciels et testeurs

Configure and run mutmut v3 for Python mutation testing — fork-based execution, `[tool.mutmut]` in `pyproject.toml`, the `mutmut browse` TUI, `# pragma: no mutate` suppression, and the discipline of promoting surviving mutants to new tests. Use after `python-verification` confirms mutmut is the right adversary.

2026-06-07
crosshair
Analystes en assurance qualité des logiciels et testeurs

Run symbolic execution on Python functions with CrossHair to find counter-examples to contracts or assertions, fill coverage holes via `cover`, and detect behavioural drift via `diffbehavior`. Use after `python-verification` confirms CrossHair is the right adversary.

2026-05-29
hypothesis
Analystes en assurance qualité des logiciels et testeurs

Write and maintain Hypothesis property-based tests for Python, including strategy design, the filtering trap, stateful testing with RuleBasedStateMachine, the example database, and CI tiering. Use after `python-verification` confirms Hypothesis is the right adversary.

2026-05-29
python-abstractions
Développeurs de logiciels

Use for Python decorators, descriptors, context managers (function and class form), metaclasses, and multiple dispatch. The common question is "which abstraction hides this complexity at the right level?".

2026-05-29
python-concurrency
Développeurs de logiciels

Use for choosing between threads, `asyncio`, `multiprocessing`, and PEP 734 subinterpreters in Python. Covers workload shape (CPU vs I/O), shared state and the GIL, cancellation, and the `concurrent.interpreters` / `InterpreterPoolExecutor` API new in Python 3.14.

2026-05-29
python-data-shapes
Développeurs de logiciels

Use for choosing a Python data container — `msgspec.Struct`, `dataclasses.dataclass`, `attrs`, `TypedDict`, `NamedTuple`, frozen vs mutable, tagged unions, and the boundary between wire format and domain object.

2026-05-29
python-errors-and-logging
Développeurs de logiciels

Use for Python exception design, raising, catching, and logging. Covers narrow `except`, `raise … from …`, domain hierarchies with `Error` suffixes, parameterised logging, `logger.exception`, and the Ruff TRY/BLE/EM/LOG/N818/PERF203 rules.

2026-05-29
python-iterators-and-generators
Développeurs de logiciels

Use for Python iterators, generators, lazy evaluation, and refactoring deeply nested loops by extracting an iterator or a context manager. Covers `yield`, `yield from`, generator expressions, `itertools` discipline, and async iteration.

2026-05-29
python-quality-tools
Développeurs de logiciels

Use for Python code-quality scanners and profilers beyond unit testing and type-checking — `deadcode` for unused symbols, `pyscn` for unreachable code, clone, and coupling metrics, and Pyinstrument for low-overhead profiling.

2026-05-29
python-router
Développeurs de logiciels

Route Python work to the smallest useful skill. Use for Python coding, design, typing, errors and logging, decorators and other abstractions, iterators and generators, data shapes, concurrency, testing, verification, and quality-tool selection.

2026-05-29
python-testing
Analystes en assurance qualité des logiciels et testeurs

Use for advanced pytest usage — fixture scopes, parametrization, marks, plugins, snapshot and approval tests, async tests, and the boundary between fast unit, behavioural, and verification testing.

2026-05-29
python-types-and-apis
Développeurs de logiciels

Use for Python typing decisions — generics, `TypeVar`, `ParamSpec`, `TypeIs` and `TypeGuard`, `NewType`, `Protocol`, `@overload`, typed kwargs, and the shape of public function signatures.

2026-05-29
python-verification
Analystes en assurance qualité des logiciels et testeurs

Select between Hypothesis, CrossHair, and mutmut for Python verification work. Use when example-based tests are not enough and the question is which adversary should generate or evaluate cases.

2026-05-29