Fetch and analyze GitHub repository issues directly from OpenClaw.
# 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 restartAdd to your ~/.openclaw/openclaw.json:
{
"plugins": {
"enabled": true,
"entries": {
"github-issue-resolver": {
"enabled": true,
"config": {}
}
}
}
}List issues from a GitHub repository.
Parameters:
owner(string): Repository ownerrepo(string): Repository namestate(string):open,closed, orall(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/..."
}
]
}Analyze a specific issue (coming soon).
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"
- OpenClaw >= 2026.2.0
- Internet connection (calls GitHub API)
MIT