@sppg2001/atomize 0.0.1 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.example +3 -3
- package/LICENSE +21 -21
- package/README.md +504 -17
- package/dist/cli/index.js +49494 -44659
- package/{templates → examples}/backend.yaml +123 -123
- package/examples/conditional-dependencies-template.yaml +122 -0
- package/{templates → examples}/frontend.yaml +122 -122
- package/{templates → examples}/fullstack.yaml +168 -168
- package/package.json +85 -79
- package/templates/presets/backend-api.yaml +60 -0
- package/templates/presets/bug-fix.yaml +44 -0
- package/templates/presets/custom.yaml +89 -0
- package/templates/presets/frontend-feature.yaml +52 -0
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
version: "1.0"
|
|
2
|
+
name: " Custom Example"
|
|
3
|
+
description: "Example template for an Agile project"
|
|
4
|
+
author: "Atomize"
|
|
5
|
+
tags: []
|
|
6
|
+
|
|
7
|
+
filter:
|
|
8
|
+
workItemTypes: ["User Story"]
|
|
9
|
+
states: ["New"]
|
|
10
|
+
tags:
|
|
11
|
+
include: ["Candidate S113"]
|
|
12
|
+
excludeIfHasTasks: true
|
|
13
|
+
|
|
14
|
+
tasks:
|
|
15
|
+
- title: "Analysis & Playback"
|
|
16
|
+
description: "Analyze requirements and planning of necessary changes and discuss with the team."
|
|
17
|
+
estimationPercent: 20
|
|
18
|
+
activity: "Development"
|
|
19
|
+
tags: []
|
|
20
|
+
|
|
21
|
+
- title: "Build"
|
|
22
|
+
description: "Devolop the required changes in the codebase following best practices."
|
|
23
|
+
estimationPercent: 50
|
|
24
|
+
activity: "Development"
|
|
25
|
+
tags: []
|
|
26
|
+
|
|
27
|
+
- title: "Developer Test"
|
|
28
|
+
description: "Testing the changes made to ensure they meet the requirements and do not introduce new issues.Provide evidence of testing"
|
|
29
|
+
estimationPercent: 25
|
|
30
|
+
activity: "Development"
|
|
31
|
+
tags: []
|
|
32
|
+
|
|
33
|
+
- title: "QA Smoke Test"
|
|
34
|
+
description: "Ensure that main functionalities are working as expected after the deployment to the QA environment."
|
|
35
|
+
estimationPercent: 0
|
|
36
|
+
activity: "Development"
|
|
37
|
+
tags: []
|
|
38
|
+
|
|
39
|
+
- title: "WIKI"
|
|
40
|
+
description: "Update relevant documentation and WIKI pages to reflect the changes made."
|
|
41
|
+
estimationPercent: 5
|
|
42
|
+
activity: "Development"
|
|
43
|
+
tags: []
|
|
44
|
+
|
|
45
|
+
- title: "Code Review "
|
|
46
|
+
description: "Address code review feedback and refactor as needed"
|
|
47
|
+
estimationPercent: 0
|
|
48
|
+
activity: "Development"
|
|
49
|
+
tags: []
|
|
50
|
+
|
|
51
|
+
- title: "Test Preparation"
|
|
52
|
+
description: "Prepare test cases and scenarios for QA testing."
|
|
53
|
+
estimationPercent: 40
|
|
54
|
+
activity: "Testing"
|
|
55
|
+
tags: []
|
|
56
|
+
|
|
57
|
+
- title: "Test Execution"
|
|
58
|
+
description: "Execute test cases and report any defects found during testing."
|
|
59
|
+
estimationPercent: 27
|
|
60
|
+
activity: "Testing"
|
|
61
|
+
tags: []
|
|
62
|
+
|
|
63
|
+
- title: "Automation Testing"
|
|
64
|
+
description: "Develop and maintain automated test scripts to improve testing efficiency."
|
|
65
|
+
estimationPercent: 0
|
|
66
|
+
activity: "Testing"
|
|
67
|
+
tags: []
|
|
68
|
+
|
|
69
|
+
- title: "Test Review"
|
|
70
|
+
description: "Review test results and ensure all requirements are met before deployment."
|
|
71
|
+
estimationPercent: 0
|
|
72
|
+
activity: "Testing"
|
|
73
|
+
tags: []
|
|
74
|
+
|
|
75
|
+
- title: "Release Notes"
|
|
76
|
+
description: "Prepare release notes and documentation for the deployment."
|
|
77
|
+
estimationPercent: 0
|
|
78
|
+
activity: "Documentation"
|
|
79
|
+
tags: []
|
|
80
|
+
|
|
81
|
+
estimation:
|
|
82
|
+
strategy: "percentage"
|
|
83
|
+
rounding: "nearest"
|
|
84
|
+
minimumTaskPoints: 0
|
|
85
|
+
|
|
86
|
+
metadata:
|
|
87
|
+
category: "Agile Project"
|
|
88
|
+
recommendedFor: []
|
|
89
|
+
estimationGuidelines: "Based on possible Agile project workflow"
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
version: "1.0"
|
|
2
|
+
name: "Frontend Feature Development"
|
|
3
|
+
description: "UI/UX feature development with React/Vue components"
|
|
4
|
+
author: "Atomize"
|
|
5
|
+
tags: ["frontend", "ui", "react"]
|
|
6
|
+
|
|
7
|
+
filter:
|
|
8
|
+
workItemTypes: ["User Story"]
|
|
9
|
+
states: ["New", "Active", "Approved"]
|
|
10
|
+
tags:
|
|
11
|
+
include: ["frontend", "ui"]
|
|
12
|
+
excludeIfHasTasks: true
|
|
13
|
+
|
|
14
|
+
tasks:
|
|
15
|
+
- title: "UI/UX Design: ${story.title}"
|
|
16
|
+
description: "Create wireframes, mockups, and component designs"
|
|
17
|
+
estimationPercent: 15
|
|
18
|
+
activity: "Design"
|
|
19
|
+
tags: ["design", "ui"]
|
|
20
|
+
|
|
21
|
+
- title: "Component Implementation: ${story.title}"
|
|
22
|
+
description: "Build React/Vue components with proper state management"
|
|
23
|
+
estimationPercent: 40
|
|
24
|
+
activity: "Development"
|
|
25
|
+
tags: ["implementation", "react"]
|
|
26
|
+
|
|
27
|
+
- title: "Styling & Responsiveness"
|
|
28
|
+
description: "CSS/Tailwind styling and responsive design for mobile/tablet"
|
|
29
|
+
estimationPercent: 20
|
|
30
|
+
activity: "Development"
|
|
31
|
+
tags: ["css", "responsive"]
|
|
32
|
+
|
|
33
|
+
- title: "Unit & Component Tests"
|
|
34
|
+
description: "Jest/React Testing Library tests for components"
|
|
35
|
+
estimationPercent: 15
|
|
36
|
+
activity: "Testing"
|
|
37
|
+
tags: ["testing"]
|
|
38
|
+
|
|
39
|
+
- title: "Code Review & Accessibility"
|
|
40
|
+
description: "Review, accessibility improvements, and polish"
|
|
41
|
+
estimationPercent: 10
|
|
42
|
+
activity: "Documentation"
|
|
43
|
+
tags: ["review", "a11y"]
|
|
44
|
+
|
|
45
|
+
estimation:
|
|
46
|
+
strategy: "percentage"
|
|
47
|
+
rounding: "nearest"
|
|
48
|
+
|
|
49
|
+
metadata:
|
|
50
|
+
category: "Frontend"
|
|
51
|
+
difficulty: "intermediate"
|
|
52
|
+
recommendedFor: ["React", "Vue", "UI components"]
|