원클릭으로
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 직업 분류 기준
| 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.
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).