feat(epic222): Workshop — Timmy as wizard presence, world state, WS bootstrap (#31)

This commit is contained in:
2026-03-18 22:15:46 -04:00
parent ea4cddc2ad
commit a70898e939
13 changed files with 863 additions and 703 deletions

View File

@@ -3,4 +3,5 @@ export * from "./invoices";
export * from "./conversations";
export * from "./messages";
export * from "./bootstrap-jobs";
export * from "./world-events";
export * from "./sessions";

View File

@@ -0,0 +1,10 @@
import { pgTable, text, timestamp } from "drizzle-orm/pg-core";
export const worldEvents = pgTable("world_events", {
id: text("id").primaryKey(),
type: text("type").notNull(),
agentId: text("agent_id"),
summary: text("summary").notNull(),
jobId: text("job_id"),
createdAt: timestamp("created_at").notNull().defaultNow(),
});