You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+20-1Lines changed: 20 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -61,7 +61,10 @@ StackCode is a suite of tools designed to work together seamlessly:
61
61
Integrates seamlessly with Husky git hooks. The `stc validate` command ensures that no non-conventional commit ever makes it into your repository.
62
62
63
63
- ⚙️ **Flexible Configuration (`config`):**
64
-
Manage global preferences (like language) and project-specific settings (like enabling commit validation) with a simple, interactive command.
64
+
Manage global preferences (like language and educational mode) and project-specific settings (like enabling commit validation) with a simple, interactive command.
65
+
66
+
- 🎓 **Educational Mode (`--educate`):**
67
+
**NEW!** Learn while you work. Enable educational mode to receive helpful explanations about best practices behind every action. Configure globally with `stc config set educate true` or use the `--educate` flag on any command for on-demand learning.
65
68
66
69
## 🛠️ Under the Hood (Main Technologies)
67
70
@@ -102,6 +105,22 @@ This is the best approach for ensuring everyone on a project uses the exact same
102
105
npx stc commit
103
106
```
104
107
108
+
### 🎓 Enable Educational Mode (Recommended for Beginners)
109
+
110
+
StackCode can teach you best practices as you work. To enable educational explanations:
111
+
112
+
```bash
113
+
# Enable educational mode globally (shows explanations on all commands)
114
+
stc config set educate true
115
+
116
+
# Or use on-demand with any command
117
+
stc validate "feat: new feature" --educate
118
+
stc commit --educate
119
+
stc init --educate
120
+
```
121
+
122
+
Educational mode explains the "why" behind each action, making it perfect for learning DevOps best practices!
0 commit comments