一键导入
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.