بنقرة واحدة
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.