@@ -5,6 +5,7 @@ import { discordClient } from '../../lib/discord'
5
5
import { groupBy } from '../../utils/array'
6
6
import { PullRequest } from '../../lib/type'
7
7
import { DISCORD_GITHUB_MAP } from '../../constants/discord'
8
+ import { suggestPRDescriptionAgent } from '../agents/analyze-github-prs'
8
9
9
10
async function handleMergeConflicts ( discordUserId : string , prs : PullRequest [ ] ) {
10
11
const hasMergedConflictsPRs = prs . filter (
@@ -60,6 +61,61 @@ async function handleWaitingForReview(
60
61
}
61
62
}
62
63
64
+ async function handleSuggestPRDescription (
65
+ discordUserId : string ,
66
+ prs : PullRequest [ ] ,
67
+ ) {
68
+ const embed = {
69
+ title : `Hey <@${ discordUserId } >, your PR needs some improvements` ,
70
+ color : 3447003 ,
71
+ fields : [ ] as { name : string ; value : string ; inline : boolean } [ ] ,
72
+ }
73
+ let needSuggestion = false
74
+ // for each pr, check if it needs suggestion
75
+ for ( const pr of prs ) {
76
+ // use agent to check if PR description is good
77
+ const prompt = `Based on the following pull request, help me determine if it needs to be improved:
78
+ ${ JSON . stringify ( { title : pr . title , body : pr . body } , null , 2 ) } `
79
+
80
+ // call to agent
81
+ const agentResponse = await suggestPRDescriptionAgent . generate ( [
82
+ {
83
+ role : 'user' ,
84
+ content : prompt ,
85
+ } ,
86
+ ] )
87
+
88
+ const agentResponseText = JSON . parse ( agentResponse . text ) as {
89
+ suggestion_needed : boolean
90
+ original_title : string
91
+ original_body : string
92
+ suggest_title : string
93
+ suggest_body : string
94
+ }
95
+
96
+ // create discord embed
97
+ if ( agentResponseText . suggestion_needed ) {
98
+ needSuggestion = true
99
+ embed . fields . push ( {
100
+ name : `#${ pr . number } ${ pr . title } ` ,
101
+ value : `Here are some suggestions for your PR:
102
+ **Title**: ${ agentResponseText . suggest_title }
103
+ **Description**: ${ agentResponseText . suggest_body } ` ,
104
+ inline : false ,
105
+ } )
106
+ }
107
+ }
108
+
109
+ // send to discord
110
+ //if (needSuggestion) {
111
+ const res = await discordClient . sendMessageToUser ( {
112
+ userId : discordUserId ,
113
+ message : '' ,
114
+ embed,
115
+ } )
116
+ //}
117
+ }
118
+
63
119
const notifyDeveloperAboutPRStatus = new Workflow ( {
64
120
name : 'Notify developer about PR status' ,
65
121
} )
@@ -87,6 +143,9 @@ const notifyDeveloperAboutPRStatus = new Workflow({
87
143
88
144
// Notify developer if their PR needs to tag for review
89
145
await handleWaitingForReview ( discordUserId , prs )
146
+
147
+ // Notify developer, if their PR description needs improvement
148
+ await handleSuggestPRDescription ( discordUserId , prs )
90
149
}
91
150
} ) ,
92
151
)
0 commit comments