Install
openclaw skills install code-formatter199Format Python, JavaScript, TypeScript, JSON, HTML, CSS, and Go code snippets
openclaw skills install code-formatter199This skill takes raw, poorly indented code and returns a nicely formatted, readable version following community standard style guides. It supports multiple languages and provides clear error messages when language is not recognized or code is invalid.
{ on same line.gofmt style – tabs for indentation (width 8); no extra spaces; consistent formatting.When the user provides a code snippet and specifies (or implies) a language:
If the language is not supported, respond with: "Sorry, I don't support formatting for {language} yet. Supported languages: python, javascript, typescript, json, html, css, go."
User: "Format this Python: def hello():print('world')" AI:
def hello():
print('world')