mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
Metadata prompts (workspace title + branch, commit message, PR) mixed the functional contract with style guidance in one block, and project-owner instructions from paseo.json were appended after the defaults with an "override where they conflict" notice — so custom wording competed with the built-in style instead of replacing it. Each prompt is now a non-overridable contract (what to produce, the JSON shape, correctness/safety rules) plus style slots that paseo.json instructions replace wholesale. Title and branch style are now separate keys (metadataGeneration.title vs .branchName); previously branchName instructions also shaped the title.
167 lines
4.4 KiB
TypeScript
167 lines
4.4 KiB
TypeScript
import { describe, expect, it } from "vitest";
|
|
import { PaseoConfigRawSchema, PaseoConfigSchema } from "@getpaseo/protocol/paseo-config-schema";
|
|
|
|
describe("paseo config schema", () => {
|
|
it("parses an empty config without metadata generation", () => {
|
|
const parsed = PaseoConfigSchema.parse({});
|
|
|
|
expect(parsed).toEqual({});
|
|
expect(parsed.metadataGeneration).toBeUndefined();
|
|
});
|
|
|
|
it("parses old-style worktree and scripts config unchanged", () => {
|
|
const config = {
|
|
worktree: {
|
|
setup: "npm install",
|
|
teardown: ["npm run clean"],
|
|
},
|
|
scripts: {
|
|
dev: {
|
|
type: "service",
|
|
command: "npm run dev",
|
|
port: 5173,
|
|
},
|
|
},
|
|
};
|
|
|
|
expect(PaseoConfigSchema.parse(config)).toEqual({
|
|
worktree: {
|
|
setup: ["npm install"],
|
|
teardown: ["npm run clean"],
|
|
},
|
|
scripts: config.scripts,
|
|
});
|
|
});
|
|
|
|
it("parses all metadata generation instruction entries", () => {
|
|
expect(
|
|
PaseoConfigSchema.parse({
|
|
metadataGeneration: {
|
|
title: { instructions: "Keep titles to a few words." },
|
|
branchName: { instructions: "Prefix branches with feat/." },
|
|
commitMessage: { instructions: "Use imperative mood." },
|
|
pullRequest: { instructions: "Include risk notes." },
|
|
},
|
|
}),
|
|
).toEqual({
|
|
metadataGeneration: {
|
|
title: { instructions: "Keep titles to a few words." },
|
|
branchName: { instructions: "Prefix branches with feat/." },
|
|
commitMessage: { instructions: "Use imperative mood." },
|
|
pullRequest: { instructions: "Include risk notes." },
|
|
},
|
|
});
|
|
});
|
|
|
|
it("parses partial metadata generation instructions with missing entries undefined", () => {
|
|
const parsed = PaseoConfigSchema.parse({
|
|
metadataGeneration: {
|
|
branchName: { instructions: "Keep it short." },
|
|
},
|
|
});
|
|
|
|
expect(parsed.metadataGeneration).toEqual({
|
|
branchName: { instructions: "Keep it short." },
|
|
});
|
|
expect(parsed.metadataGeneration?.commitMessage).toBeUndefined();
|
|
expect(parsed.metadataGeneration?.pullRequest).toBeUndefined();
|
|
});
|
|
|
|
it("preserves legacy agentTitle metadata instructions as passthrough", () => {
|
|
expect(
|
|
PaseoConfigSchema.parse({
|
|
metadataGeneration: {
|
|
agentTitle: { instructions: "Use concise titles." },
|
|
},
|
|
}),
|
|
).toEqual({
|
|
metadataGeneration: {
|
|
agentTitle: { instructions: "Use concise titles." },
|
|
},
|
|
});
|
|
});
|
|
|
|
it("passes through unknown metadata generation fields", () => {
|
|
expect(
|
|
PaseoConfigSchema.parse({
|
|
metadataGeneration: {
|
|
futureField: 42,
|
|
},
|
|
}),
|
|
).toEqual({
|
|
metadataGeneration: {
|
|
futureField: 42,
|
|
},
|
|
});
|
|
});
|
|
|
|
it("passes through unknown metadata generator entry fields", () => {
|
|
expect(
|
|
PaseoConfigSchema.parse({
|
|
metadataGeneration: {
|
|
branchName: {
|
|
instructions: "Use concise titles.",
|
|
model: "haiku",
|
|
},
|
|
},
|
|
}),
|
|
).toEqual({
|
|
metadataGeneration: {
|
|
branchName: {
|
|
instructions: "Use concise titles.",
|
|
model: "haiku",
|
|
},
|
|
},
|
|
});
|
|
});
|
|
|
|
it("falls back to an empty metadata generator entry when instructions has an invalid type", () => {
|
|
expect(
|
|
PaseoConfigSchema.parse({
|
|
metadataGeneration: {
|
|
branchName: { instructions: 42 },
|
|
},
|
|
}),
|
|
).toEqual({
|
|
metadataGeneration: {
|
|
branchName: {},
|
|
},
|
|
});
|
|
});
|
|
|
|
it("raw schema preserves old-style config while accepting legacy agentTitle", () => {
|
|
const config = {
|
|
worktree: {
|
|
setup: "npm install",
|
|
teardown: ["npm run clean"],
|
|
},
|
|
scripts: {
|
|
dev: {
|
|
type: "service",
|
|
command: "npm run dev",
|
|
},
|
|
},
|
|
metadataGeneration: {
|
|
agentTitle: { instructions: "Use concise titles." },
|
|
branchName: { instructions: "Use concise branches." },
|
|
},
|
|
};
|
|
|
|
expect(PaseoConfigRawSchema.parse(config)).toEqual(config);
|
|
});
|
|
|
|
it("raw schema falls back to an empty metadata generator entry when instructions has an invalid type", () => {
|
|
expect(
|
|
PaseoConfigRawSchema.parse({
|
|
metadataGeneration: {
|
|
branchName: { instructions: 42 },
|
|
},
|
|
}),
|
|
).toEqual({
|
|
metadataGeneration: {
|
|
branchName: {},
|
|
},
|
|
});
|
|
});
|
|
});
|