List pulls
Agent skills for Gitea/Forgejo issue, pull request, milestone, and label workflows using the tea CLI
npx -y skills add deevus/tea-skills --skill list-pullsAssembled 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 simplefor listing; use--output jsononly when parsing withjq tea issues list --kind pullssearches PRs with all issue filters (labels, milestones, etc.)