@fromsvenwithlove/devops-issues-cli
Version:
AI-powered CLI tool and library for Azure DevOps work item management with Claude agents
54 lines • 1.91 kB
JSON
{
"metadata": {
"parentId": "PARENT_WORK_ITEM_ID",
"defaults": {
"assignedTo": "user@company.com",
"tags": "feature;generated"
}
},
"workItems": [
{
"type": "Feature",
"title": "Feature: [Feature Name]",
"description": "Detailed description of the feature including business value and scope.",
"children": [
{
"type": "User Story",
"title": "As a [user type], I want to [action] so that [benefit]",
"description": "Detailed user story description explaining the user need and context.",
"acceptanceCriteria": "Given [context]\nWhen [action]\nThen [outcome]\n\nAnd [additional criteria]",
"children": [
{
"type": "Task",
"title": "Frontend: Implement [component]",
"description": "Create the frontend components and user interface for this story."
},
{
"type": "Task",
"title": "Backend: Implement [API/logic]",
"description": "Develop the backend API endpoints and business logic."
},
{
"type": "Task",
"title": "Testing: Create automated tests",
"description": "Write unit tests, integration tests, and end-to-end tests."
}
]
},
{
"type": "User Story",
"title": "As a [user type], I want to [related action] so that [benefit]",
"description": "Second user story that is part of this feature.",
"acceptanceCriteria": "Given [context]\nWhen [action]\nThen [outcome]",
"children": [
{
"type": "Task",
"title": "Implementation: [specific task]",
"description": "Implement the specific functionality for this story."
}
]
}
]
}
]
}