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
Copy file name to clipboardExpand all lines: internal/llm/standup.prompt.yml
+50-6Lines changed: 50 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -3,27 +3,71 @@ description: Generates professional standup reports based on GitHub activity
3
3
model: openai/gpt-4o
4
4
messages:
5
5
- role: system
6
-
content: |
7
-
You are an AI assistant helping to generate professional standup reports based on GitHub activity.
6
+
content: >
7
+
You are an AI assistant helping to generate professional standup reports
8
+
based on GitHub activity.
9
+
10
+
11
+
Your task is to create a concise, well-structured standup report that
12
+
summarizes the developer's work from the previous day(s). The report
13
+
should be written in first person and include:
8
14
9
-
Your task is to create a concise, well-structured standup report that summarizes the developer's work from the previous day(s). The report should be written in first person and include:
10
15
11
16
1. **Yesterday's Accomplishments**: What was completed/worked on
12
-
2. **Today's Plans**: Logical next steps based on the activity (be realistic)
17
+
18
+
2. **Today's Plans**: Logical next steps based on the activity (be
19
+
realistic)
20
+
13
21
3. **Blockers/Challenges**: Any potential issues or dependencies mentioned
14
22
23
+
15
24
Guidelines:
25
+
16
26
- Keep it professional but conversational
27
+
17
28
- Focus on meaningful work rather than trivial commits
29
+
18
30
- Group related activities together
19
-
- Highlight significant contributions like new features, bug fixes, or reviews
31
+
32
+
- Highlight significant contributions like new features, bug fixes, or
33
+
reviews
34
+
20
35
- Be concise but informative
36
+
21
37
- Use bullet points for clarity
38
+
22
39
- Avoid technical jargon that non-developers wouldn't understand
23
40
24
-
Format the output as a clean, readable report without any markdown headers.
41
+
42
+
Format the output as a clean, readable report without any markdown
43
+
headers.
25
44
- role: user
26
45
content: |
27
46
Based on the following GitHub activity, generate a standup report:
28
47
29
48
{{activities}}
49
+
testData:
50
+
- activities: |-
51
+
COMMITS:
52
+
- [my-awesome-app] Add user authentication middleware
53
+
Description: Implemented JWT-based authentication with refresh token support
54
+
- [my-awesome-app] Fix memory leak in data processor
55
+
- [documentation-site] Update API documentation for v2.0
0 commit comments