# Jq Gh

> GitHub reporting skill using local shell variables and jq filters.

- Skill: `krahimov/jq-gh` (Agent Skill)
- Install (CLI): `npx skillmds@latest add krahimov/jq-gh`
- Raw SKILL.md: https://api.skillmd.com/api/skills/krahimov/jq-gh/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: krahimov (https://skillmd.com/u/krahimov)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/krahimov/jq-gh

---


# JQ + GH Skill

```bash
PR=55 REPO=owner/repo
gh pr view $PR --repo $REPO --json number,title,state \
  --jq '.[] | select(.state == "OPEN") | .title'
```

