-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreview.json
More file actions
29 lines (29 loc) · 995 Bytes
/
Copy pathreview.json
File metadata and controls
29 lines (29 loc) · 995 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"id": "review",
"description": "Review a pasted diff, PR summary, or proposed change without editing files.",
"inputs": {
"change": {
"type": "string",
"required": true,
"description": "the diff, PR summary, or change description to review"
},
"context": { "type": "string", "required": false, "description": "review focus, ticket context, or constraints" }
},
"agents": {
"reviewer": {
"profile": "reviewer",
"instructions": "You do a concise code review. Prioritize correctness, regressions, and missing tests. You write no files.",
"filesystem": "read-only"
}
},
"steps": [
{
"id": "review",
"call": "reviewer",
"prompt": "Change to review:\n{{ inputs.change }}\n\nContext:\n{{ inputs.context }}\n\nInspect the repo read-only if useful. Return findings first, ordered by severity. Keep it concise. Do not edit files."
},
{ "id": "out", "format": "{{ steps.review.output }}" }
],
"output": "out",
"limits": { "callTimeoutMinutes": 45 }
}