ワンクリックで
python-backend-quality
Improve quality and reliability of Python backend changes in burndown-chart
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Improve quality and reliability of Python backend changes in burndown-chart
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Retrieve up-to-date library documentation with Context7 MCP and ground code changes. Use when tasks involve external APIs, version-sensitive behavior, migrations, deprecations, setup/configuration decisions, or framework/library best-practice questions.
Behavior-preserving refactoring guidance for burndown-chart with layered architecture and safety gates
Install and configure optional development tools for repository contributors. Use when asked to install ripgrep, rg, jq, yq, GitHub Copilot CLI, copilot, or any command-line dev tool. Also use when a tool is reported as "not found", when the user wants to set up their development workstation, or when searching / log-inspection tools are needed. Provides platform-specific install commands for Windows (winget, no admin required), macOS (Homebrew), and Linux (apt/rpm).
Optimally use rg (ripgrep), fd, jq, and yq for code exploration, file discovery, and structured data querying in any repository. Use when asked to search code, find files, grep for patterns, explore a codebase structure, parse JSON or YAML configs, inspect package.json or pyproject.toml, extract API response data, find all usages of a function or variable, or filter results across file types. Works with any language, framework, or project structure.
Create new Agent Skills for GitHub Copilot from prompts or by duplicating this template. Use when asked to "create a skill", "make a new skill", "scaffold a skill", or when building specialized AI capabilities with bundled resources. Generates SKILL.md files with proper frontmatter, directory structure, and optional scripts/references/assets folders.
Execute release preparation and changelog updates safely. Use when drafting release notes, preparing version bumps, validating release prerequisites, or checking release workflow completeness before tagging or publishing.
| name | python-backend-quality |
| description | Improve quality and reliability of Python backend changes in burndown-chart |
Use this skill when working in callbacks/, data/, visualization/, or related Python backend code.
get_errors.callbacks/ may route only; business logic lives in data/.# noqa: PLC0415 without either a wrapper function docstring or a
# circular import guard comment naming the specific cycle being broken..venv\Scripts\python.exe -c "from callbacks import register_all_callbacks; print('OK')"
A startup crash means a new circular import was introduced.circular-import-safety skill first.get_errors for changed files.pytest tests/unit/ -v when unit-level behavior changes.ruff check . and pyright . before completion.python -m djlint --lint <template_dir> when template files are touched (if applicable).npm run lint:md when markdown files are touched.