22name : Simplified Workflow
33description : Lightweight 17-step workflow for features, bugs, and refactoring
44version : 1.1.0
5+ steps : 17
56applies_to :
67 - features
78 - bugs
89 - refactoring
10+ phases :
11+ - preparation
12+ - implementation
13+ - testing
14+ - review
15+ - merge
916prerequisites :
1017 - Git repository initialized
1118 - GitHub CLI (gh) or Azure DevOps CLI (az) installed
@@ -18,6 +25,15 @@ failure_modes:
1825 - Tests fail → fix tests or implementation
1926 - Review rejected → address feedback
2027 - Merge conflicts → resolve manually
28+ philosophy_alignment :
29+ - principle : Ruthless Simplicity
30+ application : Lightweight 17-step process for clear requirements (1-10 files)
31+ - principle : Test-Driven Development
32+ application : Write tests before implementation (Step 6)
33+ - principle : Zero-BS Implementation
34+ application : No debug code or TODOs allowed (Step 10)
35+ - principle : Modular Design
36+ application : 1-10 files maximum scope enforces modularity
2137---
2238
2339# Simplified Workflow
@@ -159,13 +175,13 @@ def test_user_authentication():
159175- ✅ Commit with clear message:
160176 ``` bash
161177 git commit -m " feat: add JWT authentication (#42)
162-
178+
163179 - Implement JWT token generation
164180 - Add token validation
165181 - Update tests for auth module"
166182 ```
167183
168- ** Format** : ` <type>: <description> (#<issue-number>) `
184+ ** Format** : ` <type>: <description> (#<issue-number>) `
169185** Types** : ` feat ` , ` fix ` , ` refactor ` , ` test ` , ` docs ` , ` chore `
170186
171187---
0 commit comments