landing-the-plane
Installation
SKILL.md
Landing the Plane
When the user says "let's land the plane", complete ALL steps below. The plane is NOT landed until git push succeeds. NEVER stop before pushing. NEVER say "ready to push when you are!" - that is a FAILURE.
IMPORTANT: Include ALL dirty files in the commit, even if they were not related to this session's work. NEVER use git reset, git checkout, or git restore to discard changes. The user may have made changes outside this session that need to be preserved.
NEVER DELETE EXISTING WORK - if there are any existing uncommitted changes, include them in the commit. If there are merge conflicts, resolve them by keeping ALL changes (yours and theirs).
Mandatory Workflow - Complete ALL Steps
1. Clean Up Code
- Remove any console logs, breakpoints, and temporary debugging code
- Re-organize code if this was a debugging session
2. Run Quality Gates (if code changes were made)
- Run linters, type checks, and builds
- Fix any issues that arise
- File issues for problems that can't be resolved immediately
Related skills