flowsquire 1.0.2 → 1.0.3
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/README.md +11 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
A local-first automation platform for organizing files on your computer. No cloud, no AI, no subscriptions — just simple WHEN → DO workflows.
|
|
4
4
|
|
|
5
|
+
## Getting Started in 2 Minutes
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g flowsquire
|
|
9
|
+
flowsquire init # 30 sec setup wizard
|
|
10
|
+
flowsquire start # Drop a file in ~/Downloads
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
That's it. Your files organize themselves.
|
|
14
|
+
|
|
5
15
|
## Features
|
|
6
16
|
|
|
7
17
|
- **File Watching**: Automatically organize files as they appear
|
|
@@ -16,7 +26,7 @@ A local-first automation platform for organizing files on your computer. No clou
|
|
|
16
26
|
## Installation
|
|
17
27
|
|
|
18
28
|
```bash
|
|
19
|
-
npm install -g flowsquire
|
|
29
|
+
npm install -g flowsquire
|
|
20
30
|
```
|
|
21
31
|
|
|
22
32
|
### Prerequisites
|
package/package.json
CHANGED