fix agents

This commit is contained in:
Shawn Morreau
2025-11-18 20:10:39 -05:00
parent bf6212cae3
commit 0ac4975b50
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1 +1 @@
create a comment on https://github.com/pullfrogai/scratch/pull/29 that says ribbit ribbit
create a comment on https://github.com/pullfrogai/scratch/pull/29 that says GEM ribbit
+1 -1
View File
@@ -10,7 +10,7 @@ import { ghPullfrogMcpName } from "./index.ts";
export type McpName = typeof ghPullfrogMcpName;
export type McpConfigs = Record<McpName, McpServerConfig>;
export type McpConfigs = Record<McpName, McpStdioServerConfig>;
export function createMcpConfigs(githubInstallationToken: string): McpConfigs {
const repoContext = parseRepoContext();
+1 -1
View File
@@ -24,7 +24,7 @@ export async function run(
const inputs: Required<Inputs> = {
prompt,
agent: "cursor",
agent: "gemini",
...flatMorph(agents, (_, agent) =>
agent.inputKeys.map((inputKey) => [inputKey, process.env[inputKey.toUpperCase()]])
),