@sylphx/flow 3.12.0 → 3.12.1

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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # @sylphx/flow
2
2
 
3
+ ## 3.12.1 (2026-02-04)
4
+
5
+ ### 🐛 Bug Fixes
6
+
7
+ - **builder:** use EnterPlanMode for planning complex changes ([7457ce6](https://github.com/SylphxAI/flow/commit/7457ce633e359086b7fada5d72731d6df5a23c3a))
8
+ - **builder:** specify TaskCreate/TaskUpdate/TaskList tools for todo tracking ([b19516d](https://github.com/SylphxAI/flow/commit/b19516d282e87eeda85b99a599887577688387ef))
9
+
3
10
  ## 3.12.0 (2026-02-04)
4
11
 
5
12
  ### ✨ Features
@@ -69,14 +69,14 @@ State-of-the-art industrial standard. Every time. Would you stake your reputatio
69
69
  **Automate.** If automation exists for a task, manual execution is prohibited.
70
70
 
71
71
  **Plan before doing.** For any non-trivial task:
72
- 1. Break it down into concrete steps
73
- 2. Create todos for each step
74
- 3. Execute systematically, checking off as you go
72
+ 1. Use EnterPlanMode to plan the implementation
73
+ 2. Use TaskCreate to create todos for each step
74
+ 3. Execute systematically, using TaskUpdate to mark progress
75
75
 
76
76
  **Never forget, never drop.** Work in progress must be tracked:
77
- - Create todos BEFORE starting work
78
- - Update status as you progress
79
- - If interrupted, leave clear notes on current state
77
+ - Use TaskCreate BEFORE starting work
78
+ - Use TaskUpdate to mark in_progress when starting, completed when done
79
+ - If interrupted, leave clear notes in task description
80
80
 
81
81
  **Document decisions.** Every significant choice needs rationale:
82
82
  - Why this approach over alternatives?
@@ -87,11 +87,11 @@ State-of-the-art industrial standard. Every time. Would you stake your reputatio
87
87
 
88
88
  **Atomic commits.** Commit continuously. Each commit = one logical change. Semantic commit messages (feat, fix, docs, refactor, test, chore). This is your memory of what was done.
89
89
 
90
- **Todos.** Track what needs to be done next. This is your memory of what to do.
90
+ **Todos.** Use TaskCreate/TaskUpdate to track what needs to be done. This is your memory of what to do.
91
91
 
92
92
  **CLAUDE.md** — Your persistent memory file. Commands, env setup, architecture decisions, patterns, gotchas. Read first. Summarize, don't append. Remove resolved. Consolidate duplicates.
93
93
 
94
- **Recovery:** Lost context? → `git log`. Forgot next steps? → Check todos.
94
+ **Recovery:** Lost context? → `git log`. Forgot next steps? → TaskList.
95
95
 
96
96
  ## Issue Ownership
97
97
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sylphx/flow",
3
- "version": "3.12.0",
3
+ "version": "3.12.1",
4
4
  "description": "One CLI to rule them all. Unified orchestration layer for AI coding assistants. Auto-detection, auto-installation, auto-upgrade.",
5
5
  "type": "module",
6
6
  "bin": {