mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-05-01 03:16:29 +02:00
strengthen repo verification and runtime coverage
Add clearer app docs plus targeted desktop, CLI, web, and worker tests so cross-surface regressions are caught earlier and the repo is easier to navigate.
This commit is contained in:
parent
2133d7226f
commit
4239f9f1ef
63 changed files with 3678 additions and 764 deletions
10
apps/cli/src/runs/schema.ts
Normal file
10
apps/cli/src/runs/schema.ts
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
import z from "zod";
|
||||
|
||||
import { RunEvent } from "../entities/run-events.js";
|
||||
|
||||
export const Run = z.object({
|
||||
id: z.string(),
|
||||
createdAt: z.iso.datetime(),
|
||||
agentId: z.string(),
|
||||
log: z.array(RunEvent),
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue