restflow-cli 0.1.0 → 0.2.4
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 +2 -1
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -10,10 +10,11 @@ npm install -g restflow-cli
|
|
|
10
10
|
|
|
11
11
|
## Usage
|
|
12
12
|
|
|
13
|
-
After installation,
|
|
13
|
+
After installation, both `restflow` and `rf` commands will be available:
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
16
|
restflow --help
|
|
17
|
+
rf --help
|
|
17
18
|
restflow daemon start
|
|
18
19
|
restflow claude -p "Hello, world!"
|
|
19
20
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "restflow-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"description": "RestFlow CLI - AI assistant that can execute workflows",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"mcp"
|
|
12
12
|
],
|
|
13
13
|
"author": "Huaiwu Li",
|
|
14
|
-
"license": "
|
|
14
|
+
"license": "Apache-2.0",
|
|
15
15
|
"repository": {
|
|
16
16
|
"type": "git",
|
|
17
17
|
"url": "https://github.com/lhwzds/restflow.git"
|
|
@@ -21,7 +21,8 @@
|
|
|
21
21
|
"url": "https://github.com/lhwzds/restflow/issues"
|
|
22
22
|
},
|
|
23
23
|
"bin": {
|
|
24
|
-
"restflow": "bin/restflow"
|
|
24
|
+
"restflow": "bin/restflow",
|
|
25
|
+
"rf": "bin/restflow"
|
|
25
26
|
},
|
|
26
27
|
"scripts": {
|
|
27
28
|
"postinstall": "node scripts/install.js",
|