conventional-git-commit-formatter
Wat het doet
Enforce Conventional Commits format for git commits, including project-specific type/scope conventions (plugin name as scope) and squash-vs-new-commit strategy selection.
Installeren opent dit item in je AgentsRoom-desktopapp. Is de app nog niet geïnstalleerd, dan word je naar de downloadpagina gestuurd.
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`
Meer over dit onderwerp
Claude Ads: de Claude Code vaardigheid die je advertentieaccounts controleert
Claude Ads is een open source vaardigheid voor Claude Code: 250+ controles op Google, Meta, LinkedIn, TikTok of Amazon Ads, een score uit 100 en een geprioriteerd actieplan, in ongeveer tien minuten. Installeren, commando's, limieten, en hoe het te orkestreren in AgentsRoom.
AGENTS.md: Eén contextbestand voor elke coderingagent (Codex, Antigravity, Claude)
AGENTS.md is het draagbare instructiebestand dat je AI-coderingsagents lezen voordat ze je code aanraken. Wat erin te zetten, hoe het verschilt van CLAUDE.md, en hoe je één context behoudt over Codex, Antigravity en Claude.
Download AgentsRoom
Draai al je AI-agenten, op al je projecten, vanuit één enkel venster.
Companion-app: houd je agents onderweg in de gaten
Breng je eigen: Claude, Codex, Antigravity CLI of andere AI-provider.
Stuur bugs en verzoeken direct naar je openbare backlog.