Fix repo slug

This commit is contained in:
Colin McDonnell
2026-01-14 01:44:30 +00:00
committed by pullfrog[bot]
parent 5604cf1868
commit 3fa309853b
16 changed files with 278033 additions and 58 deletions
+8
View File
@@ -1,3 +1,4 @@
import { type } from "arktype";
import { ghPullfrogMcpName } from "./external.ts";
export interface Mode {
@@ -6,6 +7,13 @@ export interface Mode {
prompt: string;
}
// arktype schema for Mode validation
export const ModeSchema = type({
name: "string",
description: "string",
prompt: "string",
});
export interface GetModesParams {
disableProgressComment: true | undefined;
}