Replace createCursorRole/createHermesRole with adapter + prompt + zod meta. Add shared compileRoleSpec, cursor ask adapter, nerve.yaml extract defaults. Refs #248 Made-with: Cursor
7 lines
197 B
TypeScript
7 lines
197 B
TypeScript
import { z } from "zod";
|
|
|
|
export const testerMetaSchema = z.object({
|
|
passed: z.boolean().describe("true if all e2e checks passed"),
|
|
});
|
|
export type TesterMeta = z.infer<typeof testerMetaSchema>;
|