feat(wave2): add @mosaic/openclaw-context plugin to monorepo

- OpenClaw → OpenBrain context engine plugin migrated from mosaic/openclaw-openbrain-context
- Depends on @mosaic/types workspace:*
- Typecheck passing
This commit is contained in:
2026-03-06 18:33:09 -06:00
parent 2828a83b66
commit d583dd39c8
15 changed files with 2554 additions and 14 deletions

View File

@@ -0,0 +1,9 @@
import { describe, expect, it } from "vitest";
import { OPENBRAIN_CONTEXT_ENGINE_ID } from "../src/index.js";
describe("project scaffold", () => {
it("exports openbrain context engine id", () => {
expect(OPENBRAIN_CONTEXT_ENGINE_ID).toBe("openbrain");
});
});