dceoy/github-cli-agent-skills · Archived

gh-issue-view

View GitHub issue details, comments, and JSON fields using gh CLI.

First seen Jun 16, 2026

Installation

$ npx skills add dceoy/github-cli-agent-skills --skill gh-issue-view

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from dceoy/github-cli-agent-skills.

npx skills add dceoy/github-cli-agent-skills

Browse all from dceoy/github-cli-agent-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

License LICENSE
Default branch main
Open issues 1
Status Archived

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolsBash, Read, Grep

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,232 B
  • docs SUMMARY.md 87 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

GitHub Issue View

When to use

  • The user asks to see an issue's status, details, or comments.

Inputs to confirm

  • Issue number or URL.
  • Whether comments or JSON output are needed.
  • Target repo if not current (--repo OWNER/REPO).

Workflow

  1. Verify auth:

``bash gh --version gh auth status ``

  1. View issue summary:

``bash gh issue view 123 ``

  1. View comments or JSON:

``bash gh issue view 123 --comments gh issue view 123 --json number,title,state,labels --jq '.title' ``

  1. Optional web view:

``bash gh issue view 123 --web ``

Examples

# Get title and state via JSON
~ gh issue view 123 --json title,state --jq '"\(.title) (\(.state))"'

Notes

  • --template supports Go templates; see gh help formatting.

References