generate_work_plan
Create a detailed implementation plan and GitHub issue for a task, labeled with 'yellhorn-mcp', based on the current codebase and user inputs.
Instructions
Generate a detailed work plan for implementing a task based on the current codebase. Creates a GitHub issue with customizable title and detailed description, labeled with 'yellhorn-mcp'.Note: You should generally just pass the full user task request task verbatim to detailed_description.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
detailed_description | Yes | ||
title | Yes |
Input Schema (JSON Schema)
{
"properties": {
"detailed_description": {
"title": "Detailed Description",
"type": "string"
},
"title": {
"title": "Title",
"type": "string"
}
},
"required": [
"title",
"detailed_description"
],
"title": "generate_work_planArguments",
"type": "object"
}