GitHub Daemon
GitHub operations via GraphQL and REST APIs.
Installation
Authentication
Set your GitHub token:
Or store in ~/.fgp/services/github/config.toml.
Methods
github.issues
List repository issues.
github.prs
List pull requests.
github.repos
List user repositories.
github.create_issue
Create a new issue.
{
"method": "github.create_issue",
"params": {
"repo": "owner/repo",
"title": "Bug report",
"body": "Description..."
}
}
CLI Examples
# List issues
fgp call github issues --repo "fast-gateway-protocol/fgp"
# List PRs
fgp call github prs --repo "fast-gateway-protocol/browser"
Status
Beta - Basic operations work.