address
Address code review feedback — corroborate, validate, and implement changes from a review's final.md.
Analyze staged changes and organize them into intuitive atomic commits following conventional commits.
How it fires
How this command gets triggered: by you, by Claude, or both.
/atomic-commitsContext preview
What this command does when you run it.
Analyze staged changes and organize them into intuitive atomic commits following conventional commits.
description: Analyze staged changes and organize them into intuitive atomic commits following conventional commits.
Analyze staged changes along with relevant requirements and OpenSpec files, then organize and commit them as intuitive atomic commits following conventional commits.
1. **Analyze Staged Changes**
2. **Identify Related OpenSpec Documents**
3. **Plan Atomic Commits**
4. **Execute Commits Sequentially**
a. Unstage all files: `git reset HEAD` b. Stage only the files for this specific commit: `git add <files>` c. Commit with a conventional commit message: `git commit -m "<type>(<scope>): <description>"`
5. **Archive OpenSpec Changes (Final Commit)**
6. **Verify Commit History**
| Type | Description | |------------|------------------------------------------------------| | `feat` | A new feature | | `fix` | A bug fix | | `refact` | Code change that neither fixes a bug nor adds a feature | | `doc` | Documentation only changes | | `test` | Adding or correcting tests | | `chore` | Maintenance tasks, dependencies, tooling | | `style` | Formatting, white-space, semi-colons, etc. | | `perf` | Performance improvements | | `ci` | CI/CD configuration changes | | `build` | Build system or external dependency changes | | `spec` | OpenSpec document changes (proposals, archives) |
feat(scheduler): add address autocomplete to new customer form fix(scheduler): resolve phone validation edge case refactor(scheduler): extract address validation utility test(scheduler): add unit tests for address validation spec: archive add-address-autocomplete-new-customer
Repo: spencermarx/obsidian-ai
Address code review feedback — corroborate, validate, and implement changes from a review's final.md.
Create a new custom reviewer from a natural language description.