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
11 changes: 9 additions & 2 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,20 +102,27 @@ The runner:

**IMPORTANT: Never push directly to master. Always use feature branches and PRs.**

**IMPORTANT: Always run `make` and ensure it passes before pushing commits or updating PRs.** This runs all unit tests and catches regressions early.

1. **Create a feature branch** before making changes:
```bash
git checkout -b feature/descriptive-name
```

2. **Make commits** on the feature branch with clear messages

3. **Push the feature branch** and create a PR:
3. **Verify tests pass** before pushing:
```bash
make # Must succeed before pushing
```

4. **Push the feature branch** and create a PR:
```bash
git push origin feature/descriptive-name
gh pr create --title "Title" --body "Description"
```

4. **Wait for review** before merging
5. **Wait for review** before merging

### Commits

Expand Down
Loading
Loading