원클릭으로
loose-ends
Summarize loose ends — unpushed commits, uncommitted/untracked changes, stashes, and anything needing attention. Read-only.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Summarize loose ends — unpushed commits, uncommitted/untracked changes, stashes, and anything needing attention. Read-only.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | loose-ends |
| description | Summarize loose ends — unpushed commits, uncommitted/untracked changes, stashes, and anything needing attention. Read-only. |
| argument-hint | optional path or area to focus on |
Survey this repository's git state and give the user a tight, scannable summary of everything that is loose and may need attention. Read-only — inspect and report; do not stage, commit, push, stash, or modify anything.
If an argument is provided, focus the summary on that path or area (e.g. only
loose ends touching src-tauri/); otherwise cover the whole repo.
Run these (all read-only):
git status --short --branch — uncommitted + untracked changes, plus the
branch's ahead/behind vs its upstream.git log --oneline @{u}..HEAD — commits not yet pushed. If the branch has no
upstream, say so (there is nothing to push against) and skip this.git log --oneline -5 — recent history, for context.git stash list — stashed work.git branch -vv — local branches and their tracking / ahead-behind.A short summary in Markdown, including only the non-empty groups:
End with a one-line bottom line: either "clean and pushed" or the single most important loose end to deal with next.
Do not propose or perform commits, pushes, or stashes unless the user asks — just surface the state.