https://github.com/the-sudheendra/vexhub
Stores the checklists and prompts for easy team sharing and updates 🔄
https://github.com/the-sudheendra/vexhub
agile jira microfocus microfocus-opensource opentext valueedge
Last synced: 4 months ago
JSON representation
Stores the checklists and prompts 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-10-13T12:34:03.000Z (8 months ago)
- Last Synced: 2026-01-27T13:48:19.764Z (4 months ago)
- Topics: agile, jira, microfocus, microfocus-opensource, opentext, valueedge
- Homepage: https://the-sudheendra.github.io/VEXHub/
- Size: 69.3 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# VEXtension Repository
This repository serves as a central hub for storing **checklists** and **prompts** for **[VEXtenstion](https://github.com/the-sudheendra/VEXtenstion)** in JSON format. This allows for easy management and sharing across various projects and teams 🔄.
---
#### [💡 Checklist Schema](https://github.com/the-sudheendra/VEXHub/blob/main/Checklist/ChecklistSchema.md)
#### [🚀 Starter Checklist](https://the-sudheendra.github.io/VEXHub/Checklist/DefaultChecklist.json)
#### Example 👇
```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"]
}
}
}
}
```
---
#### [💡 PromptTemplate Schema](https://github.com/the-sudheendra/VEXHub/blob/main/AviatorPrompts/PromptTemplateSchema.md)
#### [🚀 Starter Prompts ](https://the-sudheendra.github.io/VEXHub/AviatorPrompts/DefaultPrompts.json)
#### Example 👇
```json
[
{
"name": "Summarize Ticket for Standup",
"description": "Generate a concise summary of the ticket suitable for a daily standup update.",
"template": "Create a 2-3 sentence summary of this ticket that I can share during standup. Include current status, any blockers, and what I'm working on next:\nTitle: {{title}}\nDescription: {{description}}\nStatus: {{status}}",
"variables": [
{
"name": "title",
"selector": ".entity-form-document-view-header-name-field-container"
},
{
"name": "description",
"selector": "[aria-label='Description textbox']"
},
{
"name": "status",
"selector": "[data-aid='entity-life-cycle-widget-phase']"
}
]
},
{
"name": "Generate Tasks for current ticket",
"description": "Break down the current ticket into actionable tasks, each with a title, description, and estimated time.",
"template": "Based on the following ticket, generate a list of development tasks. For each task, include:\n1. Task Title\n2. Task Description (1-2 sentences)\n3. Time Estimation (in hours)\n\nTicket Title: {{title}}\nTicket Description: {{description}}",
"variables": [
{
"name": "title",
"selector": ".entity-form-document-view-header-name-field-container"
},
{
"name": "description",
"selector": "[aria-label='Description textbox']"
}
]
}
]
```
---
**Please note ⚠️**
- The schema is case-sensitive. Ensure that all keys and values match the required casing exactly.
- Whenever you refresh this extension, please do refresh the already opened ValueEdge pages
❤️ We welcome contributions to expand and refine the collection of checklists and promps 😊