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
207 B
TypeScript
7 lines
207 B
TypeScript
import { z } from "zod";
|
|
|
|
export const coderMetaSchema = z.object({
|
|
filesCreated: z.boolean().describe("true if the sense files were created"),
|
|
});
|
|
export type CoderMeta = z.infer<typeof coderMetaSchema>;
|