conventional-git-commit-formatter
作者:agent67尚無安裝尚無按讚更新於 2026年8月6日分類: 其他
它能做什麼
Enforce Conventional Commits format for git commits, including project-specific type/scope conventions (plugin name as scope) and squash-vs-new-commit strategy selection.
安裝會在你的 AgentsRoom 桌面版開啟這個條目。如果還沒有安裝應用,你會被帶到下載頁面。
SKILL.md
--- name: conventional-git-commit-formatter description: Enforce Conventional Commits format for git commits, including project-specific type/scope conventions (plugin name as scope) and squash-vs-new-commit strategy selection. --- # Formatting Commit ## Current State - Branch: !`git branch --show-current` - Status: !`git status --short` - Recent commits: !`git log --oneline -10` ## Strategy Selection The goal is a clean, reviewable commit history. Two strategies: ### New Commit (default) Create a new commit when: - It's the first commit on the branch - The change is logically independent from existing commits - You're building incrementally (model -> API -> UI) A new commit preserves the narrative of how the work evolved. Each commit should be a self-contained, meaningful unit — something a reviewer can understand in isolation. ### Squash (amend) Amend the previous commit when: - The change directly extends or fixes the same work (e.g., addressing review feedback) - A separate commit would be noise rather than signal (typo fix, forgotten file) Squashing keeps the history focused on intent rather than process. After amending a pushed commit, use `git push --force-with-lease` — never `--force`. If the branch has multiple commits that need reorganizing, use the `splitting-commit` skill instead of manual rebase. ## Commit Message Format ``` <type>(<scope>): <description> [body] [footer] ``` ### Type Select by the primary intent of the change: | Type | When to use | |------|-------------| | `feat` | New user-facing capability | | `fix` | Correcting broken behavior | | `refactor` | Restructuring without behavior change | | `perf` | Performance improvement | | `test` | Adding or modifying tests | | `docs` | Documentation only | | `style` | Code formatting, whitespace | | `build` | Build system, dependencies | | `ci` | CI/CD configuration | | `chore` | Everything else (version bumps, config) | When changes span multiple types, pick the dominant one. A feature that includes its tests is `feat`, not `test`. ### Scope The scope identifies the area of the codebase affected. In this marketplace, use the plugin name: ``` feat(base): add memo command fix(writing): correct language-editor agent prompt chore(base): bump version to 0.0.19 ``` Omit scope only when the change is truly cross-cutting (e.g., root-level config). ### Subject Line - Imperative mood, lowercase, no trailing period - Under 50 characters — if it doesn't fit, the commit may be doing too much - Describe what the commit does, not how Good: `add OAuth2 login flow` Bad: `Added the OAuth2 login flow implementation` ### Body Optional but valuable for non-trivial changes. Explain why the change was needed — the subject already says what. Wrap at 72 characters. ### Footer - `Closes #123` to auto-close issues - `BREAKING CHANGE:` or `!` after type for breaking changes: `feat(api)!: remove legacy endpoint` ## Process 1. Review the injected state above; run `git log --oneline origin/main..HEAD` if you need branch-only commits 2. Decide strategy: new commit or squash 3. Stage specific files — be deliberate about what goes in 4. Compose the message and commit 5. Verify with `git log -1 --stat`
延伸閱讀
Claude Ads:幫你審計廣告帳戶的 Claude Code 技能
Claude Ads 是一款面向 Claude Code 的開源技能:對 Google、Meta、LinkedIn、TikTok、Amazon 廣告等做 250 多項檢查,給出百分制評分和按優先順序排序的行動方案,全程只需十來分鐘。本文講解安裝、命令、侷限,以及如何在 AgentsRoom 中把它編排起來。
AGENTS.md:一個上下文檔案餵飽所有編碼 Agent(Codex、Antigravity、Claude)
AGENTS.md 是 AI 編碼 Agent 在動你程式碼之前先讀的那份可移植指令檔案。該往裡寫什麼、它和 CLAUDE.md 有何區別,以及如何在 Codex、Antigravity 和 Claude 之間保持同一份上下文。
下載 AgentsRoom
在一個視窗中執行你所有專案的所有 AI 代理。
免費下載 AgentsRoom
配套應用:隨時隨地監控你的 Agent
使用 Claude、Codex、Antigravity CLI 或其他 AI 提供商。
獲取擴充功能
Chrome Web Store
把 Bug 和需求直接傳送到您的公開待辦清單。