@jasondark/proompt
Version:
CLI tool for running AI prompts with structure and repeatability
11 lines • 360 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.executePlanArgsSchema = void 0;
const zod_1 = require("zod");
const schemas_1 = require("@/core/schemas");
exports.executePlanArgsSchema = zod_1.z
.object({
planPath: zod_1.z.string(),
})
.and(schemas_1.llmCommandOptionsSchema);
//# sourceMappingURL=schema.js.map