@sylphx/flow 1.4.7 → 1.4.10
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 +27 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @sylphx/flow
|
|
2
2
|
|
|
3
|
+
## 1.4.10
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 126de1e: Fix CI auto-publish workflow NPM authentication
|
|
8
|
+
|
|
9
|
+
## 1.4.9
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 4493ee0: Remove root assets directory and simplify publish flow:
|
|
14
|
+
|
|
15
|
+
**Cleanup:**
|
|
16
|
+
|
|
17
|
+
- Removed duplicate root assets/ directory (4080 lines)
|
|
18
|
+
- packages/flow/assets/ is now single source of truth
|
|
19
|
+
- Updated prepublishOnly to no-op (assets already in package)
|
|
20
|
+
|
|
21
|
+
**Templates (now correctly published):**
|
|
22
|
+
|
|
23
|
+
- Agents: coder, orchestrator, reviewer, writer (MEP optimized)
|
|
24
|
+
- Rules: core, code-standards, workspace (MEP optimized + NEW)
|
|
25
|
+
- Slash commands: cleanup, improve, polish, quality, release (NEW)
|
|
26
|
+
- Output styles: silent (prevent report files)
|
|
27
|
+
|
|
28
|
+
**Root cause:** Root assets/ was copied to package during publish, causing template sync issues.
|
|
29
|
+
|
|
3
30
|
## 1.4.6
|
|
4
31
|
|
|
5
32
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sylphx/flow",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.10",
|
|
4
4
|
"description": "AI-powered development workflow automation with autonomous loop mode and smart configuration",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"test": "vitest run",
|
|
16
16
|
"test:watch": "vitest",
|
|
17
17
|
"type-check": "tsc --noEmit",
|
|
18
|
-
"prepublishOnly": "
|
|
18
|
+
"prepublishOnly": "echo 'Using assets from packages/flow/assets'"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"commander": "^14.0.2",
|