Skip to content
Closed
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
17 changes: 17 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Project Agent Configuration

## Git Workflow

**Pre-commit Hooks: NEVER Bypass**

Pre-commit hooks perform essential validation including formatting, linting, and commit message checks. These hooks ensure code quality and consistency.

- **Never** use `--no-verify` or `--no-gpg-sign` flags with git commands
- **Never** skip hooks for any commit, including:
- Regular commits
- Hotfixes
- Emergency fixes
- WIP commits
- All other commits

If a hook fails, fix the underlying issue rather than bypassing the hook.
Loading