start_project
Retrieve project details and the first task's prompt using a unique three-letter project identifier to begin work or understand the starting point.
Instructions
Retrieves the project details and the prompt for the very first task of a specified project using the project's unique slug (e.g., 'CRD'). This is useful for initiating work on a new project or understanding its starting point.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
slug | Yes | The unique three-letter uppercase identifier for the project (e.g., 'CRD') for which the first task's prompt is to be retrieved. |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"slug": {
"description": "The unique three-letter uppercase identifier for the project (e.g., 'CRD') for which the first task's prompt is to be retrieved.",
"pattern": "^[A-Z]{3}$",
"type": "string"
}
},
"required": [
"slug"
],
"type": "object"
}