@sylphx/flow 2.24.0 → 2.25.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.
- package/CHANGELOG.md +6 -0
- package/assets/rules/code-standards.md +29 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @sylphx/flow
|
|
2
2
|
|
|
3
|
+
## 2.25.0 (2025-12-18)
|
|
4
|
+
|
|
5
|
+
### ✨ Features
|
|
6
|
+
|
|
7
|
+
- **rules:** add Git Workflow - all commits must be atomic ([17ebcbf](https://github.com/SylphxAI/flow/commit/17ebcbfa630b0a14961e88fcacca996b73634e5a))
|
|
8
|
+
|
|
3
9
|
## 2.24.0 (2025-12-18)
|
|
4
10
|
|
|
5
11
|
### ✨ Features
|
|
@@ -145,3 +145,32 @@ Storage → Domain Model → Transform → API Response
|
|
|
145
145
|
```
|
|
146
146
|
|
|
147
147
|
Never skip validation at boundaries.
|
|
148
|
+
|
|
149
|
+
---
|
|
150
|
+
|
|
151
|
+
## Git Workflow
|
|
152
|
+
|
|
153
|
+
**All commits are atomic.** One logical change per commit. Commit immediately after each unit of work.
|
|
154
|
+
|
|
155
|
+
**Never batch. Never wait.** Don't accumulate changes. Don't wait for user to say "commit".
|
|
156
|
+
|
|
157
|
+
**Commit triggers** — commit immediately when any of these complete:
|
|
158
|
+
- Feature added
|
|
159
|
+
- Bug fixed
|
|
160
|
+
- Refactor done
|
|
161
|
+
- Config changed
|
|
162
|
+
- Docs updated
|
|
163
|
+
|
|
164
|
+
**Format**: `<type>(<scope>): <description>`
|
|
165
|
+
|
|
166
|
+
Types: `feat`, `fix`, `docs`, `refactor`, `test`, `chore`
|
|
167
|
+
|
|
168
|
+
<example>
|
|
169
|
+
✅ Edit file → Commit → Edit next file → Commit
|
|
170
|
+
✅ feat(auth): add login endpoint
|
|
171
|
+
✅ fix(billing): handle webhook retry
|
|
172
|
+
|
|
173
|
+
❌ Edit 5 files → Commit all together
|
|
174
|
+
❌ Wait for user to say "commit"
|
|
175
|
+
❌ "WIP" commits
|
|
176
|
+
</example>
|
package/package.json
CHANGED