feat(FN-3332): add droid runtime plugin with event bridge and process manag

The merge delivers a new `fusion-plugin-droid-runtime` plugin providing a full MCP server and runtime adapter for droid-based agents, with event bridging, process management, tool mapping, and a prompt builder. It also adds agent delegation and org hierarchy tools to the pi extension, while fixing a

Fusion-Task-Id: FN-3332
This commit is contained in:
Fusion
2026-05-04 03:04:33 -07:00
committed by gsxdsm
parent 089f840d41
commit fbb96b25a5
36 changed files with 2947 additions and 214 deletions

View File

@@ -0,0 +1,10 @@
import { describe, expect, it, vi } from "vitest";
import * as processManager from "../process-manager.js";
describe("provider dependencies", () => {
it("deduplicates discovered model ids", async () => {
vi.spyOn(processManager, "discoverDroidModels").mockResolvedValue(["a", "b", "a"]);
const ids = Array.from(new Set(await processManager.discoverDroidModels()));
expect(ids).toEqual(["a", "b"]);
});
});