feat(FN-3328): refactor droid-cli into compatibility shim backed by fusion-

Merged FN-3328: Refactored the droid integration by converting `droid-cli` into a lightweight compatibility shim that delegates to `fusion-plugin-droid-runtime`, reducing droid-cli by ~5,400 lines of code while moving the actual runtime logic into the plugin scaffold. Updated the plugin loader to al

Fusion-Task-Id: FN-3328
This commit is contained in:
Fusion
2026-05-04 17:04:31 -07:00
committed by gsxdsm
parent 6ea1fb01e4
commit 7e1768b1b1
21 changed files with 310 additions and 5700 deletions

View File

@@ -32,10 +32,36 @@ const plugin: FusionPlugin = definePlugin({
},
},
uiSlots: [
{ slotId: "settings-provider-card", label: "Droid CLI Provider", componentPath: "./components/settings-provider-card.js" },
{ slotId: "onboarding-provider-card", label: "Droid CLI Provider", componentPath: "./components/onboarding-provider-card.js" },
{ slotId: "onboarding-setup-help", label: "Droid CLI Setup Help", componentPath: "./components/onboarding-setup-help.js" },
{ slotId: "post-onboarding-recommendation", label: "Droid CLI Recommendation", componentPath: "./components/post-onboarding-recommendation.js" }
{
slotId: "settings-provider-card",
label: "Droid CLI Provider",
componentPath: "./components/settings-provider-card.js",
order: 10,
},
{
slotId: "settings-integration-card",
label: "Droid CLI Integration",
componentPath: "./components/settings-integration-card.js",
order: 20,
},
{
slotId: "onboarding-provider-card",
label: "Droid CLI Provider",
componentPath: "./components/onboarding-provider-card.js",
order: 10,
},
{
slotId: "onboarding-setup-help",
label: "Droid CLI Setup Help",
componentPath: "./components/onboarding-setup-help.js",
order: 20,
},
{
slotId: "post-onboarding-recommendation",
label: "Droid CLI Recommendation",
componentPath: "./components/post-onboarding-recommendation.js",
order: 10,
},
],
runtime: {
metadata: droidRuntimeMetadata,