Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
11 changes: 11 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,17 @@ PRs may receive AI-assisted reviews (Copilot, Claude, Gemini, Codex) at the owne

## Before You Start

### First-Time Setup

After cloning the repo, install git hooks manually:

```bash
npm install
npm run setup-hooks
```

The `setup-hooks` script installs pre-commit and pre-push hooks into your local `.git/hooks/`. It does **not** run automatically on `npm install` — you must opt in.
Comment thread
avifenesh marked this conversation as resolved.
Outdated
Comment thread
avifenesh marked this conversation as resolved.
Outdated

### Multi-File Changes

For changes touching multiple files, **read the relevant checklist first**:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"detect": "node bin/dev-cli.js detect",
"verify": "node bin/dev-cli.js verify",
"version": "node scripts/stamp-version.js && git add -A",
"prepare": "node bin/dev-cli.js setup-hooks"
"setup-hooks": "node bin/dev-cli.js setup-hooks"
},
"repository": {
"type": "git",
Expand Down
Loading