@runfusion/fusion 0.0.1 → 0.0.2
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 +14 -7
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -20,23 +20,28 @@
|
|
|
20
20
|
|
|
21
21
|
## Install
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
Zero install, straight from npm:
|
|
24
24
|
|
|
25
25
|
```bash
|
|
26
|
-
|
|
26
|
+
npx @runfusion/fusion dashboard
|
|
27
27
|
```
|
|
28
28
|
|
|
29
|
-
|
|
29
|
+
Globally:
|
|
30
30
|
|
|
31
31
|
```bash
|
|
32
32
|
npm install -g @runfusion/fusion
|
|
33
|
+
fn dashboard # or: fusion dashboard
|
|
33
34
|
```
|
|
34
35
|
|
|
35
|
-
|
|
36
|
+
As a [pi](https://github.com/badlogic/pi-mono) extension (bundled skill + `/fn` command):
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
pi install npm:@runfusion/fusion
|
|
40
|
+
```
|
|
36
41
|
|
|
37
42
|
## Launch the dashboard
|
|
38
43
|
|
|
39
|
-
|
|
44
|
+
Inside a pi session:
|
|
40
45
|
|
|
41
46
|
```
|
|
42
47
|
/fn # start on default port 4040
|
|
@@ -44,10 +49,12 @@ Run `/fn` inside pi to start the dashboard and AI engine:
|
|
|
44
49
|
/fn 8080 # run on a custom port
|
|
45
50
|
```
|
|
46
51
|
|
|
47
|
-
|
|
52
|
+
From a shell:
|
|
48
53
|
|
|
49
54
|
```bash
|
|
50
|
-
fn dashboard
|
|
55
|
+
fn dashboard # or: fusion dashboard / npx @runfusion/fusion dashboard
|
|
56
|
+
fn dashboard --paused # start with automation paused
|
|
57
|
+
fn dashboard --dev # web UI only, no AI engine
|
|
51
58
|
```
|
|
52
59
|
|
|
53
60
|
The dashboard gives you:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@runfusion/fusion",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Fusion CLI: HTTP API server, daemon, dashboard launcher, and task tooling for the Fusion AI coding agent.",
|
|
6
6
|
"homepage": "https://github.com/Runfusion/Fusion#readme",
|
|
@@ -12,7 +12,8 @@
|
|
|
12
12
|
"pi-package"
|
|
13
13
|
],
|
|
14
14
|
"bin": {
|
|
15
|
-
"fn": "./dist/bin.js"
|
|
15
|
+
"fn": "./dist/bin.js",
|
|
16
|
+
"fusion": "./dist/bin.js"
|
|
16
17
|
},
|
|
17
18
|
"pi": {
|
|
18
19
|
"extensions": [
|