git
Press shortcut → speak → get text. Free and open source. More local-first apps soon ❤️
npx skills add https://github.com/epicenterhq/epicenter --skill gitSKILL.md
Git Commit and Pull Request Guidelines
Conventional Commits Format
<type>[optional scope]: <description>
[optional body]
[optional footer(s)]
Commit Types
feat: New features (correlates with MINOR in semantic versioning)fix: Bug fixes (correlates with PATCH in semantic versioning)docs: Documentation only changesrefactor: Code changes that neither fix bugs nor add featuresperf: Performance improvementstest: Adding or modifying testschore: Maintenance tasks, dependency updates, etc.style: Code style changes (formatting, missing semicolons, etc.)build: Changes to build system or dependenciesci: Changes to CI configuration files and scripts
Scope Guidelines
- Scope is OPTIONAL: only add when it provides clarity
- Use lowercase, placed in parentheses after type:
feat(transcription): - Prefer specific component/module names over generic terms
- Your current practice is good: component names (
EditRecordingDialog), feature areas (transcription,sound) - Avoid overly generic scopes like
uiorbackendunless truly appropriate
When to Use Scope
- When the change is localized to a specific component/module
- When it helps distinguish between similar changes
- When working in a large codebase with distinct areas
When NOT to Use Scope
- When the change affects multiple areas equally
- When the type alone is sufficiently descriptive
- For small, obvious changes
Description Rules
- Start with lowercase immediately after the colon and space
- Use imperative mood ("add" not "added" or "adds")
- No period at the end
- Keep under 50-72 characters on first line
Breaking Changes
- Add
!after type/scope, before colon:feat(api)!: change endpoint structure - Include
BREAKING CHANGE:in the footer with details - These trigger MAJOR version bumps in semantic versioning
Examples Following Your Style:
feat(transcription): add model selection for OpenAI providersfix(sound): resolve audio import paths in assets modulerefactor(EditRecordingDialog): implement working copy patterndocs(README): clarify cost comparison sectionchore: update dependencies to latest versionsfix!: change default transcription API endpoint
Commit Messages Best Practices
- NEVER include Claude Code or opencode watermarks or attribution
- Each commit should represent a single, atomic change
- Write commits for future developers (including yourself)
- If you need more than one line to describe what you did, consider splitting the commit
Pull Request Guidelines
- NEVER include Claude Code or opencode watermarks or attribution in PR titles/descriptions
- PR title should follow same conventional commit format as commits
- Focus on the "why" and "what" of changes, not the "how it was created"
- Include any breaking changes prominently
- Link to relevant issues
Verifying GitHub Usernames
CRITICAL: When mentioning GitHub users with @username in PR descriptions, issue comments, or any GitHub content, NEVER guess or assume usernames. Always verify programmatically using the GitHub CLI:
# Get the author of a PR
gh pr view <PR_NUMBER> --json author
# Get the author of an issue
gh issue view <ISSUE_NUMBER> --json author
This prevents embarrassing mistakes where you credit the wrong person. Always run the verification command before writing the @mention.
Merge Strategy
When merging PRs, use regular merge commits (NOT squash):
gh pr merge --merge # Correct: preserves commit history
# NOT: gh pr merge --squash
# NOT: gh pr merge --rebase
# Use --admin flag if needed to bypass branch protections
gh pr merge --merge --admin
Preserve individual commits; they tell the story of how the work evolved.
Pull Request Body Format
Use clean paragraph format instead of bullet points or structured sections:
First Paragraph: Explain what the change does and what problem it solves.
- Focus on the user-facing benefit or technical improvement
- Use clear, descriptive language about the behavior change
Subsequent Paragraphs: Explain how the implementation works.
- Describe the technical approach taken
- Explain key classes, methods, or patterns used
- Include reasoning for technical decisions (e.g., why
flex-1is needed)
Example:
This change enables proper vertical scrolling for drawer components when content exceeds the available drawer height. Previously, drawers with long content could overflow without proper scrolling behavior, making it difficult for users to access all content and resulting in poor mobile UX.
To accomplish this, I wrapped the `{@render children?.()}` in a `<div class="flex-1 overflow-y-auto">` container. The `flex-1` class ensures the content area takes up all remaining space after the fixed drag handle at the top, while `overflow-y-auto` enables vertical scrolling when the content height exceeds the available space. This maintains
...