get_prompt
Retrieve detailed task instructions or prompts using a unique task identifier (e.g., 'CRD-1') to clarify requirements for AI agents on the coderide MCP server.
Instructions
Retrieves the specific instructions or prompt for a given task, identified by its unique task number (e.g., 'CRD-1'). This is typically used to understand the detailed requirements or context for an AI agent to work on the task.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
number | Yes | The unique identifier for the task (e.g., 'CRD-1'). Must follow the format: three uppercase letters, a hyphen, and one or more digits. |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"number": {
"description": "The unique identifier for the task (e.g., 'CRD-1'). Must follow the format: three uppercase letters, a hyphen, and one or more digits.",
"pattern": "^[A-Z]{3}-\\d+$",
"type": "string"
}
},
"required": [
"number"
],
"type": "object"
}