skills/byronwilliamscpa/commit-prepare/SKILL.md
Prepare git commit messages following conventional commits. Activates on: commit, prepare commit, commit this, commit message, ready to commit, stage and commit
npx skillsauth add aiskillstore/marketplace commit-prepareInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Automatically prepare commit messages following conventional commits standard.
This skill activates on keywords:
When activated, follow these steps:
Run these commands to understand what's being committed:
# See all changes
git status
# Staged changes (what will be committed)
git diff --cached --stat
git diff --cached
# Unstaged changes (won't be committed yet)
git diff --stat
Determine:
Follow conventional commits format:
<type>(<scope>): <subject>
<body>
<footer>
| Type | When to Use | Example |
|------|-------------|---------|
| feat | New feature | feat: add user authentication |
| fix | Bug fix | fix: resolve null pointer in parser |
| docs | Documentation only | docs: update API reference |
| refactor | Code restructuring | refactor: extract validation logic |
| test | Adding/fixing tests | test: add unit tests for auth |
| perf | Performance improvement | perf: optimize database queries |
| chore | Maintenance, deps | chore: update dependencies |
| ci | CI/CD changes | ci: add caching to workflow |
| style | Formatting only | style: fix indentation |
If there are unstaged changes, ask:
git add .)After user confirms the message:
git add <files>
git commit -m "<message>"
Important: Always use HEREDOC for multi-line commits:
git commit -m "$(cat <<'EOF'
feat: add user authentication
Implement OAuth2 flow with Google and GitHub providers.
Includes session management with secure cookies.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <[email protected]>
EOF
)"
After successful commit:
git log -1 to confirmgit push if readyUser: "commit these changes"
Claude:
git status
git diff --cached
Looking at your staged changes:
src/auth/oauth.py - added token refresh logictests/test_auth.py - added refresh testsSuggested commit:
feat(auth): add OAuth token refresh
Implement automatic token refresh when access token expires.
Includes retry logic with exponential backoff.
Shall I commit with this message?
User: "ready to commit"
Claude: I see you've changed the API response format. This is a breaking change.
Suggested commit:
feat(api)!: change response envelope format
BREAKING CHANGE: API responses now use { data, meta, errors }
envelope instead of flat response. Clients must update parsing.
Migration: Update response handlers to access .data property.
This marks it as a breaking change with !. Proceed?
User: "commit this"
Claude: I see changes to multiple unrelated areas:
parser.pyexport.pyRecommend splitting into separate commits:
fix(parser): handle empty input gracefullyfeat(export): add CSV export optiondocs: update export documentationWant me to help stage and commit each separately?
Always include Claude attribution for AI-assisted commits:
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <[email protected]>
git commit --amend on pushed commits--no-verify unless explicitly askeddevelopment
Apple Human Interface Guidelines for content display components. Use this skill when the user asks about charts component, collection view, image view, web view, color well, image well, activity view, lockup, data visualization, content display, displaying images, rendering web content, color pickers, or presenting collections of items in Apple apps. Also use when the user says how should I display charts, what's the best way to show images, should I use a web view, how do I build a grid of items, what component shows media, or how do I present a share sheet. Cross-references: hig-foundations for color/typography/accessibility, hig-patterns for data visualization patterns, hig-components-layout for structural containers, hig-platforms for platform-specific component behavior.
tools
Automate HelpDesk tasks via Rube MCP (Composio): list tickets, manage views, use canned responses, and configure custom fields. Always search tools first for current schemas.
testing
Expert Haskell engineer specializing in advanced type systems, pure functional design, and high-reliability software. Use PROACTIVELY for type-level programming, concurrency, and architecture guidance.
tools
GraphQL gives clients exactly the data they need - no more, no less. One endpoint, typed schema, introspection. But the flexibility that makes it powerful also makes it dangerous. Without proper controls, clients can craft queries that bring down your server. This skill covers schema design, resolvers, DataLoader for N+1 prevention, federation for microservices, and client integration with Apollo/urql. Key insight: GraphQL is a contract. The schema is the API documentation. Design it carefully.