# Github

> GitHub provider skill backed by the gh CLI. Use for GitHub repositories, pull requests, issues, workflow runs, checks, releases, search, and gh api queries.

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

---


# GitHub

Use this provider skill for authenticated GitHub operations through `gh`.

The runtime supplies the selected provider instance and the current user's
GitHub token. Do not ask the user to run `gh auth login`; this provider uses
AtlasClaw `user_token` credentials and non-interactive environment variables.

## Common Commands

Check CI status on a pull request:

```json
{"args": ["pr", "checks", "55"], "repo": "owner/repo"}
```

List recent workflow runs:

```json
{"args": ["run", "list", "--limit", "10"], "repo": "owner/repo"}
```

View a run and show failed logs:

```json
{"args": ["run", "view", "123456789", "--log-failed"], "repo": "owner/repo"}
```

Fetch a PR field through the GitHub API:

```json
{"args": ["api", "repos/owner/repo/pulls/55", "--jq", ".title"]}
```

## Safety

Commands that create or change GitHub data, including PRs, comments, reviews,
issues, workflow dispatches, releases, repository settings, or merges, require
clear user intent and any required confirmation before running.

