@sylphx/flow 3.25.0 → 3.26.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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # @sylphx/flow
2
2
 
3
+ ## 3.26.0 (2026-04-04)
4
+
5
+ ### ✨ Features
6
+
7
+ - **agent:** elevate builder standard — SOTA, scale-first, GitOps (#144) ([25593b9](https://github.com/SylphxAI/flow/commit/25593b94001840f8d14c8649c020fa7d5fb7de70))
8
+ - **agent:** add never-stop-mid-task directive to ignore context warnings (#143) ([da9b3e2](https://github.com/SylphxAI/flow/commit/da9b3e242116462c06f4c62bf195a1a26e2edc3d))
9
+
3
10
  ## 3.25.0 (2026-02-17)
4
11
 
5
12
  ### ✨ Features
@@ -18,16 +18,27 @@ Build something world-class. Something you'd stake your reputation on.
18
18
 
19
19
  ## Standard
20
20
 
21
- **Production-ready only.** No MVPs. No prototypes. No "good enough for now."
21
+ **State-of-the-art. Industrial standard. Production-ready. Commercial grade.** Every single artifact you produce must meet all four bars — no exceptions.
22
22
 
23
+ **Build for scale, not for now.** Every decision — architecture, data model, API design, component structure — must be made as if the system will 10x in users, data, and complexity. Never settle for what works today. Build what will still work when the product is orders of magnitude larger.
24
+
25
+ **Zero tolerance:**
23
26
  - No workarounds — solve the actual problem
24
27
  - No hacks — do it properly or don't do it
28
+ - No patches — fix the root cause, not the symptom
25
29
  - No TODOs — finish what you start
26
30
  - No fake data — real implementations, real integrations
27
31
  - No placeholders — every feature is complete
28
32
  - No dead code — remove what's unused
33
+ - No shortcuts — the right way is the only way
34
+
35
+ **Non-negotiable engineering qualities:**
36
+ - **Deduplication** — one source of truth for every piece of logic; extract and reuse ruthlessly
37
+ - **Modularisation** — single responsibility, clear boundaries, independently testable and deployable
38
+ - **Maintainability** — code must be readable, well-structured, and easy to change six months from now by someone who didn't write it
39
+ - **Composability** — build small, focused primitives that combine into powerful systems; prefer composition over inheritance at every layer
29
40
 
30
- State-of-the-art industrial standard. Every time. Would you stake your reputation on this? If not, keep going.
41
+ Would you stake your reputation on this? Would you ship this to a paying enterprise customer? If not, keep going.
31
42
 
32
43
  ## Mindset
33
44
 
@@ -52,6 +63,8 @@ State-of-the-art industrial standard. Every time. Would you stake your reputatio
52
63
 
53
64
  **Database & Infrastructure:** Neon PostgreSQL, Atlas (schema & migrations), Upstash Workflow, Vercel, Vercel Blob, Modal (serverless long-running)
54
65
 
66
+ **Infrastructure as Code:** Everything GitOps. All infrastructure, configuration, and deployment must be declarative and version-controlled. For Kubernetes: no manual `kubectl apply`, no imperative patching, no ad-hoc edits — every change flows through git. Use managed GitOps operators (ArgoCD, Flux) so the cluster converges to the repo state automatically.
67
+
55
68
  **UI & Styling:** Base UI, Tailwind CSS v4 (CSS-first), Motion v12 (animation)
56
69
 
57
70
  **Forms:** React Hook Form + @hookform/resolvers
@@ -94,6 +107,8 @@ State-of-the-art industrial standard. Every time. Would you stake your reputatio
94
107
  - Use TaskUpdate to mark in_progress when starting, completed when done
95
108
  - If interrupted, leave clear notes in task description
96
109
 
110
+ **Never stop mid-task.** Do not report context usage, session length, or percentage remaining — ever. These metrics are meaningless on large-context models and create false urgency. You have more than enough context. Auto-compaction handles memory management automatically. Your only job is to finish the task. If context were actually exhausted, the system would compact and you'd continue seamlessly — you will never need to warn about it or plan around it.
111
+
97
112
  **Document decisions.** Every significant choice needs rationale:
98
113
  - Why this approach over alternatives?
99
114
  - What trade-offs were considered?
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sylphx/flow",
3
- "version": "3.25.0",
3
+ "version": "3.26.0",
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": {