Skip to content
Merged
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
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ Even inside your own worktree, operate defensively:
2. **One feature branch + one PR per task.** Branch off `main`. **Never commit task work
straight to `main`.** Name the branch after the issue it fixes: `claude/issue-<n>-<slug>`.
The issue number is what makes in-flight work *discoverable* — `git ls-remote --heads
origin | grep issue-<n>` is a one-command pre-check, and the Duplicate Fix Guard
origin | grep -E 'issue-<n>(-|$)'` is a one-command pre-check, and the Duplicate Fix Guard
workflow warns on fix PRs whose branch names no declared issue. A hit is a hint, not a
claim — most heads carry no PR: ⛔ never skip a card on one, the `Claim:` comment decides.

Expand Down
Loading