Files
promptfoo--promptfoo/docs/agents/pr-conventions.md
T
wehub-resource-sync 0d3cb498a3
CI / Shell Format Check (push) Has been cancelled
CI / Check Ruby (3.4) (push) Has been cancelled
CI / CI Config (push) Has been cancelled
CI / Test on Node ${{ matrix.node }} and ${{ matrix.os }}${{ matrix.shard && format(' (shard {0}/3)', matrix.shard) || '' }} (push) Has been cancelled
CI / Build on Node ${{ matrix.node }} (push) Has been cancelled
CI / Style Check (push) Has been cancelled
CI / Generate Assets (push) Has been cancelled
CI / Check Python (3.14) (push) Has been cancelled
CI / Check Python (3.9) (push) Has been cancelled
CI / Build Docs (push) Has been cancelled
CI / Code Scan Action (push) Has been cancelled
CI / Site tests (push) Has been cancelled
CI / webui tests (push) Has been cancelled
CI / Run Integration Tests (push) Has been cancelled
CI / Run Smoke Tests (push) Has been cancelled
CI / Go Tests (push) Has been cancelled
CI / Share Test (push) Has been cancelled
CI / Redteam (Production API) (push) Has been cancelled
CI / Redteam (Staging API) (push) Has been cancelled
CI / GitHub Actions Lint (push) Has been cancelled
CI / Check Ruby (3.0) (push) Has been cancelled
release-please / release-please (push) Has been cancelled
release-please / build (push) Has been cancelled
release-please / publish-npm (push) Has been cancelled
release-please / publish-npm-backfill (push) Has been cancelled
release-please / docker (push) Has been cancelled
release-please / publish-code-scan-action (push) Has been cancelled
release-please / attest-code-scan-action (push) Has been cancelled
Deploy local.promptfoo.app / Deploy to Cloudflare Pages (push) Has been cancelled
Test and Publish Multi-arch Docker Image / test (push) Has been cancelled
Test and Publish Multi-arch Docker Image / build-docker-and-push-digests (map[digest-suffix:linux-amd64 platform:linux/amd64 runner:ubuntu-latest]) (push) Has been cancelled
Test and Publish Multi-arch Docker Image / build-docker-and-push-digests (map[digest-suffix:linux-arm64 platform:linux/arm64 runner:ubuntu-24.04-arm]) (push) Has been cancelled
Test and Publish Multi-arch Docker Image / merge-docker-digests (push) Has been cancelled
Test and Publish Multi-arch Docker Image / Attest Multi-arch Image (push) Has been cancelled
Validate Renovate Config / Validate Renovate Configuration (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:24:08 +08:00

220 lines
7.8 KiB
Markdown

# Pull Request Conventions
PR titles follow Conventional Commits format. They become squash-merge commit messages and changelog entries.
## Format
```plaintext
<type>(<scope>): <description>
<type>(<scope>)!: <description> # Breaking changes
```
### Description Guidelines
- **Imperative mood**: "add feature" not "added" or "adds"
- **Lowercase**: except proper nouns and acronyms (FERPA, OAuth, MUI)
- **No trailing period**
- **Be specific**: describe what changed, not that something changed
- **~50 characters**: GitHub truncates long titles
## Types
| Type | Use For |
| ---------- | ----------------------------------------------------- |
| `feat` | New CLI feature or major webui feature |
| `fix` | Bug fix in CLI or major webui bug fix |
| `chore` | Maintenance, upgrades, minor fixes, non-user-facing |
| `refactor` | Code restructuring without behavior change |
| `docs` | Documentation only (use with `site` scope for site/) |
| `test` | Test-only changes (new tests, test fixes, test infra) |
| `ci` | CI/CD changes |
| `revert` | Revert previous change |
| `perf` | Performance improvement |
**Changelog visibility:** Only `feat`, `fix`, and breaking changes (`!`) appear in release notes. Use `ci`, `chore`, `test`, `docs`, or `refactor` for changes that shouldn't be user-facing.
**Breaking changes:** Add `!` after scope: `feat(api)!:`, `chore(deps)!:`
### Test vs Fix
Use `test:` when the PR **only** contains test changes:
- Adding new tests
- Fixing broken/flaky tests
- Fixing lint errors in test files
- Test infrastructure changes
Use `fix:` when fixing bugs in **application code** (even if tests are included):
- Bug fix in `src/` with accompanying test changes → `fix:`
- Lint error in test file only → `test:`
### Type Selection for Mixed Changes
Use the **primary change** to determine type:
| PR Contains | Type | Why |
| --------------------------------- | ---------- | -------------------------------- |
| Bug fix + new tests | `fix` | Fix is primary, tests support it |
| Feature + documentation | `feat` | Feature is primary |
| Only test changes | `test` | No application code changed |
| Only doc changes | `docs` | No application code changed |
| Minor webui fix (styling, typos) | `chore` | Not a major user-facing fix |
| Refactor + minor fixes discovered | `refactor` | Refactor was the intent |
**Major webui changes** = new pages, significant UX changes, core functionality bugs
**Minor webui changes** = styling tweaks, copy changes, internal refactors → use `chore`
## Scope Selection (Priority Order)
### 1. Feature Domains (HIGHEST PRIORITY)
**`redteam` - MANDATORY when redteam is the PR's primary change or product surface:**
- Plugins, strategies, grading
- UI components (setup, report, config dialogs)
- CLI commands, server endpoints
- Documentation, examples
- Redteam-specific tests, fixtures, utilities, and behavior changes
**Other feature domains:** `providers`, `assertions`, `eval`, `api`, `db`
### 2. Product Areas
- `webui` - React app in `src/app/`
- `cli` - CLI in `src/`
- `server` - Web server in `src/server/`
**Note:** Documentation site changes use `docs(site):`, not a standalone `site` scope.
### 3. Technical/Infrastructure
- `deps` - Dependency updates
- `ci` - CI/CD pipelines, GitHub Actions
- `tests` - Test infrastructure
- `build` - Build tooling
- `examples` - Non-redteam examples
### 4. Specialized
`auth`, `cache`, `config`, `python`, `mcp`, `code-scan`
### 5. No Scope
For generic/cross-cutting changes: `chore: bump version 0.119.11`
## THE REDTEAM RULE
**If a PR is primarily redteam-related, use `(redteam)` scope.**
This applies even if the redteam change is only in UI, CLI, docs, examples, utilities, tests, or server endpoints.
For broad, cross-cutting maintenance PRs, do **not** choose `(redteam)` solely because one touched file lives under `src/redteam/` or because one generic helper is also used by redteam. Use the PR's primary purpose/scope and call out the redteam-adjacent touch in the PR description when it is review-relevant.
**Wrong:**
```plaintext
fix(webui): fix Basic strategy checkbox in red team setup
feat(cli): add redteam validate command
chore(redteam): resolve repo-wide lint findings
```
**Correct:**
```plaintext
fix(redteam): fix Basic strategy checkbox in setup UI
feat(redteam): add validate target CLI command
chore: resolve repo-wide lint findings
```
**Why?** Redteam spans CLI, webui, server, docs, and examples. Consistent scoping makes it easy to find all redteam work.
## Decision Tree
```plaintext
1. Is the PR primarily redteam-related? → Use (redteam)
2. Is it another feature domain? → Use that scope
3. Is it localized to one product area? → Use that scope
4. Is it infrastructure? → Use that scope
5. Otherwise → No scope
```
## Dependency Updates
- **`fix(deps)`** - Patch versions (security/bug fixes)
- **`chore(deps)`** - Minor/major upgrades, bulk updates, dev dependencies
## Examples
**Good:**
```plaintext
feat(redteam): add FERPA compliance plugin
feat(cli): add --json output flag to eval command
fix(cli): handle empty config file gracefully
fix(webui): fix pagination crash on empty results
chore(webui): update button styling on settings page
docs(site): add guide for custom providers
chore(deps): update Material-UI monorepo to v8 (major)
fix(deps): update dependency zod to v4.2.0
feat(api)!: simplify provider interface
chore: bump version 0.119.11
test: add smoke tests for CLI commands
test(redteam): fix flaky plugin integration tests
```
**Bad:**
```plaintext
feat: add new redteam thing # Missing (redteam) scope
fix(webui): red team checkbox # Should be fix(redteam)
chore(webui): update dependency # Should be chore(deps)
feat: stuff # Too vague
fix: bug fix # What bug? Be specific
Fix(cli): Add feature # Wrong case, not imperative
fix(test): resolve lint errors # Should be test: (test-only)
docs: update site # Should be docs(site):
site: update guides # Should be docs(site):
feat(webui): minor styling update # Minor = chore, not feat
```
## Draft vs Ready
Open PRs **ready for review** by default:
```bash
gh pr create --title "feat(scope): description" --body "..."
```
Use `--draft` only when:
- The user explicitly asks for a draft
- The work is an intentional WIP parked for a hand-off
- The PR blocks on an external dependency that must land first
- The PR addresses an unpublished security advisory (see root `AGENTS.md`
"Security-Sensitive PRs")
## Commit & PR Attribution
- **Never attribute commits or PR bodies to Claude / Claude Code.** Do not add
`Co-Authored-By: Claude…` trailers, "Generated with Claude Code" footers, or
similar markers. Use your configured git identity only.
- Do not add marketing-style suffixes to commit subjects.
## GitHub Interaction Rules
- **NEVER comment on GitHub issues** - Only create PRs to address issues
- **NEVER close issues** - Let maintainers close issues after PR merge
- Focus on creating high-quality PRs that fully address the issue
## Checklist Before Creating PR
1. Is this PR primarily redteam-related? → Use `(redteam)` scope
2. Choose correct type
3. Choose correct scope using priority order
4. Breaking change? Add `!` after scope
5. Run `npm run l && npm run f`
6. Open ready-for-review (omit `--draft`) unless one of the exceptions above applies
7. Do **not** add Claude attribution trailers or footers