소스 정보
- 저장소
- thewoolleyman/tab-groups-windows-list
- 최근 소스 활동
- 2026년 2월 2일 21:52
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/thewoolleyman/tab-groups-windows-list --skill land명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | land |
| description | Land the plane: commit all changes, push, and confirm clean state |
Based on Steve Yegge's "Landing the Plane" workflow from the Beads agent memory system. See: https://github.com/steveyegge/beads/blob/ff67b88/AGENT_INSTRUCTIONS.md#landing-the-plane
You are wrapping up a work session. Your job is to leave the repo in a clean, committed, pushed state with nothing left dangling.
The plane is NOT landed until git push succeeds. Do not stop before pushing. Do not say "ready to push when you are" -- that is a failure. YOU must push.
Follow these steps IN ORDER. Do not skip any step. Do not ask for confirmation between steps -- just execute the full sequence and report the results at the end.
Run git status and git diff --stat to see what's changed. If there are NO changes (working tree clean, nothing untracked), skip to step 7 and report "Already clean -- nothing to land."
Stage all modified and untracked files. Use git add with specific file paths -- do NOT use git add -A or git add .. Review the list and exclude:
.env files or anything that looks like secrets/credentials.pid, .log, node_modules/, etc.)If you find files that should be excluded, mention them in your summary.
Run bd sync to commit beads issue changes to git. This ensures any issue updates from this session (status changes, new issues, closed issues) are captured before the final push.
If bd is not installed or .beads/ doesn't exist, skip this step silently.
Create a single commit with a clear, descriptive message summarizing ALL the work done in this session. Look at the diff and recent conversation context to write a meaningful message -- not a generic "checkpoint" or "wip".
Format:
<concise summary of what changed>
<optional body with details if the change is non-trivial>
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Pull with rebase first, then push to the remote tracking branch:
git pull --rebase
git push
If the push fails, resolve the issue and retry. Do NOT force push. If it cannot be resolved, report the specific error.
git stash list
If there are stale stashes, note them in the summary (do not drop them without being asked).
Run git status one final time. Report:
Report a brief summary like:
Landed. <commit-hash> on <branch> -> <remote>
<one-line commit message>
<N> files changed
Working tree: clean
Or if there were issues:
Partial landing:
Committed: <hash>
Push: failed (behind remote -- pull needed)
Skipped: .env, build/output.bin
Stale stashes: 2 (run `git stash list` to review)