From 42d3e56b56b9025d89ebf167d46149b17d6e0e2d Mon Sep 17 00:00:00 2001 From: Mark Wylde Date: Sat, 31 May 2025 13:54:12 +0100 Subject: [PATCH] fix: encourage use of mcp__gitea__list_branches --- src/create-prompt/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/create-prompt/index.ts b/src/create-prompt/index.ts index 7ee17ab..ab81ff1 100644 --- a/src/create-prompt/index.ts +++ b/src/create-prompt/index.ts @@ -536,7 +536,7 @@ ${ ? ` 4. Check for Existing Branch (for issues and closed PRs): - Before implementing changes, check if there's already a claude branch for this ${eventData.isPR ? "PR" : "issue"}. - - Use Bash to run \`git branch -r | grep "claude/${eventData.isPR ? "pr" : "issue"}-${eventData.isPR ? eventData.prNumber : eventData.issueNumber}"\` to search for existing branches. + - Use the mcp__gitea__list_branches tool to list branches. - If found, use mcp__local_git_ops__checkout_branch to switch to the existing branch (set fetch_remote=true). - If not found, you'll create a new branch when making changes (see Execute Actions section). - Mark this todo as complete by checking the box.