OpenHands / code-style-guide
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/code-style-guide && curl -L -o skill.zip "https://fastmcp.me/Skills/Download/3909" && unzip -o skill.zip -d .claude/skills/code-style-guide && rm skill.zip
Project Skills
This skill will be saved in .claude/skills/code-style-guide/ and checked into git. All team members will have access to it automatically.
Important: Please verify the skill by reviewing its instructions before using it.
Project coding standards and style guidelines. Always follow these conventions when writing or reviewing code.
0 views
0 installs
Skill Content
--- name: code-style-guide description: > Project coding standards and style guidelines. Always follow these conventions when writing or reviewing code. license: MIT --- # Code Style Guide Follow these conventions for all code in this project. ## Python - Use 4 spaces for indentation - Maximum line length: 88 characters (Black default) - Use type hints for function signatures - Prefer f-strings over `.format()` or `%` formatting ## Naming Conventions - Classes: `PascalCase` - Functions/variables: `snake_case` - Constants: `UPPER_SNAKE_CASE` - Private members: `_leading_underscore` ## Documentation - All public functions must have docstrings - Use Google-style docstrings - Include type information in docstrings when not using type hints