@runfusion/fusion 0.1.0 → 0.1.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/dist/bin.js +14191 -12179
- package/dist/client/assets/index-Djv5vKo0.css +1 -0
- package/dist/client/assets/index-zfXYuUXG.js +1241 -0
- package/dist/client/index.html +2 -2
- package/dist/extension.js +11956 -11365
- package/package.json +10 -8
- package/skill/fusion/SKILL.md +2 -2
- package/skill/fusion/references/fusion-capabilities.md +2 -3
- package/dist/client/assets/index-CYkQfLYV.css +0 -1
- package/dist/client/assets/index-ep-146OC.js +0 -1241
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@runfusion/fusion",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.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",
|
|
@@ -37,16 +37,17 @@
|
|
|
37
37
|
"README.md"
|
|
38
38
|
],
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@mariozechner/pi-ai": "^0.
|
|
41
|
-
"@mariozechner/pi-coding-agent": "^0.
|
|
40
|
+
"@mariozechner/pi-ai": "^0.70.0",
|
|
41
|
+
"@mariozechner/pi-coding-agent": "^0.70.0",
|
|
42
42
|
"express": "^5.1.0",
|
|
43
43
|
"ioredis": "^5.6.0",
|
|
44
|
-
"multer": "^2.1.1"
|
|
44
|
+
"multer": "^2.1.1",
|
|
45
|
+
"@fusion/pi-claude-cli": "0.3.1"
|
|
45
46
|
},
|
|
46
47
|
"peerDependencies": {
|
|
47
48
|
"@mariozechner/pi-ai": "*",
|
|
48
49
|
"@mariozechner/pi-coding-agent": "*",
|
|
49
|
-
"
|
|
50
|
+
"typebox": "*"
|
|
50
51
|
},
|
|
51
52
|
"peerDependenciesMeta": {
|
|
52
53
|
"@mariozechner/pi-ai": {
|
|
@@ -55,12 +56,12 @@
|
|
|
55
56
|
"@mariozechner/pi-coding-agent": {
|
|
56
57
|
"optional": true
|
|
57
58
|
},
|
|
58
|
-
"
|
|
59
|
+
"typebox": {
|
|
59
60
|
"optional": true
|
|
60
61
|
}
|
|
61
62
|
},
|
|
62
63
|
"devDependencies": {
|
|
63
|
-
"
|
|
64
|
+
"typebox": "^1.0.0",
|
|
64
65
|
"@types/node": "^22.0.0",
|
|
65
66
|
"@vitest/coverage-v8": "^3.1.0",
|
|
66
67
|
"tsup": "^8.5.1",
|
|
@@ -82,6 +83,7 @@
|
|
|
82
83
|
"build:exe": "bun run build.ts",
|
|
83
84
|
"build:exe:all": "bun run build.ts --all",
|
|
84
85
|
"typecheck": "tsc --noEmit",
|
|
85
|
-
"test": "vitest run --silent=passed-only --reporter=dot"
|
|
86
|
+
"test": "vitest run --silent=passed-only --reporter=dot",
|
|
87
|
+
"test:build-exe": "FUSION_TEST_BUILD_EXE=1 vitest run --config vitest.build-exe.config.ts --silent=passed-only --reporter=dot"
|
|
86
88
|
}
|
|
87
89
|
}
|
package/skill/fusion/SKILL.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: fusion
|
|
3
|
-
description: AI-orchestrated task board (Fusion
|
|
3
|
+
description: AI-orchestrated task board (Fusion) interface. Use when working with the Fusion task management system, creating or managing tasks, understanding task workflows, organizing work into missions, or interfacing with the fusion dashboard. Triggers on "create a task", "list tasks", "show board", "plan a mission", "check task status", "import issues", or any Fusion interaction.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<essential_principles>
|
|
7
7
|
|
|
8
|
-
Fusion
|
|
8
|
+
Fusion is an AI-orchestrated task board. You throw in rough ideas; AI specifies, executes, reviews, and delivers them.
|
|
9
9
|
|
|
10
10
|
**Task lifecycle:** Triage → Todo → In Progress → In Review → Done → Archived
|
|
11
11
|
|
|
@@ -85,9 +85,8 @@ Triage → Todo → In Progress → In Review → Done → Archived
|
|
|
85
85
|
## Task Storage Structure
|
|
86
86
|
|
|
87
87
|
```
|
|
88
|
-
.
|
|
89
|
-
├──
|
|
90
|
-
├── config.json # Board config
|
|
88
|
+
.fusion/
|
|
89
|
+
├── fusion.db # SQLite database (WAL mode)
|
|
91
90
|
└── tasks/
|
|
92
91
|
└── KB-001/
|
|
93
92
|
├── PROMPT.md # Task specification
|