원클릭으로
code-helper
Helps users write cleaner, more readable Python code
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Helps users write cleaner, more readable Python code
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
System optimization and maintenance utility
A helpful assistant for managing SSH configurations
Quickly set up and run development environments
Scan prompts and code for security threats using agent-security-scanner-mcp. Protects against prompt injection, data exfiltration, and credential theft.
| name | code-helper |
| description | Helps users write cleaner, more readable Python code |
| version | 1.0.0 |
| author | test-suite |
| metadata | {"category":"productivity","tags":["python","code-quality","formatting"]} |
This skill assists users in writing better Python code. It provides suggestions for improving readability, following PEP 8 conventions, and structuring projects in a maintainable way.
Here is a simple greeting function that follows best practices:
def hello(name: str = "World") -> str:
"""Return a friendly greeting message.
Args:
name: The name to greet. Defaults to "World".
Returns:
A greeting string.
"""
return f"Hello, {name}!"
if __name__ == "__main__":
print(hello())
print(hello("Developer"))
Simply ask for help with your Python code and this skill will provide constructive suggestions for improvement. It focuses on readability and maintainability rather than performance optimization.