You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .agents/skills/github-pull-request/SKILL.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,10 @@ Use this skill to take a Fast Forward issue from "ready to implement" to an open
20
20
- Keep one branch and one PR per issue.
21
21
- Branch from `main` or the repository integration branch, never from another feature branch.
22
22
- When returning to `main` before starting a new implementation, always fetch and fast-forward from the remote before creating the next feature branch so release files, changelog state, and generated artifacts start from the latest published baseline.
23
+
- Before pushing or reopening prior work, verify whether an earlier PR for the
24
+
issue or branch is already closed. If the earlier branch has been deleted or
25
+
the PR is closed, prefer opening a follow-up bug issue and publishing a new
26
+
branch and PR instead of reviving the old branch name.
23
27
- Prefer local `git` for checkout, commit, and push.
24
28
- Prefer connector-backed GitHub data for issue and PR context when available.
25
29
- Use `phpunit-tests`, `package-readme`, and `sphinx-docs` when the change clearly affects tests or documentation.
@@ -41,6 +45,9 @@ Use this skill to take a Fast Forward issue from "ready to implement" to an open
41
45
42
46
- Do not batch unrelated issues into one branch or PR.
43
47
- Do not create a duplicate PR if the current branch already has one.
48
+
- Do not push new follow-up work onto a previously closed PR branch that has
49
+
already been deleted upstream; open a bug issue and start a fresh branch/PR
50
+
instead.
44
51
- Do not open a PR before running the relevant verification commands.
45
52
- Do not skip a notable changelog update when the implementation changes public behavior, release automation, or repository workflows in a way users or maintainers would expect to see called out.
46
53
- Do not proceed to the next issue if the repository is dirty from unfinished work.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
13
13
14
14
### Changed
15
15
16
+
- Teach the review and pull-request agent skills to treat workflow-managed wiki pointer updates as expected state and to prefer fresh follow-up issues plus PRs over reviving closed deleted branches (#147)
16
17
- Require GitHub issue write readback verification in the github-issues skill (#165)
17
18
- Standardize cache flags and nested cache-dir propagation across cache-aware commands (#162)
0 commit comments