一键导入
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 页面并帮你完成安装。
| 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.