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
4 changes: 3 additions & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@
- Perform all work on a branch in a git worktree under `.worktrees/` (e.g.
`git worktree add .worktrees/<branch> -b <branch>`) — never commit directly on `main`.
- Use [Conventional Commits](https://www.conventionalcommits.org/) for all commit messages.
- A squash merge makes the PR title the commit subject, so a PR title is a Conventional Commit too.
`feat(#412): add the retry budget` is a title; `add the retry budget` is not.
- Commit subjects and PR titles use the imperative mood ("add X", never "added X" or a bare noun
phrase) — a squash merge makes the PR title the commit subject.
phrase).
- Open PRs against `main` using the PR template (`.github/PULL_REQUEST_TEMPLATE.md`). Descriptions
are condensed: lead paragraph ≤2 sentences, one-line bullets, ≤150 words — write the short version
first, don't draft long and trim.
Expand Down
4 changes: 3 additions & 1 deletion agents/shared.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@
- Perform all work on a branch in a git worktree under `.worktrees/` (e.g.
`git worktree add .worktrees/<branch> -b <branch>`) — never commit directly on `main`.
- Use [Conventional Commits](https://www.conventionalcommits.org/) for all commit messages.
- A squash merge makes the PR title the commit subject, so a PR title is a Conventional Commit too.
`feat(#412): add the retry budget` is a title; `add the retry budget` is not.
- Commit subjects and PR titles use the imperative mood ("add X", never "added X" or a bare noun
phrase) — a squash merge makes the PR title the commit subject.
phrase).
- Open PRs against `main` using the PR template (`.github/PULL_REQUEST_TEMPLATE.md`). Descriptions
are condensed: lead paragraph ≤2 sentences, one-line bullets, ≤150 words — write the short version
first, don't draft long and trim.
Expand Down