Switch to payload

This commit is contained in:
Colin McDonnell
2025-11-18 23:15:44 -08:00
parent 3ef1635bb6
commit 06a19567c0
13 changed files with 614 additions and 410 deletions
+8 -2
View File
@@ -1,6 +1,12 @@
import { ghPullfrogMcpName } from "./mcp/index.ts";
export const modes = [
export interface Mode {
name: string;
description: string;
prompt: string;
}
export const modes: Mode[] = [
{
name: "Plan",
description:
@@ -51,4 +57,4 @@ export const modes = [
3. As your work progresses, update your Working Comment to share progress and results using ${ghPullfrogMcpName}/update_working_comment. Do not create additional comments unless you are explicitly asked to do so.
4. When you finish the task, update the Working Comment a final time with a summary of the results and links to any created issues, PRs, etc.`,
},
] as const;
];