rowboat/apps/x/packages/shared/src/prompt-block.ts
2026-04-20 14:42:13 +05:30

8 lines
300 B
TypeScript

import z from 'zod';
export const PromptBlockSchema = z.object({
label: z.string().min(1).describe('Short title shown on the card'),
instruction: z.string().min(1).describe('Full prompt sent to Copilot when Run is clicked'),
});
export type PromptBlock = z.infer<typeof PromptBlockSchema>;