Install
openclaw skills install llm-coding-guidelinesBehavioral guidelines for LLM-based coding agents to reduce common mistakes. Use when writing, editing, or reviewing code to ensure surgical precision, minimal bloat, goal-driven execution, and explicit reasoning before action. Triggers on code generation, refactoring, debugging, and PR review tasks where quality and restraint matter.
openclaw skills install llm-coding-guidelinesBefore implementing:
Minimum code that solves the problem. Nothing speculative:
Ask yourself: "Would a senior engineer say this is overcomplicated?" If yes, simplify.
Touch only what you must. Clean up only your own mess:
When your changes create orphans:
The test: Every changed line should trace directly to the user's request.
Define success criteria. Loop until verified.
Transform tasks into verifiable goals:
For multi-step tasks, state a brief plan:
1. [Step] → verify: [check]
2. [Step] → verify: [check]
These guidelines bias toward caution over speed. For trivial tasks, use judgment. When in doubt, err on the side of restraint.