chore: initialize workspace structure

This commit is contained in:
2026-03-28 16:30:43 +08:00
commit 50f41a6e22
15 changed files with 103 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import { describe, expect, it } from "vitest";
import { AGENT_RUNTIME_PACKAGE } from "@aiquant/agent-runtime";
describe("workspace smoke test", () => {
it("resolves cross-workspace package exports", () => {
expect(AGENT_RUNTIME_PACKAGE).toBe("agent-runtime");
});
});