@sppg2001/atomize 0.0.1 → 1.0.0

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.
@@ -1,169 +0,0 @@
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"