一键导入
git-master
Utility: Atomic commit workflow. Analyzes changes, groups into logical commits, writes clear commit messages. Solo operation, no team needed.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Utility: Atomic commit workflow. Analyzes changes, groups into logical commits, writes clear commit messages. Solo operation, no team needed.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Utility: Detect and remove AI-generated code slop. Finds unnecessary comments, over-engineering, verbose error handling, premature abstractions. Solo operation, no team needed.
Multi-hypothesis parallel debugging with agent teams. Spawns multiple investigators to test competing theories simultaneously. They challenge each other's findings.
Strategic planning workflow. Creates an agent team with Prometheus (interview), Metis (gap analysis), and optionally Momus (plan review). Plans live as scope chunks in the sodium team brain — recallable across sessions, never as filesystem markdown.
Execute a work plan using Atlas orchestration with agent teams. Reads the plan from the sodium team brain (scope chunk), creates an exec team, spawns specialised teammates to run tasks in parallel waves. Plans live in memory, not in .sisyphus/plans/.
| name | git-master |
| description | Utility: Atomic commit workflow. Analyzes changes, groups into logical commits, writes clear commit messages. Solo operation, no team needed. |
| disable-model-invocation | false |
| argument-hint | [optional: commit message override] |
Create clean, atomic commits from the current changes.
git status
git diff --stat
git diff
Understand what changed and why.
If changes span multiple concerns, group them:
Format:
<type>(<scope>): <description>
<body - what and why, not how>
Types: feat, fix, refactor, test, docs, chore, perf, style
Rules:
For each logical group:
git add <files>git log --oneline -1git log --oneline -5 to show recent commitsgit add . blindly