control-flow-check
Installation
SKILL.md
Go Control Flow Check Skill
Purpose
Audit Go code for control flow best practices based on RMS Go coding standards. This skill identifies control flow anti-patterns and suggests refactoring opportunities to improve readability and maintainability.
What This Skill Checks
1. Early Return Pattern (Priority: HIGH)
Golden Rule: Use early returns for error cases and edge conditions to keep the happy path at the lowest indentation level.
Good Pattern: