🎯

github

🎯Skill

from steipete/clawdis

VibeIndex|
What it does

Manages GitHub interactions using the `gh` CLI, enabling issue, PR, workflow, and advanced API queries across repositories.

πŸ“¦

Part of

steipete/clawdis(48 items)

github

Installation

npm installInstall npm package
npm install -g openclaw@latest
git cloneClone repository
git clone https://github.com/openclaw/openclaw.git
pnpmRun with pnpm
pnpm install
πŸ“– Extracted from docs: steipete/clawdis
12Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

"Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries."

Overview

# GitHub Skill

Use the gh CLI to interact with GitHub. Always specify --repo owner/repo when not in a git directory, or use URLs directly.

Pull Requests

Check CI status on a PR:

```bash

gh pr checks 55 --repo owner/repo

```

List recent workflow runs:

```bash

gh run list --repo owner/repo --limit 10

```

View a run and see which steps failed:

```bash

gh run view --repo owner/repo

```

View logs for failed steps only:

```bash

gh run view --repo owner/repo --log-failed

```

API for Advanced Queries

The gh api command is useful for accessing data not available through other subcommands.

Get PR with specific fields:

```bash

gh api repos/owner/repo/pulls/55 --jq '.title, .state, .user.login'

```

JSON Output

Most commands support --json for structured output. You can use --jq to filter:

```bash

gh issue list --repo owner/repo --json number,title --jq '.[] | "\(.number): \(.title)"'

```

More from this repository10

🎯
gog🎯Skill

Manages Gmail, Calendar, Drive, Contacts, Sheets, and Docs via CLI with OAuth-based Google Workspace interactions.

🎯
weather🎯Skill

Retrieves current weather and forecasts for any location using free services, with multiple output formats and no API key required.

🎯
summarize🎯Skill

Quickly summarizes URLs, local files, and YouTube links using AI models with flexible extraction options.

🎯
coding-agent🎯Skill

Runs coding agents like Claude Code or Codex in bash with PTY support, enabling programmatic control and background processing.

🎯
mcporter🎯Skill

Streamlines interaction with MCP servers through CLI, enabling listing, configuration, authentication, and direct tool calls via HTTP or stdio.

🎯
apple-reminders🎯Skill

Manages Apple Reminders via CLI, enabling listing, adding, editing, completing, and deleting tasks with flexible date and list filtering.

🎯
gifgrep🎯Skill

Searches and downloads GIFs from Tenor/Giphy with a CLI/TUI, enabling preview, extraction, and easy sharing.

🎯
nano-pdf🎯Skill

Edits PDFs using natural language instructions, allowing precise page-level modifications with simple CLI commands.

🎯
obsidian🎯Skill

Automates interactions with Obsidian vaults, enabling searching, creating, moving, and managing Markdown notes via obsidian-cli.

🎯
peekaboo🎯Skill

Automates macOS UI interactions by capturing screens, targeting elements, driving input, and managing apps via a powerful CLI tool.