standardize name to gh_pullfrog

This commit is contained in:
David Blass
2025-11-20 15:09:12 -05:00
parent cb938a0b7f
commit ba724c8b71
3 changed files with 1178 additions and 1163 deletions
+1173 -1158
View File
File diff suppressed because it is too large Load Diff
+4 -4
View File
@@ -1,4 +1,4 @@
# gh-pullfrog MCP Tools # gh_pullfrog MCP Tools
this directory contains the mcp (model context protocol) server tools for interacting with github. this directory contains the mcp (model context protocol) server tools for interacting with github.
@@ -22,7 +22,7 @@ all logs from all failed workflow runs in the check suite, including:
**example:** **example:**
```typescript ```typescript
// when handling a check_suite_completed webhook // when handling a check_suite_completed webhook
await mcp.call("gh-pullfrog/get_check_suite_logs", { await mcp.call("gh_pullfrog/get_check_suite_logs", {
check_suite_id: check_suite.id check_suite_id: check_suite.id
}); });
``` ```
@@ -48,7 +48,7 @@ array of review comments including:
**example:** **example:**
```typescript ```typescript
// when handling a pull_request_review_submitted webhook // when handling a pull_request_review_submitted webhook
await mcp.call("gh-pullfrog/get_review_comments", { await mcp.call("gh_pullfrog/get_review_comments", {
pull_number: 47, pull_number: 47,
review_id: review.id review_id: review.id
}); });
@@ -69,7 +69,7 @@ array of reviews with:
**example:** **example:**
```typescript ```typescript
await mcp.call("gh-pullfrog/list_pull_request_reviews", { await mcp.call("gh_pullfrog/list_pull_request_reviews", {
pull_number: 47 pull_number: 47
}); });
``` ```
+1 -1
View File
@@ -24,7 +24,7 @@ export async function run(
const inputs: Required<Inputs> = { const inputs: Required<Inputs> = {
prompt, prompt,
agent: "claude", agent: "codex",
...flatMorph(agents, (_, agent) => ...flatMorph(agents, (_, agent) =>
agent.apiKeyNames.map((inputKey) => [inputKey, process.env[inputKey.toUpperCase()]]) agent.apiKeyNames.map((inputKey) => [inputKey, process.env[inputKey.toUpperCase()]])
), ),