create_goal
Define and manage software development goals by specifying descriptions and project names to streamline task organization and progress tracking in the Task Orchestration system.
Instructions
Create a new goal
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | The software development goal description (string) | |
repoName | No | Please give the name of the project that you are currently working on (string) |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "The software development goal description (string)",
"type": "string"
},
"repoName": {
"description": "Please give the name of the project that you are currently working on (string)",
"type": "string"
}
},
"required": [
"description"
],
"type": "object"
}