@runfusion/fusion 0.18.0 → 0.18.1

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.
Files changed (27) hide show
  1. package/dist/bin.js +31 -27
  2. package/dist/client/assets/{ChatView-BomXmqar.js → ChatView-3Sqm6teN.js} +1 -1
  3. package/dist/client/assets/{DevServerView-yFvF4xL4.js → DevServerView-r6V3FqkY.js} +1 -1
  4. package/dist/client/assets/{DirectoryPicker-BDNodhtF.js → DirectoryPicker-CTZE95Fk.js} +1 -1
  5. package/dist/client/assets/{DocumentsView-CAWtDEaL.js → DocumentsView-DSEf1Lmg.js} +1 -1
  6. package/dist/client/assets/{InsightsView-CDkiJeW1.js → InsightsView-F5PZsX5u.js} +1 -1
  7. package/dist/client/assets/{MemoryView-ZRQ9EL9H.js → MemoryView-DicXjec9.js} +1 -1
  8. package/dist/client/assets/{NodesView-DosrOyeH.js → NodesView-DddCS7zB.js} +1 -1
  9. package/dist/client/assets/{PiExtensionsManager-CzZ1LEpz.js → PiExtensionsManager-Ch7si-v8.js} +1 -1
  10. package/dist/client/assets/{PluginManager-Dp3vPsMO.js → PluginManager-LcTh_fHP.js} +1 -1
  11. package/dist/client/assets/{ResearchView-PvNkdaQE.js → ResearchView-D0TY1VcX.js} +1 -1
  12. package/dist/client/assets/{RoadmapsView-BUW-HJz5.js → RoadmapsView-DfEF3mql.js} +1 -1
  13. package/dist/client/assets/{SettingsModal-uzo470XS.js → SettingsModal-SOADcCNJ.js} +3 -3
  14. package/dist/client/assets/{SettingsModal-ByVl_fUi.js → SettingsModal-YcScdFiG.js} +1 -1
  15. package/dist/client/assets/{SetupWizardModal-DH1hpyiP.js → SetupWizardModal-EDYuf9Yc.js} +1 -1
  16. package/dist/client/assets/{SkillsView-B-RqQSFE.js → SkillsView-Dkq2CQla.js} +1 -1
  17. package/dist/client/assets/index-4hC8zoTD.css +1 -0
  18. package/dist/client/assets/{index-CtiRbTNv.js → index-DNzA4aZ7.js} +161 -161
  19. package/dist/client/assets/{users-WyHhw14V.js → users-Cp5TSxVm.js} +1 -1
  20. package/dist/client/index.html +2 -2
  21. package/dist/client/version.json +1 -1
  22. package/dist/droid-cli/package.json +1 -1
  23. package/dist/extension.js +17 -27
  24. package/dist/pi-claude-cli/package.json +1 -1
  25. package/dist/plugins/fusion-plugin-dependency-graph/package.json +1 -1
  26. package/package.json +1 -1
  27. package/dist/client/assets/index-Dy-xC2C2.css +0 -1
@@ -1,4 +1,4 @@
1
- import{h as e}from"./index-CtiRbTNv.js";/**
1
+ import{h as e}from"./index-DNzA4aZ7.js";/**
2
2
  * @license lucide-react v1.7.0 - ISC
3
3
  *
4
4
  * This source code is licensed under the ISC license.
@@ -92,11 +92,11 @@
92
92
  }
93
93
  })();
94
94
  </script>
95
- <script type="module" crossorigin src="/assets/index-CtiRbTNv.js"></script>
95
+ <script type="module" crossorigin src="/assets/index-DNzA4aZ7.js"></script>
96
96
  <link rel="modulepreload" crossorigin href="/assets/vendor-react-K0fH_qHe.js">
97
97
  <link rel="modulepreload" crossorigin href="/assets/vendor-xterm-DzcZoU0P.js">
98
98
  <link rel="stylesheet" crossorigin href="/assets/vendor-xterm-LZoznX6r.css">
99
- <link rel="stylesheet" crossorigin href="/assets/index-Dy-xC2C2.css">
99
+ <link rel="stylesheet" crossorigin href="/assets/index-4hC8zoTD.css">
100
100
  </head>
101
101
  <body>
102
102
  <div id="root"></div>
@@ -1 +1 @@
1
- {"version":"9463d1c58-89b78e0b"}
1
+ {"version":"89401cd2c-f9f4b01e"}
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fusion/droid-cli",
3
- "version": "0.11.1",
3
+ "version": "0.11.2",
4
4
  "description": "First-party Fusion pi extension that routes LLM calls through the Droid CLI subprocess.",
5
5
  "license": "MIT",
6
6
  "private": true,
package/dist/extension.js CHANGED
@@ -10549,50 +10549,40 @@ ${feature.acceptanceCriteria}`);
10549
10549
  }
10550
10550
  }
10551
10551
  // ── ID Generators ───────────────────────────────────────────────────
10552
- generateMissionId() {
10553
- const timestamp = Date.now();
10552
+ idSequence = 0;
10553
+ generateId(prefix) {
10554
+ const timestamp = Date.now().toString(36).toUpperCase();
10555
+ this.idSequence += 1;
10556
+ const sequence = this.idSequence.toString(36).toUpperCase().padStart(4, "0");
10554
10557
  const random = Math.random().toString(36).substring(2, 6).toUpperCase();
10555
- return `M-${timestamp.toString(36).toUpperCase()}-${random}`;
10558
+ return `${prefix}-${timestamp}-${sequence}-${random}`;
10559
+ }
10560
+ generateMissionId() {
10561
+ return this.generateId("M");
10556
10562
  }
10557
10563
  generateMilestoneId() {
10558
- const timestamp = Date.now();
10559
- const random = Math.random().toString(36).substring(2, 6).toUpperCase();
10560
- return `MS-${timestamp.toString(36).toUpperCase()}-${random}`;
10564
+ return this.generateId("MS");
10561
10565
  }
10562
10566
  generateSliceId() {
10563
- const timestamp = Date.now();
10564
- const random = Math.random().toString(36).substring(2, 6).toUpperCase();
10565
- return `SL-${timestamp.toString(36).toUpperCase()}-${random}`;
10567
+ return this.generateId("SL");
10566
10568
  }
10567
10569
  generateFeatureId() {
10568
- const timestamp = Date.now();
10569
- const random = Math.random().toString(36).substring(2, 6).toUpperCase();
10570
- return `F-${timestamp.toString(36).toUpperCase()}-${random}`;
10570
+ return this.generateId("F");
10571
10571
  }
10572
10572
  generateMissionEventId() {
10573
- const timestamp = Date.now();
10574
- const random = Math.random().toString(36).substring(2, 6).toUpperCase();
10575
- return `ME-${timestamp.toString(36).toUpperCase()}-${random}`;
10573
+ return this.generateId("ME");
10576
10574
  }
10577
10575
  generateAssertionId() {
10578
- const timestamp = Date.now();
10579
- const random = Math.random().toString(36).substring(2, 6).toUpperCase();
10580
- return `CA-${timestamp.toString(36).toUpperCase()}-${random}`;
10576
+ return this.generateId("CA");
10581
10577
  }
10582
10578
  generateValidatorRunId() {
10583
- const timestamp = Date.now();
10584
- const random = Math.random().toString(36).substring(2, 6).toUpperCase();
10585
- return `VR-${timestamp.toString(36).toUpperCase()}-${random}`;
10579
+ return this.generateId("VR");
10586
10580
  }
10587
10581
  generateFailureId() {
10588
- const timestamp = Date.now();
10589
- const random = Math.random().toString(36).substring(2, 6).toUpperCase();
10590
- return `VF-${timestamp.toString(36).toUpperCase()}-${random}`;
10582
+ return this.generateId("VF");
10591
10583
  }
10592
10584
  generateLineageId() {
10593
- const timestamp = Date.now();
10594
- const random = Math.random().toString(36).substring(2, 6).toUpperCase();
10595
- return `FL-${timestamp.toString(36).toUpperCase()}-${random}`;
10585
+ return this.generateId("FL");
10596
10586
  }
10597
10587
  };
10598
10588
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fusion/pi-claude-cli",
3
- "version": "0.18.0",
3
+ "version": "0.18.1",
4
4
  "description": "Fusion vendored fork: pi coding-agent extension that routes LLM calls through the Claude Code CLI. Forked from rchern/pi-claude-cli (MIT). See UPSTREAM.md.",
5
5
  "license": "MIT",
6
6
  "private": true,
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fusion-plugin-examples/dependency-graph",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "type": "module",
5
5
  "description": "Dependency graph dashboard view plugin for Fusion",
6
6
  "private": true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@runfusion/fusion",
3
- "version": "0.18.0",
3
+ "version": "0.18.1",
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",