get-user-stories
Extract user stories associated with a specific Product Requirements Document (PRD) by providing the PRD ID and project path. Facilitates structured interaction with specification documents.
Instructions
Get User Stories for a particular PRD
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cwd | Yes | Absolute path where the tool is called from to auto-infer the project path. This path will be current working directory (cwd) from where the tool is called. | |
prdId | Yes | The ID of the PRD to get user stories for |
Input Schema (JSON Schema)
{
"properties": {
"cwd": {
"description": "Absolute path where the tool is called from to auto-infer the project path. This path will be current working directory (cwd) from where the tool is called.",
"type": "string"
},
"prdId": {
"description": "The ID of the PRD to get user stories for",
"type": "string"
}
},
"required": [
"prdId",
"cwd"
],
"type": "object"
}