# Github Manager

> GitHub operations - manage issues, pull requests, repositories, and workflows via GitHub API

- Skill: `chainlesschain/github-manager` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add chainlesschain/github-manager`
- Raw SKILL.md: https://api.skillmd.com/api/skills/chainlesschain/github-manager/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Web & Frontend
- License: MIT
- Author: chainlesschain (https://skillmd.com/u/chainlesschain)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/chainlesschain/github-manager

---


# 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`

