Skip to content
Draft
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
14 changes: 14 additions & 0 deletions apps/api/src/handlers/discord/__tests__/index.test.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions apps/api/src/handlers/discord/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,13 @@ const DISCORD_HELP_MESSAGE = [
'`/link code:<code>` — link this Discord account in a DM with me.',
'`/help` — show this message.',
'',
'**Prompt starters**',
'`Review PR #123, address actionable feedback, and update the PR.`',
'`Investigate the latest CI failure, fix it, and open a draft PR.`',
'`Find the smallest fix for <issue>, test it, and open a draft PR.`',
'',
'Copy a starter into `/new`, then replace the details for your task.',
'',
'Follow up by sending another message in the task thread.',
].join('\n');

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion packages/communication/src/discord-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1214,7 +1214,8 @@ export class DiscordCommunicationProvider implements CommunicationProviderAdapte
{
type: 3,
name: 'request',
description: 'What would you like Roomote to do?',
description:
'Describe the task, or run /help for prompt starters',
required: true,
},
],
Expand Down
Loading