finalize
Installation
SKILL.md
Finalize Recent Work
Clean up after a feature is done — remove iteration artifacts and consolidate the implementation.
Instructions
Step 1: Identify Session Artifacts
Review recent changes (git diff or git diff --staged) and flag:
Remove:
console.log,print(),dd(),var_dump(),debuggerstatements- Commented-out code (old approaches, false starts)
- TODO/FIXME comments that were resolved
- Temporary variable names (
temp,test,foo,xxx) - Unused imports added during exploration
- Test data or hardcoded values that should be dynamic