# Code Helper

> Helps users write cleaner, more readable Python code Use when this capability is needed.

- Skill: `tomevault-io/code-helper-3` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/code-helper-3`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/code-helper-3/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/code-helper-3

---


# Code Helper Skill

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.

## What this skill does

- Reviews Python code for style and clarity
- Suggests meaningful variable and function names
- Recommends appropriate use of docstrings and type hints
- Helps organize imports according to PEP 8

## Example

Here is a simple greeting function that follows best practices:

```python
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"))
```

## Usage Notes

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.

---
> Source: [sinewaveai/agent-security-scanner-mcp](https://github.com/sinewaveai/agent-security-scanner-mcp) — distributed by [TomeVault](https://tomevault.io).
<!-- tomevault:4.0:skill_md:2026-07-07 -->

