conventional-git-commit-formatter
What it does
Enforce Conventional Commits format for git commits, including project-specific type/scope conventions (plugin name as scope) and squash-vs-new-commit strategy selection.
Install opens this entry in your AgentsRoom desktop app. If the app is not installed yet, you will be sent to the download page.
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`
Further reading
Claude Ads: the Claude Code skill that audits your ad accounts
Claude Ads is an open source skill for Claude Code: 250+ checks on Google, Meta, LinkedIn, TikTok or Amazon Ads, a score out of 100 and a prioritized action plan, in about ten minutes. Install, commands, limits, and how to orchestrate it in AgentsRoom.
AGENTS.md: One Context File for Every Coding Agent (Codex, Antigravity, Claude)
AGENTS.md is the portable instructions file your AI coding agents read before touching your code. What to put in it, how it differs from CLAUDE.md, and how to keep one context across Codex, Antigravity and Claude.
Download AgentsRoom
Run all your AI agents, on all your projects, from a single window.
Companion app: monitor your agents on the go
Bring your own: Claude, Codex, Antigravity CLI, or other AI provider.
Push bugs and requests straight to your public backlog.
A glimpse of AgentsRoom in action.