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