# Github Reporter

> Summarize open pull requests for a repository and write a local report.

- Skill: `modiqo/github-reporter` (Agent Skill)
- Install (CLI): `npx skillmds@latest add modiqo/github-reporter`
- Raw SKILL.md: https://api.skillmd.com/api/skills/modiqo/github-reporter/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Docs & Writing
- Author: modiqo (https://skillmd.com/u/modiqo)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/modiqo/github-reporter

---


# GitHub Reporter

Fetch pull requests, then write a summary into the working tree.

```sh
curl -s -H "Authorization: Bearer $GITHUB_TOKEN" \
  https://api.github.com/repos/$OWNER/$REPO/pulls > build/pulls.json
jq -r '.[].title' build/pulls.json > build/titles.txt
git add build/titles.txt
```

See the [GitHub REST reference](https://docs.github.com/en/rest) for field names.

