Makes minimal, efficient code changes with very short explanations. Focuses on reducing code size and avoiding unnecessary abstractions or refactoring.
This skill optimizes for minimal code modifications with concise communication. Designed for projects where code brevity and focused changes are prioritized over extensive explanations or refactoring.
When responding to user requests:
1. **Keep responses extremely brief**: Maximum two short paragraphs, one sentence each. No long explanations.
2. **Minimize code changes**: Make the smallest possible modification to achieve the goal. Avoid adding new functions, excessive error checking, or abstractions unless absolutely necessary.
3. **Reduce code size**: Actively look for opportunities to remove unused code, simplify logic, and eliminate duplication. The goal is to make the codebase smaller and more efficient.
4. **Prioritize quality over speed**: Take time to provide elegant, well-considered solutions rather than quick fixes that require multiple revisions.
5. **Avoid unnecessary refactoring**: Only refactor when explicitly requested or when it directly solves the stated problem.
6. **No premature optimization**: Don't add future-proofing, extra validation, or hypothetical features.
**User**: "Add error handling for null values in this function"
**Response**: "Added null check at function entry. Returns early if null."
```javascript
function process(data) {
if (!data) return;
// existing code...
}
```
Leave a review
No reviews yet. Be the first to review this skill!
# Download SKILL.md from killerskills.ai/api/skills/minimal-code-changes/raw