update task descriptions for better readability

This commit is contained in:
Robin Olsen
2026-03-22 15:27:05 +01:00
parent 11afdfd9b8
commit ecabaf796e
7 changed files with 18 additions and 30 deletions

View File

@@ -11,10 +11,11 @@ import (
const backlogRefinementDescription = `You are tasked with backlog refinement. const backlogRefinementDescription = `You are tasked with backlog refinement.
The product backlog has become cluttered with old and unclear issues. You need to groom the backlog: The product backlog has become cluttered with old and unclear issues.
You need to groom the backlog:
1. Go to the backlog. 1. Go to the backlog.
2. Find two issues that got the same name or describe the same problem. 2. Find two issues that have the same name.
3. Open one of these issues. 3. Open one of these issues.
4. Select "Close issue" 4. Select "Close issue"
5. Choose "Duplicate issue" as closing reason. 5. Choose "Duplicate issue" as closing reason.

View File

@@ -10,17 +10,13 @@ import (
"github.com/LazyBachelor/LazyPM/internal/utils/check" "github.com/LazyBachelor/LazyPM/internal/utils/check"
) )
const codingDescription = `You are tasked with doing a chore in the codebase. const codingDescription = `You are tasked with doing a upgrading a dependency in the codebase.
This task will test your ability to read and understand instructions, change text, and save it to a file.
The MongoDB Driver dependency in the file is outdated and needs to be updated to the latest version.
This is a common task for developers, and it requires attention to detail and the ability to follow instructions carefully.
Your task: Your task:
1. Assign the given issue to yourself as 'Me'. 1. Assign the given issue to yourself as 'Me'.
2. A file will appear in the current directory named "code.txt". 2. A text file will appear in the this directory:
Open it and follow the instructions inside. And save the file after you are done. - Open it and follow the instructions inside.
- Save the file after you are done.
3. When you are done, mark this task as "Closed".` 3. When you are done, mark this task as "Closed".`
var textFileDescription = ` var textFileDescription = `

View File

@@ -10,8 +10,6 @@ import (
const description = `You are tasked with creating a new issue in the project management system. const description = `You are tasked with creating a new issue in the project management system.
This task will test your ability to use the issue creation workflow effectively.
Your task: Your task:
1. Create a new issue with the title "My first Issue" 1. Create a new issue with the title "My first Issue"
2. Add this detailed description "I need to do some coding" 2. Add this detailed description "I need to do some coding"

View File

@@ -14,15 +14,11 @@ const dependencyManagementDescription = `You are tasked with managing issue depe
Several issues in your project have dependencies on other issues. Several issues in your project have dependencies on other issues.
You need to: You need to:
1. Find 2 issues that mention dependencies in their detail description. 1. Find 2 issues that mention dependencies in their description.
For example: "Depends on Issue '123'". Set their status to "blocked".
2. Find the issue that is mentioned by the other issues: 2. Find the issue that is mentioned by the other issues:
- Set priority to 3 (high). - Set priority to 3 (high).
- Set status to in-progress. - Set status to in-progress.
- Assign the to yourself as "Me". - Assign the to yourself as "Me".`
Resolving dependencies in the right order is critical for a efficient team`
type DependencyManagementTask struct { type DependencyManagementTask struct {
done bool done bool

View File

@@ -14,14 +14,14 @@ import (
const gitTaskDescription = `You are tasked with performing a Git operation. const gitTaskDescription = `You are tasked with performing a Git operation.
This task will test your ability to use Git effectively within a project management workflow. Modify a file in a Git repository and commit the change.
Your goal is to modify a file in a Git repository and commit the change.
Your task: Your task:
1. Assign the given issue to yourself as 'Me'. 1. Assign the given issue to yourself as 'Me'.
2. A folder called "task" is created in the project directory when you start this task. 2. A folder called "task" is created in this directory.
3. Inside the folder you will find README.md. Edit this file and add something to it. 3. Inside the folder you will find README.md.
The file must be different from its original content. - Edit this file and add something to it.
- The file must be different from its original content.
4. Commit your change: 4. Commit your change:
- Open a terminal and change into the task folder. - Open a terminal and change into the task folder.
- Run "git add ." to stage the changes. - Run "git add ." to stage the changes.

View File

@@ -9,8 +9,7 @@ import (
const issueReviewCleanupDescription = `You are responsible for reviewing and maintaining the current project issues. const issueReviewCleanupDescription = `You are responsible for reviewing and maintaining the current project issues.
Using the system, complete the following steps: Complete the following steps:
1. Add a comment to two issues 1. Add a comment to two issues
2. Delete the issue titled "Delete this issue"` 2. Delete the issue titled "Delete this issue"`

View File

@@ -12,15 +12,13 @@ import (
const priorityManagementDescription = `You are tasked with managing issue priorities. const priorityManagementDescription = `You are tasked with managing issue priorities.
A critical production issue has been reported. A critical production issue has been reported.
The database is not working properly and users are not able to connect and access their data. The database is not working properly and users are not able to connect and access their data.
You need to rebalance the current sprint priorities: You need to rebalance the current sprint priorities:
1. A new issue has appeared in the list that needs urgent attention. 1. A new issue has appeared in the list that needs urgent attention:
Change the database related issue's priority to 4 (critical). - Change the database related issue's priority to 4.
2. Set the priority of the feature and chore issues in the list to 1 (low). 2. Set the priority of the feature and chore issues in the list to 1.`
`
type PriorityManagementTask struct { type PriorityManagementTask struct {
done bool done bool