File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,7 +9,21 @@ This document describes the development workflow for the Knowledge Unity project
99
1010## 1. Development Cycle
1111
12- ### 1.1 Feature Development
12+ ### 1.1 Task Implementation Process
13+
14+ For each issue/task that becomes one or more implementation:
15+
16+ 1 . ** Check if spec exists** : Verify spec file is present in ` spec/ `
17+ 2 . ** Create branch** : ` feature/spec-id-description ` or ` fix/spec-id-description `
18+ 3 . ** Write tests** : Define expected behavior in ` Assets/Tests/ `
19+ 4 . ** Implement** : Write code to pass tests
20+ 5 . ** Run tests** : Verify all pass
21+ 6 . ** Commit** : Use conventional commits
22+ 7 . ** Push** : Push to remote
23+ 8 . ** Merge** : Merge to master (or main)
24+ 9 . ** Cleanup** : Delete feature branch
25+
26+ ### 1.2 Feature Development
1327
14281 . ** Create branch** : ` feature/feature-name `
15292 . ** Write tests** : Define expected behavior
@@ -19,7 +33,7 @@ This document describes the development workflow for the Knowledge Unity project
19336 . ** Push** : Push to remote
20347 . ** Pull Request** : Merge to main
2135
22- ### 1.2 Bug Fix
36+ ### 1.3 Bug Fix
2337
24381 . ** Create branch** : ` fix/bug-description `
25392 . ** Reproduce** : Write test that fails
You can’t perform that action at this time.
0 commit comments