https://github.com/the-sudheendra/VEXHub
Stores the VE Checklist's Definition of Done (DoD) for easy team sharing and updates
https://github.com/the-sudheendra/VEXHub
agile jira microfocus microfocus-opensource opentext
Last synced: 12 months ago
JSON representation
Stores the VE Checklist's Definition of Done (DoD) for easy team sharing and updates
- Host: GitHub
- URL: https://github.com/the-sudheendra/VEXHub
- Owner: the-sudheendra
- Created: 2025-04-18T10:01:18.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-14T14:35:26.000Z (about 1 year ago)
- Last Synced: 2025-06-14T15:27:22.425Z (about 1 year ago)
- Topics: agile, jira, microfocus, microfocus-opensource, opentext
- Homepage: https://chromewebstore.google.com/detail/ve-checklist/aeiiagpokicaeifancpnndjanamdmmdn?hl=en
- Size: 45.9 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Checklists Repository
This repository serves as a central hub for storing Definition of Done (DoD) checklists for **[VE Checklist](https://github.com/the-sudheendra/VE-Checklist/#)** in JSON format. This allows for easy management and sharing across various projects and teams.
Example Checklist
```json
{
"Defect": {
"categories": {
"Reproduction": {
"checklist": [
"Steps to reproduce the issue are clearly documented",
"Actual vs expected behavior is described",
"Screenshots or logs are attached, if applicable"
],
"phases": ["New", "In Progress"]
},
"Resolution": {
"checklist": [
"Root cause analysis is documented",
"Solution has been tested and verified",
"All relevant stakeholders are informed of the fix",
"Test cases are updated to cover the issue"
],
"phases": ["Done", "Resolved"]
}
}
},
"Spike": {
"categories": {
"Planning": {
"checklist": [
"Objective of the spike is clearly defined",
"Expected deliverables are documented",
"Team has agreed on a timebox for the spike"
],
"phases": ["New", "In Progress"]
},
"Analysis": {
"checklist": [
"Relevant research and findings are documented",
"Any discovered blockers or risks are noted",
"Recommendations or next steps are provided"
],
"phases": ["Done", "Resolved"]
}
}
}
}
```
## Properties Explanation
Value-Edge Work Item Types
The root-level keys (e.g. "Defect", "Spike", "User Story", "Epic") represent different types of work items.
### Categories
Logical groupings of related checklist items within a work item type. Categories help organize checklist items based on purpose or workflow stage.
### Checklist
An array of strings representing specific actions or requirements that must be completed for a given category.
### Phases
Workflow stages during which the checklist applies. This maps checklist categories to relevant stages in the item’s lifecycle.
❤️ We welcome contributions to expand and refine the collection of DoD checklists 😊