ワンクリックで
pyhd
Python development workflow using Ruff for linting and formatting. Use when writing, refactoring, or documenting Python code.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Python development workflow using Ruff for linting and formatting. Use when writing, refactoring, or documenting Python code.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
A comprehensive developer guide containing the entire a2ui.org documentation suite. Contains full specs for A2UI v0.9.1, JSON schemas, Agent (Python/ADK) & Renderer (React/Angular/Flutter) SDK guides, concept definitions, quickstarts, and open-source examples. Use this for ANY question or coding task related to Agent-Driven User Interfaces.
Analyze Tenkai agent experiments to find success factors, failure modes, and run patterns.
Find and inspect GitHub code examples for specific dependencies and languages. Use this to see how a library or framework is used in projects.
Go development practices and style guidelines covering concurrency safety, package layout (avoiding pkg/), and PR review checklists.
Standardized setup for new Go (Golang) projects and services. Activate to ensure clean, idiomatic project structures (Standard Layout) and implement production-ready patterns (graceful shutdown, package separation) from day one.
Official style guide and compliance rules for the Google Developers Blog. Activate to draft, edit, and validate technical articles to ensure they meet legal standards, the correct professional tone, and readability targets (Gunning Fog Index).
| name | pyhd |
| description | Python development workflow using Ruff for linting and formatting. Use when writing, refactoring, or documenting Python code. |
This workflow outlines the standard development process for Python projects using Ruff to format and lint code.
Run these steps for each file change:
uv run ruff check --fix <filename>
uv run ruff format <filename>
Resolve any remaining errors manually before continuing.Verify package APIs before writing or modifying code.
python <package_name> documentation or python <package_name> <function_name>..venv/lib/python3.x/site-packages/<package>.uv run python -c "import <package>; help(<package>.<symbol>)"
Detailed coding standards and idiomatic Python patterns are located in best_practices.md.