Skip to content

Ashwinhegde19/github-issue-resolver-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

GitHub Issue Resolver Plugin

Fetch and analyze GitHub repository issues directly from OpenClaw.

Installation

Method 1: Copy to Plugins Directory

# Clone or download this plugin
cp -r github-issue-resolver-plugin ~/.openclaw/plugins/

# Enable in config
openclaw config.patch --raw '{
  "plugins": {
    "entries": {
      "github-issue-resolver": {
        "enabled": true,
        "config": {}
      }
    }
  }
}'

# Restart OpenClaw
openclaw gateway restart

Method 2: Direct Config Edit

Add to your ~/.openclaw/openclaw.json:

{
  "plugins": {
    "enabled": true,
    "entries": {
      "github-issue-resolver": {
        "enabled": true,
        "config": {}
      }
    }
  }
}

Tools Provided

1. github_issues

List issues from a GitHub repository.

Parameters:

  • owner (string): Repository owner
  • repo (string): Repository name
  • state (string): open, closed, or all (default: open)
  • per_page (number): Max issues to fetch (default: 30)

Example:

github_issues({
  owner: "facebook",
  repo: "react",
  state: "open"
})

Response:

{
  "success": true,
  "count": 12,
  "issues": [
    {
      "number": 1,
      "title": "Bug report",
      "state": "open",
      "labels": ["bug"],
      "url": "https://github.com/..."
    }
  ]
}

2. github_issue_analyze

Analyze a specific issue (coming soon).

Usage in OpenClaw

Once installed, you can use it like this:

You: Find issues in facebook/react
OpenClaw: [Uses github_issues tool automatically]

Or explicitly:

You: github_issues owner="Ashwinhegde19" repo="demo-issues-repo" state="all"

Requirements

  • OpenClaw >= 2026.2.0
  • Internet connection (calls GitHub API)

License

MIT

About

OpenClaw plugin for fetching and analyzing GitHub issues

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors