@sylphx/flow 2.5.0 → 2.6.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,11 @@
|
|
|
1
1
|
# @sylphx/flow
|
|
2
2
|
|
|
3
|
+
## 2.6.0 (2025-12-17)
|
|
4
|
+
|
|
5
|
+
### ✨ Features
|
|
6
|
+
|
|
7
|
+
- **commands:** add Vercel Blob upload governance to saas-review ([aabcd25](https://github.com/SylphxAI/flow/commit/aabcd25eb7d19725173db0b08018626b91b95daa))
|
|
8
|
+
|
|
3
9
|
## 2.5.0 (2025-12-17)
|
|
4
10
|
|
|
5
11
|
### ✨ Features
|
|
@@ -66,6 +66,13 @@ agent: coder
|
|
|
66
66
|
* Deterministic precision (no floats), idempotent posting, concurrency safety, transactional integrity, and auditability are required.
|
|
67
67
|
* Monetary flows must be currency-based and reconcilable with Stripe; credits (if used) must be governed as non-cash entitlements.
|
|
68
68
|
|
|
69
|
+
### 4.4 Vercel Blob Upload Governance (Hard Requirement)
|
|
70
|
+
|
|
71
|
+
* All uploads must be **intent-based and server-verified**.
|
|
72
|
+
* The client must upload to Vercel Blob first using short-lived, server-issued authorization (e.g., signed upload URL / token), then call a server finalize endpoint to persist the resulting Blob URL/key.
|
|
73
|
+
* The server must validate the Blob URL/key ownership and namespace, and must match it against the originating upload intent (who/what/where/expiry/constraints) before attaching it to any resource.
|
|
74
|
+
* The system must support safe retries and idempotent finalize; expired/abandoned intents must be cleanable and auditable.
|
|
75
|
+
|
|
69
76
|
## 5) Internationalization, Routing, and Canonicalization (Keep Precise)
|
|
70
77
|
|
|
71
78
|
### 5.1 Supported Locales
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sylphx/flow",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.6.0",
|
|
4
4
|
"description": "One CLI to rule them all. Unified orchestration layer for Claude Code, OpenCode, Cursor and all AI development tools. Auto-detection, auto-installation, auto-upgrade.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|