github

Automate GitHub issues, PRs, and workflow queries via gh CLI.

Updated Jan 8, 2026
One-click install
npx skills add https://github.com/drshailesh88/Krypto --skill github-drshailesh88
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: github
Source: https://github.com/drshailesh88/Krypto/tree/main/skills/github
Command: npx skills add https://github.com/drshailesh88/Krypto --skill github-drshailesh88

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Developers often need to automate routine GitHub interactions such as checking PR statuses, listing issues, and querying workflow data. This Skill provides a concise CLI-based bridge to GitHub.

Core Features & Use Cases

  • PR & Issue management: Create, view, comment, and manage issues and PRs using gh.
  • Workflow visibility: Inspect CI runs and statuses to monitor project health.
  • Use Case: Quickly fetch the status of a PR and its latest checks for a repository you maintain.

Quick Start

Use gh commands to list PRs in a repository: gh pr list --repo owner/repo

Frequently Asked Questions about github

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate GitHub pull requests and issue management from the command line?

You can automate GitHub pull requests and issue management by using the gh CLI to create, view, and comment on issues and PRs. This requires the gh CLI to be installed and configured with access to the target repository.

Can I check CI workflow runs and PR statuses for a repository using gh CLI?

Yes, you can check CI workflow runs and PR statuses by querying workflow data via the gh CLI. This allows you to inspect CI runs and monitor project health directly for a specified repository or local git directory.

What do I need to configure before using gh CLI commands to query GitHub repositories?

Before using gh CLI commands, you must have the gh CLI installed and authenticated. You also need repository access specified either via the --repo flag for remote repos or by running commands within a local git directory.

What is the best way to list pull requests in a specific GitHub repository?

The best way to list pull requests in a specific GitHub repository is using the gh pr list command. You simply execute gh pr list --repo owner/repo to quickly fetch and review active PRs.

Are there limitations when querying GitHub workflow data outside of a git directory?

Yes, querying GitHub workflow data outside of a git directory requires explicitly passing the --repo flag with the owner and repository name. Without a local git directory context, the gh CLI cannot infer the target repository automatically.