Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions git-standards/skills/git-workflow-standards/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ worktrees with uncommitted changes are NEVER stale. Use `git worktree remove` (n
- Long-running branches: rebase from main weekly
- Before PRs: ensure branch is on latest main
- Never branch from feature branches β€” always from main
- Commit messages: conventional-commit prefixes only, no emoji (see `pr-standards`)
Comment thread
JacobPEvans marked this conversation as resolved.

| Method | When |
| --- | --- |
Expand Down
9 changes: 9 additions & 0 deletions git-standards/skills/pr-standards/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,15 @@ for feedback. Just resolve the thread.
Exception: explicit requests like
`@gemini-code-assist review the security implications of this change`.

## Commit, PR Title & PR Description Style

No emoji or gitmoji in commit messages, PR titles, PR descriptions, or
release notes. Conventional-commit prefixes (`feat:`, `fix:`, `chore:`,
`docs:`, etc.) are required at the start of commit subjects and PR titles
only β€” descriptions and release notes are plain prose.
Applies to all PRs β€” human, AI-assisted, and bot-authored automated fixes.
No `πŸ€–`, no `✨`, no `πŸ›`. The `type(scope):` prefix carries the signal.
Comment thread
JacobPEvans marked this conversation as resolved.

## GitHub Issue Standards

### Title Prefixes
Expand Down
Loading