@sppg2001/atomize 1.0.0 → 1.0.3
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/README.md +8 -5
- package/dist/cli/index.js +98739 -97042
- package/examples/backend.yaml +124 -0
- package/examples/conditional-dependencies-template.yaml +122 -0
- package/examples/frontend.yaml +123 -0
- package/examples/fullstack.yaml +169 -0
- package/package.json +5 -4
- package/templates/presets/custom.yaml +48 -18
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
version: "1.0"
|
|
2
|
+
name: "Backend API Feature"
|
|
3
|
+
description: "Standard tasks for backend API development"
|
|
4
|
+
author: "Atomize"
|
|
5
|
+
tags: ["backend", "api", "standard"]
|
|
6
|
+
|
|
7
|
+
# Filter to identify applicable User Stories
|
|
8
|
+
filter:
|
|
9
|
+
workItemTypes:
|
|
10
|
+
- "User Story"
|
|
11
|
+
- "Product Backlog Item"
|
|
12
|
+
states:
|
|
13
|
+
- "New"
|
|
14
|
+
- "Approved"
|
|
15
|
+
- "Active"
|
|
16
|
+
tags:
|
|
17
|
+
include:
|
|
18
|
+
- "backend"
|
|
19
|
+
- "api"
|
|
20
|
+
excludeIfHasTasks: true
|
|
21
|
+
|
|
22
|
+
# Task template with estimation percentages
|
|
23
|
+
tasks:
|
|
24
|
+
- id: "design-api"
|
|
25
|
+
title: "Design API Specification"
|
|
26
|
+
description: |
|
|
27
|
+
Design RESTful API endpoints following company standards:
|
|
28
|
+
- Define request/response models
|
|
29
|
+
- Document in OpenAPI/Swagger
|
|
30
|
+
- Review with team architect
|
|
31
|
+
estimationPercent: 10
|
|
32
|
+
tags: ["design", "api"]
|
|
33
|
+
activity: "Design"
|
|
34
|
+
|
|
35
|
+
- id: "database-schema"
|
|
36
|
+
title: "Database Schema Changes"
|
|
37
|
+
description: |
|
|
38
|
+
Design and implement database changes:
|
|
39
|
+
- Create/update migrations
|
|
40
|
+
- Define models and relationships
|
|
41
|
+
- Index optimization
|
|
42
|
+
estimationPercent: 20
|
|
43
|
+
tags: ["database", "backend"]
|
|
44
|
+
activity: "Development"
|
|
45
|
+
|
|
46
|
+
- id: "implement-logic"
|
|
47
|
+
title: "Implement Business Logic"
|
|
48
|
+
description: |
|
|
49
|
+
Core API implementation:
|
|
50
|
+
- Implement service layer
|
|
51
|
+
- Add validation logic
|
|
52
|
+
- Error handling
|
|
53
|
+
- Logging
|
|
54
|
+
estimationPercent: 35
|
|
55
|
+
tags: ["implementation", "backend"]
|
|
56
|
+
activity: "Development"
|
|
57
|
+
dependsOn:
|
|
58
|
+
- "design-api"
|
|
59
|
+
- "database-schema"
|
|
60
|
+
|
|
61
|
+
- id: "unit-tests"
|
|
62
|
+
title: "Unit & Integration Tests"
|
|
63
|
+
description: |
|
|
64
|
+
Comprehensive test coverage:
|
|
65
|
+
- Unit tests (80%+ coverage)
|
|
66
|
+
- Integration tests
|
|
67
|
+
- Mock external dependencies
|
|
68
|
+
estimationPercent: 20
|
|
69
|
+
tags: ["testing", "quality"]
|
|
70
|
+
activity: "Testing"
|
|
71
|
+
dependsOn:
|
|
72
|
+
- "implement-logic"
|
|
73
|
+
|
|
74
|
+
- id: "documentation"
|
|
75
|
+
title: "API Documentation"
|
|
76
|
+
description: |
|
|
77
|
+
Update documentation:
|
|
78
|
+
- API endpoint documentation
|
|
79
|
+
- Update README
|
|
80
|
+
- Code comments
|
|
81
|
+
- Postman collection
|
|
82
|
+
estimationPercent: 5
|
|
83
|
+
tags: ["documentation"]
|
|
84
|
+
activity: "Documentation"
|
|
85
|
+
|
|
86
|
+
- id: "code-review"
|
|
87
|
+
title: "Code Review & Refinement"
|
|
88
|
+
description: |
|
|
89
|
+
Review and refine:
|
|
90
|
+
- Create pull request
|
|
91
|
+
- Address review feedback
|
|
92
|
+
- Final testing
|
|
93
|
+
estimationPercent: 10
|
|
94
|
+
tags: ["review", "quality"]
|
|
95
|
+
activity: "Design"
|
|
96
|
+
|
|
97
|
+
# Estimation strategy
|
|
98
|
+
estimation:
|
|
99
|
+
strategy: "percentage"
|
|
100
|
+
source: "Microsoft.VSTS.Scheduling.StoryPoints"
|
|
101
|
+
rounding: "nearest"
|
|
102
|
+
minimumTaskPoints: 0.5
|
|
103
|
+
|
|
104
|
+
# Validation rules
|
|
105
|
+
validation:
|
|
106
|
+
totalEstimationMustBe: 100
|
|
107
|
+
minTasks: 4
|
|
108
|
+
maxTasks: 10
|
|
109
|
+
|
|
110
|
+
# Metadata
|
|
111
|
+
metadata:
|
|
112
|
+
category: "Backend Development"
|
|
113
|
+
difficulty: "intermediate"
|
|
114
|
+
recommendedFor:
|
|
115
|
+
- "API features"
|
|
116
|
+
- "Microservices"
|
|
117
|
+
- "Backend services"
|
|
118
|
+
estimationGuidelines: |
|
|
119
|
+
Use this template for stories sized 3-13 points.
|
|
120
|
+
For larger stories, consider breaking down first.
|
|
121
|
+
examples:
|
|
122
|
+
- "User authentication API"
|
|
123
|
+
- "Payment processing endpoint"
|
|
124
|
+
- "Data export service"
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
version: "1.0"
|
|
2
|
+
name: "Full-Stack Development with Conditional Tasks"
|
|
3
|
+
description: "Template demonstrating conditional tasks and dependencies"
|
|
4
|
+
|
|
5
|
+
filter:
|
|
6
|
+
workItemTypes:
|
|
7
|
+
- "User Story"
|
|
8
|
+
tags:
|
|
9
|
+
include:
|
|
10
|
+
- "development"
|
|
11
|
+
|
|
12
|
+
estimation:
|
|
13
|
+
rounding: "nearest"
|
|
14
|
+
minimumTaskPoints: 0.5
|
|
15
|
+
|
|
16
|
+
tasks:
|
|
17
|
+
# Phase 1: Design (always runs)
|
|
18
|
+
- id: "design"
|
|
19
|
+
title: "UI/UX Design and Mockups"
|
|
20
|
+
description: "Create design mockups for ${story.title}"
|
|
21
|
+
estimationPercent: 15
|
|
22
|
+
activity: "Design"
|
|
23
|
+
assignTo: "@ParentAssignee"
|
|
24
|
+
tags:
|
|
25
|
+
- "design"
|
|
26
|
+
|
|
27
|
+
# Phase 2: Backend (conditional - only if story has backend tag)
|
|
28
|
+
- id: "backend-api"
|
|
29
|
+
title: "Backend API Implementation"
|
|
30
|
+
description: "Implement REST API endpoints for ${story.title}"
|
|
31
|
+
estimationPercent: 30
|
|
32
|
+
activity: "Development"
|
|
33
|
+
dependsOn: ["design"]
|
|
34
|
+
condition: '${story.tags} CONTAINS "backend"'
|
|
35
|
+
tags:
|
|
36
|
+
- "backend"
|
|
37
|
+
- "api"
|
|
38
|
+
|
|
39
|
+
# Phase 3: Frontend (conditional - only if story has frontend tag)
|
|
40
|
+
- id: "frontend-ui"
|
|
41
|
+
title: "Frontend UI Implementation"
|
|
42
|
+
description: "Build user interface for ${story.title}"
|
|
43
|
+
estimationPercent: 35
|
|
44
|
+
activity: "Development"
|
|
45
|
+
dependsOn: ["design"]
|
|
46
|
+
condition: '${story.tags} CONTAINS "frontend"'
|
|
47
|
+
tags:
|
|
48
|
+
- "frontend"
|
|
49
|
+
|
|
50
|
+
# Accessibility testing (conditional - only for frontend stories without legacy tag)
|
|
51
|
+
- id: "accessibility-testing"
|
|
52
|
+
title: "Accessibility Testing (WCAG)"
|
|
53
|
+
description: "Ensure UI meets accessibility standards for ${story.title}"
|
|
54
|
+
estimationPercent: 7
|
|
55
|
+
activity: "Testing"
|
|
56
|
+
dependsOn: ["frontend-ui"]
|
|
57
|
+
condition: '${story.tags} CONTAINS "frontend" OR ${story.tags} NOT CONTAINS "legacy"'
|
|
58
|
+
tags:
|
|
59
|
+
- "accessibility"
|
|
60
|
+
- "testing"
|
|
61
|
+
|
|
62
|
+
# Security tasks (conditional - only for high-priority stories with security tag)
|
|
63
|
+
- id: "security-review"
|
|
64
|
+
title: "Security Review and Audit"
|
|
65
|
+
description: "Perform security review for ${story.title}"
|
|
66
|
+
estimationPercent: 8
|
|
67
|
+
activity: "Testing"
|
|
68
|
+
dependsOn: ["backend-api", "frontend-ui"]
|
|
69
|
+
condition: '${story.tags} CONTAINS "security" AND ${story.priority} <= 2'
|
|
70
|
+
priority: 1
|
|
71
|
+
tags:
|
|
72
|
+
- "security"
|
|
73
|
+
|
|
74
|
+
# Phase 4: Testing (depends on what was implemented)
|
|
75
|
+
- id: "unit-tests"
|
|
76
|
+
title: "Unit Tests"
|
|
77
|
+
description: "Write unit tests for ${story.title}"
|
|
78
|
+
estimationPercent: 15
|
|
79
|
+
activity: "Testing"
|
|
80
|
+
dependsOn: ["backend-api", "frontend-ui"]
|
|
81
|
+
tags:
|
|
82
|
+
- "testing"
|
|
83
|
+
|
|
84
|
+
- id: "integration-tests"
|
|
85
|
+
title: "Integration Tests"
|
|
86
|
+
description: "Write integration tests for ${story.title}"
|
|
87
|
+
estimationPercent: 12
|
|
88
|
+
activity: "Testing"
|
|
89
|
+
dependsOn: ["unit-tests"]
|
|
90
|
+
tags:
|
|
91
|
+
- "testing"
|
|
92
|
+
|
|
93
|
+
# Performance testing (conditional - only for stories with high estimation)
|
|
94
|
+
- id: "performance-tests"
|
|
95
|
+
title: "Performance and Load Testing"
|
|
96
|
+
description: "Conduct performance testing for ${story.title}"
|
|
97
|
+
estimationPercent: 10
|
|
98
|
+
activity: "Testing"
|
|
99
|
+
dependsOn: ["integration-tests"]
|
|
100
|
+
condition: '${story.estimation} >= 13'
|
|
101
|
+
tags:
|
|
102
|
+
- "performance"
|
|
103
|
+
|
|
104
|
+
# Phase 5: Documentation (always runs, depends on everything)
|
|
105
|
+
- id: "documentation"
|
|
106
|
+
title: "Technical Documentation"
|
|
107
|
+
description: "Write technical documentation for ${story.title}"
|
|
108
|
+
estimationPercent: 8
|
|
109
|
+
activity: "Documentation"
|
|
110
|
+
dependsOn: ["unit-tests"]
|
|
111
|
+
tags:
|
|
112
|
+
- "documentation"
|
|
113
|
+
|
|
114
|
+
# Deployment (final step, depends on all testing)
|
|
115
|
+
- id: "deployment"
|
|
116
|
+
title: "Deploy to Staging"
|
|
117
|
+
description: "Deploy ${story.title} to staging environment"
|
|
118
|
+
estimationPercent: 5
|
|
119
|
+
activity: "Deployment"
|
|
120
|
+
dependsOn: ["integration-tests", "documentation"]
|
|
121
|
+
tags:
|
|
122
|
+
- "deployment"
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
version: "1.0"
|
|
2
|
+
name: "Frontend React Feature"
|
|
3
|
+
description: "Standard tasks for React component development"
|
|
4
|
+
author: "Atomize"
|
|
5
|
+
tags: ["frontend", "react", "ui"]
|
|
6
|
+
|
|
7
|
+
filter:
|
|
8
|
+
workItemTypes:
|
|
9
|
+
- "User Story"
|
|
10
|
+
states:
|
|
11
|
+
- "New"
|
|
12
|
+
- "Approved"
|
|
13
|
+
tags:
|
|
14
|
+
include:
|
|
15
|
+
- "frontend"
|
|
16
|
+
- "react"
|
|
17
|
+
excludeIfHasTasks: true
|
|
18
|
+
|
|
19
|
+
tasks:
|
|
20
|
+
- id: "ui-design-review"
|
|
21
|
+
title: " UI/UX Design Review"
|
|
22
|
+
description: |
|
|
23
|
+
Review designs and create implementation plan:
|
|
24
|
+
- Review Figma/design specs
|
|
25
|
+
- Identify reusable components
|
|
26
|
+
- Plan component hierarchy
|
|
27
|
+
- Clarify interactions and states
|
|
28
|
+
estimationPercent: 10
|
|
29
|
+
tags: ["design", "planning"]
|
|
30
|
+
activity: "Design"
|
|
31
|
+
|
|
32
|
+
- id: "component-structure"
|
|
33
|
+
title: "Component Structure & Setup"
|
|
34
|
+
description: |
|
|
35
|
+
Set up component architecture:
|
|
36
|
+
- Create component files
|
|
37
|
+
- Define props interfaces
|
|
38
|
+
- Set up state management
|
|
39
|
+
- Configure routing (if needed)
|
|
40
|
+
estimationPercent: 15
|
|
41
|
+
tags: ["setup", "architecture"]
|
|
42
|
+
activity: "Development"
|
|
43
|
+
|
|
44
|
+
- id: "component-logic"
|
|
45
|
+
title: "Component Logic Implementation"
|
|
46
|
+
description: |
|
|
47
|
+
Implement core functionality:
|
|
48
|
+
- Business logic
|
|
49
|
+
- Event handlers
|
|
50
|
+
- API integration
|
|
51
|
+
- Form validation
|
|
52
|
+
estimationPercent: 30
|
|
53
|
+
tags: ["implementation", "logic"]
|
|
54
|
+
activity: "Development"
|
|
55
|
+
dependsOn:
|
|
56
|
+
- "component-structure"
|
|
57
|
+
|
|
58
|
+
- id: "styling"
|
|
59
|
+
title: "Styling & Responsive Design"
|
|
60
|
+
description: |
|
|
61
|
+
Apply styles and ensure responsiveness:
|
|
62
|
+
- CSS/Tailwind implementation
|
|
63
|
+
- Mobile responsiveness
|
|
64
|
+
- Theme integration
|
|
65
|
+
- Dark mode (if applicable)
|
|
66
|
+
estimationPercent: 20
|
|
67
|
+
tags: ["styling", "css", "responsive"]
|
|
68
|
+
activity: "Development"
|
|
69
|
+
|
|
70
|
+
- id: "accessibility"
|
|
71
|
+
title: "Accessibility Testing"
|
|
72
|
+
description: |
|
|
73
|
+
Ensure WCAG 2.1 AA compliance:
|
|
74
|
+
- Keyboard navigation
|
|
75
|
+
- Screen reader testing
|
|
76
|
+
- ARIA labels
|
|
77
|
+
- Color contrast
|
|
78
|
+
- Focus management
|
|
79
|
+
estimationPercent: 10
|
|
80
|
+
tags: ["accessibility", "a11y", "quality"]
|
|
81
|
+
activity: "Testing"
|
|
82
|
+
|
|
83
|
+
- id: "component-tests"
|
|
84
|
+
title: "Component Testing"
|
|
85
|
+
description: |
|
|
86
|
+
Write comprehensive tests:
|
|
87
|
+
- Jest unit tests
|
|
88
|
+
- React Testing Library
|
|
89
|
+
- Test user interactions
|
|
90
|
+
- Snapshot tests
|
|
91
|
+
estimationPercent: 15
|
|
92
|
+
tags: ["testing", "quality"]
|
|
93
|
+
activity: "Testing"
|
|
94
|
+
dependsOn:
|
|
95
|
+
- "component-logic"
|
|
96
|
+
|
|
97
|
+
# Estimation configuration
|
|
98
|
+
estimation:
|
|
99
|
+
strategy: "percentage"
|
|
100
|
+
source: "Microsoft.VSTS.Scheduling.StoryPoints"
|
|
101
|
+
rounding: "nearest"
|
|
102
|
+
minimumTaskPoints: 0.5
|
|
103
|
+
|
|
104
|
+
# Validation
|
|
105
|
+
validation:
|
|
106
|
+
totalEstimationMustBe: 100
|
|
107
|
+
minTasks: 4
|
|
108
|
+
|
|
109
|
+
# Metadata
|
|
110
|
+
metadata:
|
|
111
|
+
category: "Frontend Development"
|
|
112
|
+
difficulty: "intermediate"
|
|
113
|
+
recommendedFor:
|
|
114
|
+
- "React components"
|
|
115
|
+
- "UI features"
|
|
116
|
+
- "User interfaces"
|
|
117
|
+
estimationGuidelines: |
|
|
118
|
+
Best for stories sized 3-8 points.
|
|
119
|
+
Complex UIs with animations may need additional tasks.
|
|
120
|
+
examples:
|
|
121
|
+
- "User profile page"
|
|
122
|
+
- "Data table component"
|
|
123
|
+
- "Form wizard"
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
version: "1.0"
|
|
2
|
+
name: "Fullstack Feature"
|
|
3
|
+
description: "Complete fullstack feature with frontend and backend tasks"
|
|
4
|
+
author: "Atomize"
|
|
5
|
+
tags: ["fullstack", "frontend", "backend"]
|
|
6
|
+
|
|
7
|
+
filter:
|
|
8
|
+
workItemTypes:
|
|
9
|
+
- "User Story"
|
|
10
|
+
states:
|
|
11
|
+
- "New"
|
|
12
|
+
- "Active"
|
|
13
|
+
tags:
|
|
14
|
+
include:
|
|
15
|
+
- "fullstack"
|
|
16
|
+
excludeIfHasTasks: true
|
|
17
|
+
|
|
18
|
+
# Variables for conditionals
|
|
19
|
+
variables:
|
|
20
|
+
hasDatabase: true
|
|
21
|
+
hasAuth: false
|
|
22
|
+
|
|
23
|
+
tasks:
|
|
24
|
+
# Design Phase
|
|
25
|
+
- id: "design-overview"
|
|
26
|
+
title: "Technical Design"
|
|
27
|
+
description: |
|
|
28
|
+
Create comprehensive technical design:
|
|
29
|
+
- Architecture diagram
|
|
30
|
+
- API contract definition
|
|
31
|
+
- Data models
|
|
32
|
+
- UI/UX flow
|
|
33
|
+
estimationPercent: 10
|
|
34
|
+
tags: ["design", "planning"]
|
|
35
|
+
activity: "Design"
|
|
36
|
+
|
|
37
|
+
# Backend Tasks
|
|
38
|
+
- id: "backend-api"
|
|
39
|
+
title: " Backend API Implementation"
|
|
40
|
+
description: |
|
|
41
|
+
Implement backend API:
|
|
42
|
+
- API endpoints
|
|
43
|
+
- Business logic
|
|
44
|
+
- Validation
|
|
45
|
+
- Error handling
|
|
46
|
+
estimationPercent: 20
|
|
47
|
+
tags: ["backend", "api"]
|
|
48
|
+
activity: "Development"
|
|
49
|
+
dependsOn: ["design-overview"]
|
|
50
|
+
|
|
51
|
+
- id: "database"
|
|
52
|
+
title: "Database Implementation"
|
|
53
|
+
description: |
|
|
54
|
+
Database changes:
|
|
55
|
+
- Schema migrations
|
|
56
|
+
- Models
|
|
57
|
+
- Queries
|
|
58
|
+
- Indexes
|
|
59
|
+
estimationPercent: 15
|
|
60
|
+
tags: ["database", "backend"]
|
|
61
|
+
activity: "Development"
|
|
62
|
+
condition: "${variables.hasDatabase}"
|
|
63
|
+
|
|
64
|
+
- id: "backend-tests"
|
|
65
|
+
title: "Backend Tests"
|
|
66
|
+
description: |
|
|
67
|
+
Backend test coverage:
|
|
68
|
+
- Unit tests (80%+)
|
|
69
|
+
- Integration tests
|
|
70
|
+
- API endpoint tests
|
|
71
|
+
estimationPercent: 10
|
|
72
|
+
tags: ["testing", "backend"]
|
|
73
|
+
activity: "Testing"
|
|
74
|
+
dependsOn: ["backend-api"]
|
|
75
|
+
|
|
76
|
+
# Frontend Tasks
|
|
77
|
+
- id: "frontend-components"
|
|
78
|
+
title: "Frontend Components"
|
|
79
|
+
description: |
|
|
80
|
+
Build React components:
|
|
81
|
+
- Component structure
|
|
82
|
+
- Props interfaces
|
|
83
|
+
- State management
|
|
84
|
+
- Event handlers
|
|
85
|
+
estimationPercent: 20
|
|
86
|
+
tags: ["frontend", "react"]
|
|
87
|
+
activity: "Development"
|
|
88
|
+
dependsOn: ["design-overview"]
|
|
89
|
+
|
|
90
|
+
- id: "frontend-styling"
|
|
91
|
+
title: "Styling & Responsive Design"
|
|
92
|
+
description: |
|
|
93
|
+
Apply styles:
|
|
94
|
+
- CSS/Tailwind
|
|
95
|
+
- Mobile responsive
|
|
96
|
+
- Theme integration
|
|
97
|
+
estimationPercent: 10
|
|
98
|
+
tags: ["frontend", "styling"]
|
|
99
|
+
activity: "Development"
|
|
100
|
+
|
|
101
|
+
- id: "frontend-tests"
|
|
102
|
+
title: "Frontend Tests"
|
|
103
|
+
description: |
|
|
104
|
+
Frontend test coverage:
|
|
105
|
+
- Component tests
|
|
106
|
+
- User interaction tests
|
|
107
|
+
- Snapshot tests
|
|
108
|
+
estimationPercent: 8
|
|
109
|
+
tags: ["testing", "frontend"]
|
|
110
|
+
activity: "Testing"
|
|
111
|
+
dependsOn: ["frontend-components"]
|
|
112
|
+
|
|
113
|
+
# Integration
|
|
114
|
+
- id: "integration"
|
|
115
|
+
title: "Frontend-Backend Integration"
|
|
116
|
+
description: |
|
|
117
|
+
Connect frontend to backend:
|
|
118
|
+
- API integration
|
|
119
|
+
- Error handling
|
|
120
|
+
- Loading states
|
|
121
|
+
- Data flow testing
|
|
122
|
+
estimationPercent: 12
|
|
123
|
+
tags: ["integration"]
|
|
124
|
+
activity: "Development"
|
|
125
|
+
dependsOn: ["backend-api", "frontend-components"]
|
|
126
|
+
|
|
127
|
+
# Documentation & Review
|
|
128
|
+
- id: "documentation"
|
|
129
|
+
title: "Documentation"
|
|
130
|
+
description: |
|
|
131
|
+
Complete documentation:
|
|
132
|
+
- API documentation
|
|
133
|
+
- Component documentation
|
|
134
|
+
- README updates
|
|
135
|
+
- Deployment guide
|
|
136
|
+
estimationPercent: 5
|
|
137
|
+
tags: ["documentation"]
|
|
138
|
+
activity: "Documentation"
|
|
139
|
+
|
|
140
|
+
# Estimation configuration
|
|
141
|
+
estimation:
|
|
142
|
+
strategy: "percentage"
|
|
143
|
+
source: "Microsoft.VSTS.Scheduling.StoryPoints"
|
|
144
|
+
rounding: "nearest"
|
|
145
|
+
minimumTaskPoints: 0.5
|
|
146
|
+
|
|
147
|
+
# Validation
|
|
148
|
+
validation:
|
|
149
|
+
totalEstimationRange:
|
|
150
|
+
min: 95
|
|
151
|
+
max: 105
|
|
152
|
+
minTasks: 5
|
|
153
|
+
|
|
154
|
+
# Metadata
|
|
155
|
+
metadata:
|
|
156
|
+
category: "Fullstack Development"
|
|
157
|
+
difficulty: "advanced"
|
|
158
|
+
recommendedFor:
|
|
159
|
+
- "Full features with UI and API"
|
|
160
|
+
- "Complete user flows"
|
|
161
|
+
- "End-to-end features"
|
|
162
|
+
estimationGuidelines: |
|
|
163
|
+
Best for stories sized 5-13 points.
|
|
164
|
+
This template covers both frontend and backend.
|
|
165
|
+
Adjust tasks based on complexity.
|
|
166
|
+
examples:
|
|
167
|
+
- "User registration flow"
|
|
168
|
+
- "Dashboard with data visualization"
|
|
169
|
+
- "Search and filter feature"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sppg2001/atomize",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Automatically generate tasks from user stories with smart templates",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/cli/index.js",
|
|
@@ -17,7 +17,8 @@
|
|
|
17
17
|
"templates/presets",
|
|
18
18
|
"README.md",
|
|
19
19
|
"LICENSE",
|
|
20
|
-
".env.example"
|
|
20
|
+
".env.example",
|
|
21
|
+
"examples"
|
|
21
22
|
],
|
|
22
23
|
"scripts": {
|
|
23
24
|
"dev": "bun run src/cli/index.ts",
|
|
@@ -28,7 +29,7 @@
|
|
|
28
29
|
"prepublishOnly": "npm run build",
|
|
29
30
|
"test": "bun test",
|
|
30
31
|
"test:unit": "bun test tests/unit",
|
|
31
|
-
"test:integration": "bun test tests/integration
|
|
32
|
+
"test:integration": "bun test tests/integration",
|
|
32
33
|
"test:watch": "bun test --watch",
|
|
33
34
|
"test:coverage": "bun test --coverage --coverage-reporter=lcov",
|
|
34
35
|
"typecheck": "tsc --noEmit",
|
|
@@ -78,7 +79,7 @@
|
|
|
78
79
|
"ts-pattern": "^5.9.0",
|
|
79
80
|
"winston": "^3.19.0",
|
|
80
81
|
"yaml": "^2.8.2",
|
|
81
|
-
"zod": "^4.
|
|
82
|
+
"zod": "^4.3.5"
|
|
82
83
|
},
|
|
83
84
|
"engines": {
|
|
84
85
|
"node": ">=18.0.0"
|
|
@@ -6,81 +6,111 @@ tags: []
|
|
|
6
6
|
|
|
7
7
|
filter:
|
|
8
8
|
workItemTypes: ["User Story"]
|
|
9
|
-
states: ["
|
|
10
|
-
tags:
|
|
11
|
-
|
|
12
|
-
|
|
9
|
+
states: ["Ready for Sprint"]
|
|
10
|
+
tags:
|
|
11
|
+
exclude:
|
|
12
|
+
- "Test Only"
|
|
13
|
+
- "TestGen"
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
excludeIfHasTasks: false
|
|
17
|
+
areaPaths:
|
|
18
|
+
- EA-RSP-Platform\Release 2 Team
|
|
19
|
+
iterations:
|
|
20
|
+
- EA-RSP-Platform\SOW-7-2026-JAN-MARCH\Sprint 115
|
|
21
|
+
|
|
13
22
|
|
|
14
23
|
tasks:
|
|
15
24
|
- title: "Analysis & Playback"
|
|
16
|
-
description: "Analyze requirements and planning of necessary changes and discuss with the team."
|
|
17
25
|
estimationPercent: 20
|
|
18
26
|
activity: "Development"
|
|
19
27
|
tags: []
|
|
28
|
+
assignTo: "@ParentAssignee"
|
|
29
|
+
|
|
30
|
+
|
|
20
31
|
|
|
21
32
|
- title: "Build"
|
|
22
|
-
description: "Devolop the required changes in the codebase following best practices."
|
|
23
33
|
estimationPercent: 50
|
|
24
34
|
activity: "Development"
|
|
25
35
|
tags: []
|
|
36
|
+
assignTo: "@ParentAssignee"
|
|
37
|
+
|
|
26
38
|
|
|
27
39
|
- 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
40
|
estimationPercent: 25
|
|
30
41
|
activity: "Development"
|
|
31
42
|
tags: []
|
|
43
|
+
assignTo: "@ParentAssignee"
|
|
44
|
+
|
|
32
45
|
|
|
33
46
|
- title: "QA Smoke Test"
|
|
34
|
-
description: "Ensure that main functionalities are working as expected after the deployment to the QA environment."
|
|
35
47
|
estimationPercent: 0
|
|
36
48
|
activity: "Development"
|
|
37
49
|
tags: []
|
|
50
|
+
assignTo: "@ParentAssignee"
|
|
51
|
+
|
|
38
52
|
|
|
39
|
-
- title: "
|
|
40
|
-
description: "Update relevant documentation and WIKI pages to reflect the changes made."
|
|
53
|
+
- title: "Wiki"
|
|
41
54
|
estimationPercent: 5
|
|
42
55
|
activity: "Development"
|
|
43
56
|
tags: []
|
|
57
|
+
assignTo: "@ParentAssignee"
|
|
58
|
+
|
|
44
59
|
|
|
45
60
|
- title: "Code Review "
|
|
46
|
-
description: "Address code review feedback and refactor as needed"
|
|
47
61
|
estimationPercent: 0
|
|
48
62
|
activity: "Development"
|
|
49
63
|
tags: []
|
|
64
|
+
assignTo: "@Unassigned"
|
|
50
65
|
|
|
51
66
|
- title: "Test Preparation"
|
|
52
|
-
description: "Prepare test cases and scenarios for QA testing."
|
|
53
67
|
estimationPercent: 40
|
|
54
68
|
activity: "Testing"
|
|
55
69
|
tags: []
|
|
70
|
+
condition: '${story.tags} NOT CONTAINS "Dev Only"'
|
|
71
|
+
assignTo: "@Unassigned"
|
|
72
|
+
|
|
73
|
+
|
|
56
74
|
|
|
57
75
|
- title: "Test Execution"
|
|
58
|
-
description: "Execute test cases and report any defects found during testing."
|
|
59
76
|
estimationPercent: 27
|
|
60
77
|
activity: "Testing"
|
|
61
78
|
tags: []
|
|
79
|
+
condition: '${story.tags} NOT CONTAINS "Dev Only"'
|
|
80
|
+
assignTo: "@Unassigned"
|
|
81
|
+
|
|
82
|
+
|
|
62
83
|
|
|
63
84
|
- title: "Automation Testing"
|
|
64
|
-
description: "Develop and maintain automated test scripts to improve testing efficiency."
|
|
65
85
|
estimationPercent: 0
|
|
66
86
|
activity: "Testing"
|
|
67
87
|
tags: []
|
|
88
|
+
condition: '${story.tags} NOT CONTAINS "Dev Only"'
|
|
89
|
+
assignTo: "@Unassigned"
|
|
90
|
+
|
|
91
|
+
|
|
68
92
|
|
|
69
93
|
- title: "Test Review"
|
|
70
|
-
description: "Review test results and ensure all requirements are met before deployment."
|
|
71
94
|
estimationPercent: 0
|
|
72
95
|
activity: "Testing"
|
|
73
96
|
tags: []
|
|
97
|
+
condition: '${story.tags} NOT CONTAINS "Dev Only"'
|
|
98
|
+
assignTo: "@Unassigned"
|
|
99
|
+
|
|
100
|
+
|
|
74
101
|
|
|
75
102
|
- title: "Release Notes"
|
|
76
|
-
description: "Prepare release notes and documentation for the deployment."
|
|
77
103
|
estimationPercent: 0
|
|
78
|
-
activity: "
|
|
104
|
+
activity: "Testing"
|
|
79
105
|
tags: []
|
|
106
|
+
condition: '${story.tags} NOT CONTAINS "Dev Only"'
|
|
107
|
+
assignTo: "@Unassigned"
|
|
108
|
+
|
|
109
|
+
|
|
80
110
|
|
|
81
111
|
estimation:
|
|
82
112
|
strategy: "percentage"
|
|
83
|
-
rounding: "
|
|
113
|
+
rounding: "none"
|
|
84
114
|
minimumTaskPoints: 0
|
|
85
115
|
|
|
86
116
|
metadata:
|