OpenHands

code-style-guide

@OpenHands/code-style-guide
OpenHands
432
109 forks
Updated 1/18/2026
View on GitHub

Project coding standards and style guidelines. Always follow these conventions when writing or reviewing code.

Installation

$skills install @OpenHands/code-style-guide
Claude Code
Cursor
Copilot
Codex
Antigravity

Details

Pathexamples/05_skills_and_plugins/01_loading_agentskills/example_skills/code-style-guide/SKILL.md
Branchmain
Scoped Name@OpenHands/code-style-guide

Usage

After installing, this skill will be available to your AI coding assistant.

Verify installation:

skills list

Skill Instructions


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