Install
openclaw skills install git-mendergit-mender — Automatically fix GitHub issues end-to-end: reads the issue, analyzes repository code, implements a fix, and submits a pull request. Use when the user provides a GitHub issue URL, mentions fixing a GitHub issue, or uses the /fix-issue command. Supports URLs in the format https://github.com/{owner}/{repo}/issues/{number}.
openclaw skills install git-menderYou are an autonomous agent that reads a GitHub issue, understands the problem, locates the relevant code, implements a fix, and prepares everything for review. Follow the phases below in order, using the checklist to track progress.
Use this checklist to track your progress through the workflow:
Extract the GitHub issue URL from the user's input and parse the components.
Expected URL format: https://github.com/{owner}/{repo}/issues/{number}
owner — the GitHub organization or userrepo — the repository namenumber — the issue numberParsed issue: {owner}/{repo}#{number}
Retrieve the full issue content including title, body, labels, and comments.
gh CLI (preferred)Run in the terminal:
gh issue view {number} --repo {owner}/{repo} --comments
If the command succeeds, extract from the output:
fetch_contentIf gh is not installed or the command fails:
fetch_content tool with the issue URL: https://github.com/{owner}/{repo}/issues/{number}From the issue content, identify and note:
| Field | Description |
|---|---|
| Problem summary | One-sentence description of the bug or feature gap |
| Reproduction steps | How to trigger the issue |
| Expected behavior | What should happen |
| Actual behavior | What actually happens |
| Error messages | Stack traces, log output, error codes |
| File path hints | Any files, modules, or functions mentioned |
| Related issues/PRs | Cross-references that provide context |
Ensure you have local access to the repository source code.
git remote -v 2>/dev/null
github.com/{owner}/{repo} (or github.com:{owner}/{repo}), you are already in the correct repo. Skip to Step 3.Check if the repo exists locally in a common location:
ls -d ~/Desktop/{repo} ~/projects/{repo} ~/repos/{repo} /tmp/{repo} 2>/dev/null
If not found, clone it:
gh repo clone {owner}/{repo} /tmp/{repo}
If gh is not available:
git clone https://github.com/{owner}/{repo}.git /tmp/{repo}
Then inform the user about the clone location.
After locating or cloning the repository, cd into the repository directory before running any git commands:
cd {repo_path}
First, detect the default branch:
# Detect the default branch
default_branch=$(git symbolic-ref --short refs/remotes/origin/HEAD 2>/dev/null | sed 's|^origin/||')
if [ -z "$default_branch" ]; then
default_branch="main"
fi
Then check out the default branch and pull latest changes:
git checkout $default_branch
git pull --ff-only
Create the fix branch:
git checkout -b fix/issue-{number}
Systematically locate the problem in the codebase.
Use the error messages, file paths, and function names from the issue to search:
grep_code to search for error strings, function names, or variable names mentioned in the issue.search_codebase for semantic searches when the issue describes behavior rather than specific code.search_file to find files by name if the issue mentions specific filenames.Once you find candidate files:
git log --oneline -10 -- {file_path}
Before writing any code, clearly state:
Apply the minimal code change to resolve the issue.
search_replace tool to make precise edits.get_problems.Validate that the fix works and doesn't break anything.
Look for common indicators:
| File | Likely runner |
|---|---|
package.json | npm test or npx jest or npx vitest |
Cargo.toml | cargo test |
go.mod | go test ./... |
pyproject.toml / setup.py | pytest |
Makefile | make test |
pom.xml | mvn test |
build.gradle | ./gradlew test |
# Run the full test suite or scoped tests related to the changed files
{test_command}
Check if the project has lint or format tools configured, and run them:
# Examples
npm run lint 2>/dev/null
cargo clippy 2>/dev/null
go vet ./... 2>/dev/null
Fix any lint issues introduced by your changes.
Present the fix to the user and wait for explicit approval before proceeding.
## Fix Summary for {owner}/{repo}#{number}
**Issue:** {issue_title}
**Root Cause:** {brief explanation}
**Changes:**
- `{file_path_1}`: {what was changed and why}
- `{file_path_2}`: {what was changed and why}
Display the actual code changes so the user can review them:
git diff
Highlight the key modifications and explain their impact.
Ask the user:
Do you want to adopt these changes? If anything needs adjustment, let me know.
Only execute this phase after the user has confirmed the changes in Phase 7.
First, ask the user:
Would you like me to automatically commit and submit a PR to the repository?
gh pr create command for manual execution (see Fallback below).git add -A
git commit -m "fix: {short description} (#{number})
{Detailed explanation of what was wrong and how this commit fixes it.}
Closes #{number}"
Attempt to push to the origin repository:
git push origin fix/issue-{number}
--head fix/issue-{number}.gh repo fork {owner}/{repo} --clone=false
gh api user --jq '.login'
git remote add fork https://github.com/{your_username}/{repo}.git
git push fork fix/issue-{number}
--head {your_username}:fix/issue-{number}.gh pr create \
--repo {owner}/{repo} \
--title "fix: {short description}" \
--body "## Summary
Fixes #{number}.
### Problem
{Brief problem description}
### Solution
{Brief solution description}
### Changes
- {change 1}
- {change 2}
### Testing
- [x] Existing tests pass
- [x] {Any additional verification performed}" \
--base {default_branch} \
--head {head_ref}
{head_ref}isfix/issue-{number}for direct push or{your_username}:fix/issue-{number}for fork push.
gh pr create output.✅ PR created successfully: {PR_URL} Please review the PR page for any CI checks or reviewer feedback.
If the user declines auto-submission or any step fails, present:
fix: {short description} (#{number})
{Detailed explanation}
Closes #{number}
gh pr create \
--title "fix: {short description}" \
--body "..." \
--base {default_branch}
git diff {default_branch}Handle these common failure scenarios gracefully:
| Scenario | Action |
|---|---|
gh CLI not installed | Fall back to git clone and fetch_content. Suggest installing gh: brew install gh or see https://cli.github.com |
gh auth not configured | Prompt user to run gh auth login and retry |
| Repository is private / 403 | Inform the user that authentication is required and guide them to authenticate |
| Issue not found / 404 | Double-check the URL and ask the user to verify |
No write access to /tmp | Clone to the workspace directory instead |
| Tests fail after fix | Analyze failure output, revise the fix, and re-verify |
| Cannot determine root cause | Present findings so far and ask the user for guidance |
| Large / complex issue | Break the issue into sub-tasks, fix the most critical part first, and note remaining work |
git push permission denied | Auto-fork the repository and push to fork |
gh pr create fails | Show error details and provide manual command |
User's gh not authenticated | Prompt user to run gh auth login first |
| Branch already exists on remote | Ask user whether to force-push or create a new branch name |
| PR already exists for this branch | Show existing PR URL and ask whether to update |
This skill interacts with the following external services:
| Endpoint | Purpose | Data Sent |
|---|---|---|
github.com | Clone repositories, fetch issue details, push branches, create PRs | Git operations, branch names, PR metadata |
GitHub API (via gh CLI) | Read issues/comments, create PRs, fork repos, check auth | Issue number, repo owner/name, PR title/body |
No other external services are contacted. All code analysis and modification happens locally.
gh CLI authentication. No additional credentials are stored or transmitted.This skill is designed for autonomous execution within an AI coding assistant. When triggered, the agent will:
gh CLI or web scrapingSteps 7 and 8 require explicit user confirmation before proceeding. The agent will not push code or create PRs without user consent.
By using this skill, you authorize the agent to:
All Git operations use your existing gh CLI credentials. Only install this skill if you trust the repositories you intend to use it with.