You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constASSISTANT_PROMPTS_TITLE='Try asking Kilo Bot';
39
39
40
+
constSLACK_CHANNEL_INVITE_MESSAGE={
41
+
markdown:
42
+
"Hey, I'm Kilo, an AI coding assistant. Mention me in this channel when you want help investigating bugs, reviewing PRs, explaining code, or starting implementation work. AI can make mistakes, so please review responses before relying on them. Sessions created with Kilo from Slack are stored at https://app.kilo.ai.",
43
+
}asconst;
44
+
40
45
exportfunctionbuildSlackAppHomeView(){
41
46
return{
42
47
type: 'home',
@@ -49,7 +54,7 @@ export function buildSlackAppHomeView() {
49
54
type: 'section',
50
55
text: {
51
56
type: 'mrkdwn',
52
-
text: 'Turn Slack messages into focused coding work. Ask Kilo to investigate bugs, review pull requests, explain code, or start a Cloud Agent session in your connected repositories.',
57
+
text: "I'm Kilo, an AI coding assistant that turns Slack messages into focused coding work. Ask me to investigate bugs, review pull requests, explain code, or start a Cloud Agent session in your connected repositories. AI can make mistakes, so please review responses before relying on them. Sessions created with Kilo from Slack are stored at https://app.kilo.ai.",
53
58
},
54
59
},
55
60
{
@@ -241,6 +246,25 @@ function createKiloBot(slackAdapter: ReturnType<typeof createSlackAdapter>) {
0 commit comments