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: src/clayde/prompts/address_review.j2
+7-5Lines changed: 7 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -16,13 +16,15 @@ REPOSITORY ON DISK: {{ repo_path }}
16
16
17
17
Steps:
18
18
1. Check out the branch: git checkout {{ branch_name }} && git pull origin {{ branch_name }}
19
-
2. Read and understand each review comment
20
-
3. Make the requested changes
21
-
4. Run tests if a test command is discoverable (check CLAUDE.md, README, Makefile, package.json, pyproject.toml, justfile):
19
+
2. Read the README (README.md, README.rst, README.txt, or README) and agents.md at the root and in any relevant subdirectories.
20
+
3. Read and understand each review comment.
21
+
4. Make the requested changes.
22
+
5. If any changes affect documented usage, configuration, architecture, or behavior, update the README and agents.md accordingly.
23
+
6. Run tests if a test command is discoverable (check CLAUDE.md, README, Makefile, package.json, pyproject.toml, justfile):
22
24
- If no test runner is discoverable, skip this step.
23
25
- If a test suite exists: ensure all tests pass after your changes (pre-existing failures are exempt). Do NOT commit if your changes introduced new test failures.
24
-
5. Commit with a clear message referencing the review, e.g.: "Address review: <summary>"
25
-
6. Push: git push origin {{ branch_name }}
26
+
7. Commit with a clear message referencing the review, e.g.: "Address review: <summary>"
27
+
8. Push: git push origin {{ branch_name }}
26
28
27
29
After making all changes, provide a short summary of what you changed in response
Copy file name to clipboardExpand all lines: src/clayde/prompts/implement.j2
+8-6Lines changed: 8 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -16,14 +16,16 @@ REPOSITORY ON DISK: {{ repo_path }}
16
16
Steps:
17
17
1. Before creating a branch, check whether branch `{{ branch_name }}` already exists. If so, resume from the existing state rather than starting fresh.
18
18
2. Create or switch to branch: git checkout -b {{ branch_name }} (or git checkout {{ branch_name }} if it exists)
19
-
3. Implement the plan carefully, following existing code style and paying attention to agents.md files if they exist
20
-
4. Write or update tests if applicable
21
-
5. Run tests if a test command is discoverable (check CLAUDE.md, README, Makefile, package.json, pyproject.toml, justfile):
19
+
3. Read the README (README.md, README.rst, README.txt, or README) and agents.md at the root and in any relevant subdirectories before writing any code.
20
+
4. Implement the plan carefully, following existing code style.
21
+
5. After implementing, update the README and agents.md as needed to reflect any changes to usage, configuration, architecture, or behavior.
22
+
6. Write or update tests if applicable
23
+
7. Run tests if a test command is discoverable (check CLAUDE.md, README, Makefile, package.json, pyproject.toml, justfile):
22
24
- If no test runner is discoverable, skip this step.
23
25
- If a test suite exists: first note any pre-existing failures (run tests on the base branch before your changes if needed), then ensure all tests pass after your changes (pre-existing failures are exempt). If there are pre-existing failures, you MUST mention them in your PR summary. Do NOT commit if your changes introduced new test failures.
24
-
6. Review your own changes for correctness, edge cases, and style and run "just cleanup" if it exists before committing
25
-
7. Commit with a clear message, e.g.: "Fix #{{ number }}: <summary>"
26
-
8. Push: git push origin {{ branch_name }}
26
+
8. Review your own changes for correctness, edge cases, and style and run "just cleanup" if it exists before committing
27
+
9. Commit with a clear message, e.g.: "Fix #{{ number }}: <summary>"
28
+
10. Push: git push origin {{ branch_name }}
27
29
28
30
Do NOT create a pull request — it will be created automatically after you finish.
0 commit comments