@sylphx/flow 2.27.0 → 2.28.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 +6 -0
- package/assets/slash-commands/init.md +34 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @sylphx/flow
|
|
2
2
|
|
|
3
|
+
## 2.28.0 (2025-12-18)
|
|
4
|
+
|
|
5
|
+
### ✨ Features
|
|
6
|
+
|
|
7
|
+
- **commands:** add /init command to create project docs ([a07d7a3](https://github.com/SylphxAI/flow/commit/a07d7a3afd8a6448547843e081c3dde446b95c69))
|
|
8
|
+
|
|
3
9
|
## 2.27.0 (2025-12-18)
|
|
4
10
|
|
|
5
11
|
### ✨ Features
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: init
|
|
3
|
+
description: Initialize project docs - create PRODUCT.md and ARCHITECTURE.md
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Init Project Docs
|
|
7
|
+
|
|
8
|
+
Create project documentation if missing:
|
|
9
|
+
|
|
10
|
+
1. **Check** if `PRODUCT.md` exists in project root
|
|
11
|
+
- If missing → Create with structure:
|
|
12
|
+
- Vision / Mission
|
|
13
|
+
- Success Metrics (revenue, users, growth)
|
|
14
|
+
- Target Users
|
|
15
|
+
- Value Propositions
|
|
16
|
+
- Key Features
|
|
17
|
+
- Competitive Landscape
|
|
18
|
+
- Roadmap (Now / Next / Later)
|
|
19
|
+
|
|
20
|
+
2. **Check** if `ARCHITECTURE.md` exists in project root
|
|
21
|
+
- If missing → Create with structure:
|
|
22
|
+
- Tech Stack (with rationale)
|
|
23
|
+
- System Design
|
|
24
|
+
- Key Patterns
|
|
25
|
+
- Data Models
|
|
26
|
+
- Integrations
|
|
27
|
+
- Technical Decisions
|
|
28
|
+
- Known Limitations
|
|
29
|
+
|
|
30
|
+
3. **If files exist**, read them and suggest improvements based on current codebase.
|
|
31
|
+
|
|
32
|
+
**Fill in details** based on what you can learn from the codebase. Ask user for what you can't infer.
|
|
33
|
+
|
|
34
|
+
Product = WHAT and WHY. Architecture = HOW.
|
package/package.json
CHANGED