opencodedb-types
v0.1.3
Published
Shared Zod schemas and TypeScript types for opencodedb: threads, messages, attachments, machine profiles, and configuration.
Readme
opencodedb-types
Shared Zod schemas and TypeScript types for opencodedb: threads, messages, attachments, machine profiles, and configuration.
Installation
npm install opencodedb-typesUsage
import { ThreadSchema, MessageSchema } from "opencodedb-types";
const thread = ThreadSchema.parse({
id: "abc123",
title: "My Thread",
createdAt: Date.now(),
});Contents
- Thread, message, and attachment schemas
- Machine profile types
- Configuration schemas
- OpenCode session metadata types
All schemas use Zod for runtime validation and TypeScript inference.
