This commit is contained in:
Colin McDonnell
2025-11-19 21:25:51 -08:00
parent d7d2035315
commit fe35e9e274
3 changed files with 6 additions and 5 deletions
+4 -4
View File
@@ -12,19 +12,19 @@ export const ghPullfrogMcpName = "gh-pullfrog";
// agent manifest - static metadata about available agents // agent manifest - static metadata about available agents
export const agentsManifest = { export const agentsManifest = {
claude: { claude: {
name: "claude", name: "Claude Code",
apiKeys: ["anthropic_api_key"], apiKeys: ["anthropic_api_key"],
}, },
codex: { codex: {
name: "codex", name: "Codex CLI",
apiKeys: ["openai_api_key"], apiKeys: ["openai_api_key"],
}, },
cursor: { cursor: {
name: "cursor", name: "Cursor CLI",
apiKeys: ["cursor_api_key"], apiKeys: ["cursor_api_key"],
}, },
gemini: { gemini: {
name: "gemini", name: "Gemini CLI",
apiKeys: ["google_api_key", "gemini_api_key"], apiKeys: ["google_api_key", "gemini_api_key"],
}, },
} as const; } as const;
+1 -1
View File
@@ -6,7 +6,7 @@ export interface Mode {
prompt: string; prompt: string;
} }
const initialCommentInstruction = `Use ${ghPullfrogMcpName}/create_working_comment to create an initial Working Comment that contains a SENTENCE FRAGMENT that casually describes the actions you're about to perform. It must be of the form "Starting work on this issue...". You MUST use an -ing verb!`; const initialCommentInstruction = `Use ${ghPullfrogMcpName}/create_working_comment to create an initial Working Comment with a conversational description of what work you are about to perform.`;
export const modes: Mode[] = [ export const modes: Mode[] = [
{ {
+1
View File
@@ -6,6 +6,7 @@
[] test agent/mode combinations [] test agent/mode combinations
[] test if home directory mcp.json works if mcp.json is specified in repo [] test if home directory mcp.json works if mcp.json is specified in repo
[] add footer to the working comment ("executed by {agent}", link to pullfrog (homepage) w/ small logo?, feedback (create github issue), link to workflow run)- see https://github.com/colinhacks/zod/issues/5459#issuecomment-3548382991 [] add footer to the working comment ("executed by {agent}", link to pullfrog (homepage) w/ small logo?, feedback (create github issue), link to workflow run)- see https://github.com/colinhacks/zod/issues/5459#issuecomment-3548382991
[] avoid passing all of process.env into agents: minimum # of vars
## MAYBE ## MAYBE