Skip to content

Commit adc2132

Browse files
committed
feat: move suggest PR desc to notify workflow
1 parent 46e70c6 commit adc2132

File tree

7 files changed

+74
-97
lines changed

7 files changed

+74
-97
lines changed

apps/agent/src/constants/discord.ts

+1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ export const DISCORD_GITHUB_MAP = {
22
zlatanpham: '790170208228212766',
33
vdhieu: '797044001579597846',
44
'R-Jim': '797044001579597846',
5+
catngh: '319132138849173505',
56
}

apps/agent/src/mastra/index.ts

-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import {
44
notifyDeveloperPRRequestWorkflow,
55
sendTodayPRListToDiscordWorkflow,
66
notifyDeveloperAboutPRStatus,
7-
suggestPRsDescription,
87
} from './workflows'
98
import { githubAgent } from './agents'
109

@@ -13,7 +12,6 @@ export const mastra = new Mastra({
1312
notifyDeveloperPRRequestWorkflow,
1413
sendTodayPRListToDiscordWorkflow,
1514
notifyDeveloperAboutPRStatus,
16-
suggestPRsDescription,
1715
},
1816
agents: {
1917
githubAgent,

apps/agent/src/mastra/workflows/github-notify-developer-about-pr-status.ts

+59
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import { discordClient } from '../../lib/discord'
55
import { groupBy } from '../../utils/array'
66
import { PullRequest } from '../../lib/type'
77
import { DISCORD_GITHUB_MAP } from '../../constants/discord'
8+
import { suggestPRDescriptionAgent } from '../agents/analyze-github-prs'
89

910
async function handleMergeConflicts(discordUserId: string, prs: PullRequest[]) {
1011
const hasMergedConflictsPRs = prs.filter(
@@ -60,6 +61,61 @@ async function handleWaitingForReview(
6061
}
6162
}
6263

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+
63119
const notifyDeveloperAboutPRStatus = new Workflow({
64120
name: 'Notify developer about PR status',
65121
})
@@ -87,6 +143,9 @@ const notifyDeveloperAboutPRStatus = new Workflow({
87143

88144
// Notify developer if their PR needs to tag for review
89145
await handleWaitingForReview(discordUserId, prs)
146+
147+
// Notify developer, if their PR description needs improvement
148+
await handleSuggestPRDescription(discordUserId, prs)
90149
}
91150
}),
92151
)

apps/agent/src/mastra/workflows/github-suggest-prs-description.ts

-88
This file was deleted.
-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
export * from './github-notify-open-prs'
22
export * from './github-send-today-list-PRs-to-discord'
33
export * from './github-notify-developer-about-pr-status'
4-
export * from './github-suggest-prs-description'

apps/discord-bot/src/commands/chat/ask-command.ts

+10-5
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export class AskCommand implements Command {
3838
data: EventData,
3939
): Promise<void> {
4040
// Get the full message content after the command
41-
const question = intr.toString().replace('/ask prompt:', '').trim()
41+
const question = intr.toString().replace('/ask prompt:', '').trim()
4242

4343
if (!question) {
4444
await InteractionUtils.send(
@@ -55,7 +55,10 @@ export class AskCommand implements Command {
5555
RESPONSE: '...',
5656
USER: intr.user.id,
5757
}).addFields([
58-
{ name: '', value: `**Question**: ${formatQuestionWithUserMention(question)}\n` },
58+
{
59+
name: '',
60+
value: `**Question**: ${formatQuestionWithUserMention(question)}\n`,
61+
},
5962
{
6063
name: '',
6164
value: "I'm looking for the answer...",
@@ -66,7 +69,9 @@ export class AskCommand implements Command {
6669
let response = ''
6770
try {
6871
// Process the stream
69-
for await (const chunk of getStreamedResponse(`I am <@${intr.user.id}>, ${question}`)) {
72+
for await (const chunk of getStreamedResponse(
73+
`I am <@${intr.user.id}>, ${question}`,
74+
)) {
7075
response += chunk
7176
}
7277

@@ -210,5 +215,5 @@ async function* getStreamedResponse(
210215
}
211216

212217
function formatQuestionWithUserMention(question: string): string {
213-
return `\` ${question.replace(/(<@?\d+>)/g, '`$1`')} \``;
214-
}
218+
return `\` ${question.replace(/(<@?\d+>)/g, '`$1`')} \``
219+
}

apps/discord-bot/src/commands/common.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,10 @@ export function replaceDiscordMentions(
2929
idMap: Record<string, string> = hardCodeIDMap,
3030
): string {
3131
return text.replace(/<@?(\d+)>/g, (match, discordId) => {
32-
return "@"+(Object.entries(idMap).find(([_, v]) => v === discordId)?.[0] || match)
32+
return (
33+
'@' +
34+
(Object.entries(idMap).find(([_, v]) => v === discordId)?.[0] || match)
35+
)
3336
})
3437
}
3538

0 commit comments

Comments
 (0)