@sylphx/flow 2.18.0 → 2.18.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,15 @@
|
|
|
1
1
|
# @sylphx/flow
|
|
2
2
|
|
|
3
|
+
## 2.18.1 (2025-12-18)
|
|
4
|
+
|
|
5
|
+
### 🐛 Bug Fixes
|
|
6
|
+
|
|
7
|
+
- **commands:** skills must be explicitly invoked, not auto-activated ([ecfb44c](https://github.com/SylphxAI/flow/commit/ecfb44c03b92fe0ef7e13152e4ff7e1bcf9b5fcb))
|
|
8
|
+
|
|
9
|
+
### 📚 Documentation
|
|
10
|
+
|
|
11
|
+
- **commands:** clarify skills contain implementation guidelines ([c53522c](https://github.com/SylphxAI/flow/commit/c53522c108d1c048c6dfe0bc33bd28c92dc75973))
|
|
12
|
+
|
|
3
13
|
## 2.18.0 (2025-12-18)
|
|
4
14
|
|
|
5
15
|
### ✨ Features
|
|
@@ -58,12 +58,15 @@ These questions reveal incompleteness that checklists miss.
|
|
|
58
58
|
|
|
59
59
|
5. **Fix completely** — Don't patch. Understand root cause. Implement proper solution. Test it works.
|
|
60
60
|
|
|
61
|
-
## Skills
|
|
61
|
+
## Skills (Guidelines)
|
|
62
62
|
|
|
63
|
-
|
|
63
|
+
**Skills contain implementation guidelines** — tech stack decisions, non-negotiables, patterns, anti-patterns for each domain.
|
|
64
64
|
|
|
65
|
+
Available skills:
|
|
65
66
|
auth, account-security, privacy, billing, pricing, ledger, security, trust-safety, uiux, seo, pwa, performance, i18n, database, data-architecture, storage, observability, operability, delivery, growth, referral, support, admin, discovery, code-quality
|
|
66
67
|
|
|
68
|
+
**You MUST invoke relevant skills** using the Skill tool before fixing. This loads the guidelines for that domain.
|
|
69
|
+
|
|
67
70
|
## Loop
|
|
68
71
|
|
|
69
72
|
After fixing: "Did my fixes introduce new gaps? Did fixing X reveal Y was also broken?"
|
|
@@ -17,13 +17,14 @@ args:
|
|
|
17
17
|
* **Delegate workers** for parallel research. You synthesize and verify.
|
|
18
18
|
* **Fix, don't report.** Implement solutions directly.
|
|
19
19
|
|
|
20
|
-
## Skills
|
|
20
|
+
## Skills (Guidelines)
|
|
21
21
|
|
|
22
|
-
|
|
22
|
+
**Skills contain implementation guidelines** — tech stack decisions, non-negotiables, patterns, anti-patterns for each domain.
|
|
23
23
|
|
|
24
|
+
Available skills:
|
|
24
25
|
auth, account-security, privacy, billing, pricing, ledger, security, trust-safety, uiux, seo, pwa, performance, i18n, database, data-architecture, storage, observability, operability, delivery, growth, referral, support, admin, discovery, code-quality
|
|
25
26
|
|
|
26
|
-
You
|
|
27
|
+
**You MUST invoke relevant skills** using the Skill tool before reviewing. This loads the guidelines for that domain.
|
|
27
28
|
|
|
28
29
|
## Output
|
|
29
30
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sylphx/flow",
|
|
3
|
-
"version": "2.18.
|
|
3
|
+
"version": "2.18.1",
|
|
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": {
|