deevus/tea-skills

list-pulls

List and show Gitea/Forgejo pull requests — filters, fields, detail views, and finding PRs needing review.

First seen May 21, 2026

Installation

$ npx skills add deevus/tea-skills --skill list-pulls

Also in this package

Other skills from deevus/tea-skills · top by installs.

npx skills add deevus/tea-skills

Browse all from deevus/tea-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

Stars 8
License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,045 B
  • docs SUMMARY.md 126 B

History

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

SKILL.md

List Pull Requests

List

tea pulls list -o simple              # open PRs, compact output (recommended)
tea pulls list --state all -o simple  # include closed/merged
tea pulls list --output json          # use json only when parsing with jq
tea pulls list --fields "index,title,state,author,base,head,labels"

Show

tea pulls 15              # detail view
tea pulls 15 --comments   # with comments

Find PRs Needing Review

tea pulls list --output json | \
  jq '.[] | select(.labels | map(.name) | index("needs-review")) | {index, title, author: .poster.login}'

Forks and Upstream PRs

See [pull-request-forks](pull-request-forks.md).

Tips

  • Prefer -o simple for listing; use --output json only when parsing with jq
  • tea issues list --kind pulls searches PRs with all issue filters (labels, milestones, etc.)