agentsclimarketplace

List pulls

Skill deevus/tea-skills/skills/list-pulls

Agent skills for Gitea/Forgejo issue, pull request, milestone, and label workflows using the tea CLI

Install
npx -y skills add deevus/tea-skills --skill list-pulls

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 5 stars5 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

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

SKILL.md

1.0 KB, as published. Nobody here has run it

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.

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.)

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.