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
194 B
TypeScript
7 lines
194 B
TypeScript
import { z } from "zod";
|
|
|
|
export const testMetaSchema = z.object({
|
|
passed: z.boolean().describe("true if all test commands passed"),
|
|
});
|
|
export type TestMeta = z.infer<typeof testMetaSchema>;
|