GitHub Manager
Manage GitHub issues, pull requests, repositories, and workflows.
Usage
/github-manager list-issues <owner/repo> [--state open|closed|all] [--max N]
/github-manager create-issue <owner/repo> title:'<title>' body:'<body>' [--labels bug,enhancement]
/github-manager list-prs <owner/repo> [--state open|closed|all] [--max N]
/github-manager create-pr <owner/repo> title:'<title>' head:<branch> base:<branch> body:'<body>'
/github-manager repo-info <owner/repo>
/github-manager list-workflows <owner/repo>
Actions
| Action | Description |
|---|---|
list-issues |
List repository issues with optional state filter |
create-issue |
Create a new issue with title, body, and labels |
list-prs |
List pull requests with optional state filter |
create-pr |
Create a new pull request |
repo-info |
Get repository metadata and statistics |
list-workflows |
List recent GitHub Actions workflow runs |
Setup
Configure a GitHub token in ChainlessChain Git settings. The token is stored in
the encrypted Git credential store; this Skill does not read process.env.
Examples
- List open issues:
/github-manager list-issues myorg/myrepo --state open - Create an issue:
/github-manager create-issue myorg/myrepo title:'Fix login bug' body:'Login fails on mobile' - View repo info:
/github-manager repo-info myorg/myrepo