feat(OBC-001): initialize strict TS plugin project with lint and tests

This commit is contained in:
2026-03-06 08:14:10 -06:00
parent 0c9bcd4057
commit dec39006b1
8 changed files with 8445 additions and 0 deletions

9
tests/smoke.test.ts Normal file
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");
});
});