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 services/pr-evaluator/prompt-builder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,11 @@ Evaluate this pull request.
### PR Description
${prData.description || "(No description provided)"}

### Changed Files
### Changed Files (committed in this PR)
${prData.files.map((f) => `- ${f.filename} (${f.status}: +${f.additions}/-${f.deletions})`).join("\n")}

**Note:** Files you read that are not listed above exist locally but are not committed.

### Diff
\`\`\`diff
${prData.diff}
Expand Down
2 changes: 2 additions & 0 deletions services/pr-evaluator/prompts/output-format.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## Output template

**Security:** Never include full API keys or secrets in output. Use redacted format like `phc_xxxx...xxxx`.

Write your review following this Markdown structure:

---
Expand Down