From 404e7dc841249cc5122ab3e224bc64b56ac38bdc Mon Sep 17 00:00:00 2001 From: Ashwin Bhat Date: Mon, 2 Jun 2025 12:13:32 -0700 Subject: [PATCH] clean up comments --- src/entrypoints/update-comment-link.ts | 1 - src/mcp/github-file-ops-server.ts | 3 --- 2 files changed, 4 deletions(-) diff --git a/src/entrypoints/update-comment-link.ts b/src/entrypoints/update-comment-link.ts index ef002d1..9090373 100644 --- a/src/entrypoints/update-comment-link.ts +++ b/src/entrypoints/update-comment-link.ts @@ -205,7 +205,6 @@ async function run() { const updatedBody = updateCommentBody(commentInput); - // Update the comment using the extracted updateClaudeComment function try { await updateClaudeComment(octokit.rest, { owner, diff --git a/src/mcp/github-file-ops-server.ts b/src/mcp/github-file-ops-server.ts index 68af226..a34f115 100644 --- a/src/mcp/github-file-ops-server.ts +++ b/src/mcp/github-file-ops-server.ts @@ -441,7 +441,6 @@ server.tool( }, ); -// Update Claude comment tool server.tool( "update_claude_comment", "Update the Claude comment with progress and results (automatically handles both issue and PR comments)", @@ -465,12 +464,10 @@ server.tool( const repo = REPO_NAME; const commentId = parseInt(claudeCommentId, 10); - // Create Octokit instance const octokit = new Octokit({ auth: githubToken, }); - // Determine if this is a PR review comment based on event type const isPullRequestReviewComment = eventName === "pull_request_review_comment";