feat: add multi-agent beta remote office support (#62)
* Remote openclaw connection enabled and agent added * 2 worlds connected * Performance improvement * Performance improvements * Added documentation * feat(office): add multi-agent beta remote office support Add a second-office beta that can mirror remote Claw3D presence or derive remote gateway presence so teams can visualize and message agents across instances. Harden the new remote flows, document setup, and keep the branch green with full validation. Made-with: Cursor --------- Co-authored-by: iamlukethedev <iamlukethedev@users.noreply.github.com> Co-authored-by: iamlukethedev <lucas.guilherme@smartwayslfl.com>
This commit is contained in:
@@ -156,12 +156,16 @@ describe("studio settings normalization", () => {
|
||||
},
|
||||
});
|
||||
|
||||
expect(normalized.office["ws://localhost:18789"]).toEqual({
|
||||
title: "Team Orbit",
|
||||
});
|
||||
expect(normalized.office.bad).toEqual({
|
||||
title: "Luke Headquarters",
|
||||
});
|
||||
expect(normalized.office["ws://localhost:18789"]).toEqual(
|
||||
expect.objectContaining({
|
||||
title: "Team Orbit",
|
||||
}),
|
||||
);
|
||||
expect(normalized.office.bad).toEqual(
|
||||
expect.objectContaining({
|
||||
title: "Luke Headquarters",
|
||||
}),
|
||||
);
|
||||
});
|
||||
|
||||
it("merges office title patches", () => {
|
||||
@@ -181,8 +185,10 @@ describe("studio settings normalization", () => {
|
||||
},
|
||||
});
|
||||
|
||||
expect(merged.office["ws://localhost:18789"]).toEqual({
|
||||
title: "Orbit Control",
|
||||
});
|
||||
expect(merged.office["ws://localhost:18789"]).toEqual(
|
||||
expect.objectContaining({
|
||||
title: "Orbit Control",
|
||||
}),
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user