ワンクリックで
pytest-testing-assistant
Write focused pytest tests as standalone functions (one test per function), avoiding test classes.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Write focused pytest tests as standalone functions (one test per function), avoiding test classes.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Inspect a repository and draft an AGENTS.md file using the standard template, capturing commands, structure, and workflow rules.
Perform structured, actionable code reviews for Python code with clear findings and suggestions.
Add purposeful debug logging to improve observability without changing behavior.
Run the project's formatter, linters, and mypy checks in the required order, fixing issues and managing any needed stub dependencies via uv.
Generate high-quality conventional git commit messages and, with user approval, run the commit. Use when drafting or refining commit messages, validating commit quality, or committing staged work while avoiding noisy histories.
Write Python docstrings following the Google Python Style Guide, using clear sections and examples.
| name | pytest-testing-assistant |
| description | Write focused pytest tests as standalone functions (one test per function), avoiding test classes. |
test_<function>_<behavior>; keep AAA (arrange/act/assert) obvious.pytest or pytest path/to/test_file.py to scope runs.references/pytest_rules.md for detailed guidelines and examples.Identify behavior
Write the test
def test_<thing>(): (no classes).Assertions
Run and iterate
pytest (optionally narrow with paths or -k expressions).references/pytest_rules.md: structure rules, naming patterns, and usage tips.