Skip to main content

OpenHands Issue Resolver

Project description

OpenHands Github Issue Resolver 🙌

Need help resolving a GitHub issue but don't have the time to do it yourself? Let an AI agent help you out!

This tool allows you to use open-source AI agents based on OpenHands to attempt to resolve GitHub issues automatically. While it can handle multiple issues, it's primarily designed to help you resolve one issue at a time with high quality.

Getting started is simple - just follow the instructions below.

Using the GitHub Actions Workflow

This repository includes a GitHub Actions workflow that can automatically attempt to fix individual issues labeled with 'fix-me'. Follow these steps to use this workflow in your own repository:

  1. Create a personal access token with read/write scope for "contents", "issues", "pull requests", and "workflows"

  2. Create an API key for the Claude API (recommended) or another supported LLM service

  3. Copy examples/openhands-resolver.yml to your repository's .github/workflows/ directory

  4. Configure repository permissions:

    • Go to Settings -> Actions -> General -> Workflow permissions
    • Select "Read and write permissions"
    • Enable "Allow Github Actions to create and approve pull requests"
  5. Set up GitHub secrets:

    • Required:
      • PAT_USERNAME: GitHub username for the personal access token
      • PAT_TOKEN: The personal access token
      • LLM_MODEL: LLM model to use (e.g., "anthropic/claude-3-5-sonnet-20241022")
      • LLM_API_KEY: Your LLM API key
    • Optional:
      • LLM_BASE_URL: Base URL for LLM API (only if using a proxy)

    Note: You can set these secrets at the organization level to use across multiple repositories.

  6. Usage:

    • Add the 'fix-me' label to any issue you want the AI to resolve
    • The workflow will:
      1. Attempt to resolve the issue using OpenHands
      2. Create a draft PR if successful, or push a branch if unsuccessful
      3. Comment on the issue with the results
      4. Remove the 'fix-me' label once processed

Need help? Feel free to open an issue or email us at contact@all-hands.dev.

Manual Installation

If you prefer to run the resolver programmatically instead of using GitHub Actions, follow these steps:

  1. Install the package:
pip install openhands-resolver
  1. Create a GitHub access token:

    • Visit GitHub's token settings
    • Create a fine-grained token with these scopes:
      • "Content"
      • "Pull requests"
      • "Issues"
      • "Workflows"
    • If you don't have push access to the target repo, you can fork it first
  2. Set up environment variables:

# GitHub credentials
export GITHUB_TOKEN="your-github-token"
export GITHUB_USERNAME="your-github-username"  # Optional, defaults to token owner

# LLM configuration
export LLM_MODEL="anthropic/claude-3-5-sonnet-20241022"  # Recommended
export LLM_API_KEY="your-llm-api-key"
export LLM_BASE_URL="your-api-url"  # Optional, for API proxies

Note: OpenHands works best with powerful models like Anthropic's Claude or OpenAI's GPT-4. While other models are supported, they may not perform as well for complex issue resolution.

Resolving Issues

The resolver can automatically attempt to fix a single issue in your repository using the following command:

python -m openhands_resolver.resolve_issue --repo [OWNER]/[REPO] --issue-number [NUMBER]

For instance, if you want to resolve issue #100 in this repo, you would run:

python -m openhands_resolver.resolve_issue --repo all-hands-ai/openhands-resolver --issue-number 100

The output will be written to the output/ directory.

If you've installed the package from source using poetry, you can use:

poetry run python openhands_resolver/resolve_issue.py --repo all-hands-ai/openhands-resolver --issue-number 100

For resolving multiple issues at once (e.g., in a batch process), you can use the resolve_all_issues command:

python -m openhands_resolver.resolve_all_issues --repo [OWNER]/[REPO] --issue-numbers [NUMBERS]

For example:

python -m openhands_resolver.resolve_all_issues --repo all-hands-ai/openhands-resolver --issue-numbers 100,101,102

Responding to PR Comments

The resolver can also respond to comments on pull requests using:

python -m openhands_resolver.send_pull_request --issue-number PR_NUMBER --issue-type pr

This functionality is available both through the GitHub Actions workflow and when running the resolver locally.

Visualizing successful PRs

To find successful PRs, you can run the following command:

grep '"success":true' output/output.jsonl | sed 's/.*\("number":[0-9]*\).*/\1/g'

Then you can go through and visualize the ones you'd like.

python -m openhands_resolver.visualize_resolver_output --issue-number ISSUE_NUMBER --vis-method json

Uploading PRs

If you find any PRs that were successful, you can upload them. There are three ways you can upload:

  1. branch - upload a branch without creating a PR
  2. draft - create a draft PR
  3. ready - create a non-draft PR that's ready for review
python -m openhands_resolver.send_pull_request --issue-number ISSUE_NUMBER --github-username YOUR_GITHUB_USERNAME --pr-type draft

If you want to upload to a fork, you can do so by specifying the fork-owner:

python -m openhands_resolver.send_pull_request --issue-number ISSUE_NUMBER --github-username YOUR_GITHUB_USERNAME --pr-type draft --fork-owner YOUR_GITHUB_USERNAME

Troubleshooting

If you have any issues, please open an issue on this github repo, we're happy to help! Alternatively, you can email us or join the OpenHands Slack workspace and ask there.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

openhands_resolver-0.3.0.tar.gz (214.3 kB view details)

Uploaded Source

Built Distribution

openhands_resolver-0.3.0-py3-none-any.whl (225.3 kB view details)

Uploaded Python 3

File details

Details for the file openhands_resolver-0.3.0.tar.gz.

File metadata

  • Download URL: openhands_resolver-0.3.0.tar.gz
  • Upload date:
  • Size: 214.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.11.9 Darwin/23.1.0

File hashes

Hashes for openhands_resolver-0.3.0.tar.gz
Algorithm Hash digest
SHA256 dd8912b6d6981734469b5b5512a234c7936ba55d3550af9145567081ff6d4894
MD5 e9943d468164fbbfa0356a214564aa63
BLAKE2b-256 acb9c4731b626aa2a4e7e02706b8c42842cc9e9cd7a10866d17eec743b55f62f

See more details on using hashes here.

File details

Details for the file openhands_resolver-0.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for openhands_resolver-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 57981cd34fe6f458e8a830ee01755baa4ece47591f064d3c9198d09de44e1a66
MD5 e0df1c9ffb58624113935d8841de75d1
BLAKE2b-256 ae8f23936747acaade53b2e6203bc0fbdbd03e6d596a66b1d4ce7e0c7c159692

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page